技術記事

HotXLS Component: Delphi での data validation, AutoFilter, and worksheet tables

Delphi または C++Builder コードから直接 Excel ワークブックを作成、編集、検査、計算、エクスポートできます。HotXLS はソース付き Object Pascal スプレッドシートライブラリで、XLS/XLSX ワークフロー、デスクトップツール、バッチジョブ、レポート、Excel 自動化なしのサーバー側生成に適しています。

この記事は developers generating workbooks that users continue editing after export 向けです。data validation, AutoFilter, and worksheet tables を単なるコンポーネント呼び出しではなく、本番向けのドキュメントエンジニアリングとして扱います。

実務上のリスクは editable workbooks become error-prone when valid values, filters, table ranges, and totals are not generated as part of the data contract です。そのため、明確な契約、観測可能な診断、実際の顧客ファイルに近い回帰サンプルが必要です。

アーキテクチャ上の判断

Make user editing rules visible in the workbook. validation rules, allowed blank values, error messages, and list-source ownership / table range, header names, totals row, calculated columns, and naming policy

  • validation rules, allowed blank values, error messages, and list-source ownership
  • table range, header names, totals row, calculated columns, and naming policy
  • AutoFilter criteria, hidden-row behavior, and whether filters are pre-applied
  • how validation ranges expand when rows are appended by users or automation

実装フロー

Build tables around validated ranges. The order below keeps the workflow reviewable for Delphi and C++Builder teams.

  1. write the data range and define headers before applying table behavior
  2. attach validation rules to user-editable cells rather than entire unused columns
  3. apply AutoFilter and totals after the final row count is known
  4. test adding rows, clearing values, sorting, and filtering in Excel
  5. record validation and table definitions for support comparison

検証エビデンス

Workbook evidence for editable deliverables. Keep these fields with the output or support record.

  • table name, range, header list, totals-row formula, and AutoFilter state
  • validation type, source range, prompt, error message, and blank-value policy
  • row count before and after user-inserted test rows
  • compatibility notes for downstream spreadsheet applications

Editing support starts before the user opens Excel

Data validation, AutoFilter, and worksheet tables help users edit data safely. They need stable ranges, clear list sources, consistent table names, and formulas that expand predictably.

本番実装の要点

HotXLS Component: Delphi での data validation, AutoFilter, and worksheet tables は HotXLS 呼び出しの前後に置く明確なサービス契約として扱い、入力検証、ブック作成、出力確認、サポート証跡を分離します

  • ブックを作成する前にデータソース、セル範囲、出力形式を確定する
  • 行数、シート数、警告、出力先をレビュー可能な証跡として記録する
  • アプリ固有の処理は UI イベントではなくテスト可能な helper に閉じ込める
  • 保存済みファイルを別システムや顧客へ渡す前に再オープンまたは検査する

事前に試験すべき失敗パターン

  • SaveAs の成功だけでは業務契約が正しいとは言えません
  • サーバーと開発機ではフォント、権限、地域設定が異なることがあります
  • ログにパスワード、顧客データ、内部リンクを残してはいけません

詳しい Delphi サンプル

次の Delphi 例は、このテーマをサービス境界として実装する形を示し、ポリシー、ログ、検証をテスト可能な層に分けます

procedure BuildValidatedOrderWorkbook(const OutputFile: string; const Rows: TArray<TOrderRow>);
var
  Wb: TXLSXWorkbook;
  Sh: IXLSWorksheet;
  RowIndex: Integer;
  Row: TOrderRow;
begin
  Wb := TXLSXWorkbook.Create;
  try
    Sh := Wb.Sheets[0];
    Sh.Name := 'Orders';
    WriteHeaderRow(Sh, ['OrderId', 'Customer', 'Status', 'Amount', 'Owner']);

    RowIndex := 2;
    for Row in Rows do
    begin
      WriteOrderRow(Sh, RowIndex, Row);
      Inc(RowIndex);
    end;

    Sh.Range['A1:E1'].ApplyBuiltinStyle(xbsTitle);
    AddListValidation(Sh, 'C2:C' + IntToStr(RowIndex - 1), ['New', 'Approved', 'Blocked']);
    AddOwnerValidation(Sh, 'E2:E' + IntToStr(RowIndex - 1));
    AddAutoFilterToHeader(Sh, 'A1:E' + IntToStr(RowIndex - 1));
    CreateStructuredTable(Sh, 'OrdersTable', 'A1:E' + IntToStr(RowIndex - 1));
    AssertValidationCoverage(Sh, RowIndex - 1);

    if Wb.SaveAs(OutputFile) <> 1 then
      RaiseWorkbookSaveError(OutputFile);
  finally
    Wb.Free;
  end;
end;

本番チェックリスト

  • Run the workflow on an empty workbook, a normal customer workbook, and a worst-case workbook
  • Open the output with the target spreadsheet application or downstream importer
  • Log product version, template version, profile, row count, output path, elapsed time, and warning count
  • Keep passwords, temporary files, customer data, and support bundles under explicit retention rules
  • Add regression workbooks when a customer file exposes a new edge case

Product documentation

HotXLS Component