Excel çalışma kitaplarını doğrudan Delphi veya C++Builder kodundan oluşturun, düzenleyin, inceleyin, hesaplayın ve dışa aktarın. HotXLS; Microsoft Excel otomasyonu olmadan masaüstü araçları, batch işleri, raporlama sistemleri ve sunucu tarafı belge üretimi için tasarlanmış, XLS ve XLSX iş akışlarına yönelik kaynak kodlu yerel bir Object Pascal kütüphanesidir.
Bu yazı teams integrating workbook output with document management, search, audit, or customer-delivery systems için hazırlanmıştır. workbook metadata and document properties konusunu tek bir bileşen çağrısı olarak değil, üretim düzeyinde belge mühendisliği olarak ele alır.
Pratik risk şudur: metadata is often copied from templates accidentally, causing wrong authors, stale revision labels, missing retention fields, or poor search results. Bu nedenle akışın yazılı sözleşmeye, gözlemlenebilir tanılara ve gerçekçi regresyon dosyalarına ihtiyacı vardır.
Mimari kararlar
Own metadata as delivery data. standard properties such as title, subject, author, company, category, and keywords / custom properties needed for customer, job, retention, version, or workflow state
- standard properties such as title, subject, author, company, category, and keywords
- custom properties needed for customer, job, retention, version, or workflow state
- whether metadata can expose personal data, internal IDs, or confidential notes
- revision, generated-by, and template-version strategy
Uygulama akışı
Set properties from the business record. The order below keeps the workflow reviewable for Delphi and C++Builder teams.
- clear template metadata that should not reach generated output
- populate standard and custom properties from the business record
- validate required properties before saving or uploading the workbook
- include metadata in search or DMS hand-off checks
- audit final properties when support bundles are created
Doğrulama kanıtı
Metadata evidence for document management. Keep these fields with the output or support record.
- standard property values, custom property names, and required-property status
- template version, generator version, job identifier, and retention category
- privacy review for metadata fields that may expose sensitive values
- DMS or search-index acceptance result
Workbook metadata is visible outside Excel
Document properties are consumed by search indexes, records systems, portals, DMS workflows, and support staff. They should be generated deliberately rather than inherited accidentally from a designer's template file.
Üretim uygulama notları
HotXLS: workbook metadata and document properties in Delphi konusunu HotXLS çağrılarının çevresinde açık bir servis sözleşmesi olarak ele alın; giriş doğrulama, çalışma kitabı yazma, çıktı denetimi ve destek kanıtını ayırın
- Çalışma kitabını oluşturmadan önce veri kaynağını, hücre aralıklarını ve çıktı biçimini belirleyin
- Satır sayısı, sayfalar, uyarılar ve çıktı yolunu incelenebilir destek kaydına yazın
- Uygulamaya özel ayrıntıları UI olaylarına değil test edilebilir helper'lara yerleştirin
- Dosyayı başka sisteme veya müşteriye vermeden önce kaydedilmiş çıktıyı yeniden açın veya inceleyin
Prova edilmesi gereken hata kipleri
- Başarılı SaveAs çağrısı iş sözleşmesinin doğru kaldığını kanıtlamaz
- Sunucu ile geliştirici makinesinde yazı tipleri, izinler ve bölgesel ayarlar farklı olabilir
- Loglar parola, müşteri verisi veya iç bağlantı açığa çıkarmamalıdır
Ayrıntılı Delphi örneği
Aşağıdaki Delphi örneği bu konu için pratik bir servis sınırı gösterir ve politika, günlükleme ve doğrulamayı test edilebilir katmanda tutar
procedure StampWorkbookMetadata(const InputFile, OutputFile: string; const Props: TWorkbookDocumentProperties);
var
Wb: TXLSXWorkbook;
Cover: IXLSWorksheet;
begin
RequireFileExists(InputFile);
Wb := TXLSXWorkbook.Create;
try
Wb.Open(InputFile);
ApplyDocumentProperties(Wb, Props);
Cover := EnsureWorksheet(Wb, 'Document Info');
Cover.Range['A1'].Value := 'Document owner';
Cover.Range['B1'].Value := Props.Owner;
Cover.Range['A2'].Value := 'Classification';
Cover.Range['B2'].Value := Props.Classification;
Cover.Range['A3'].Value := 'Retention profile';
Cover.Range['B3'].Value := Props.RetentionProfile;
Cover.Range['A1:B3'].ApplyBuiltinStyle(xbsGood);
AssertMetadataPolicy(Wb, Props);
WriteMetadataAudit(Wb, Props);
if Wb.SaveAs(OutputFile) <> 1 then
RaiseWorkbookSaveError(OutputFile);
finally
Wb.Free;
end;
end;
Üretim kontrol listesi
- 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