THotPDF.SetFormFieldTooltip Method

メソッドの要約: THotPDF.SetFormFieldTooltip Method

宣言

procedure SetFormFieldTooltip(const FieldName, Value: AnsiString);

ユニット

HPDFDoc

パラメータ

名前目的
FieldNameExisting AcroForm field name to find in the generated field list
ValueText written to the field dictionary as the /TU user hint

使用上の注意

Example

HPDF.BeginDoc;
HPDF.AddPage;
HPDF.CurrentPage.AddTextField('CustomerName', '', Rect(50, 100, 250, 120));
HPDF.SetFormFieldTooltip('CustomerName', 'Customer name');
HPDF.EndDoc;

Related API