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