 | PdfInteractiveFormsSetDefaultAppearance Method |
Set the font to the DA (default appearance) entry of acroforms dictionary.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic void SetDefaultAppearance(
PdfFont font = null,
float fontSize = 0f,
FS_COLOR? color = null
)
Public Sub SetDefaultAppearance (
Optional font As PdfFont = Nothing,
Optional fontSize As Single = 0F,
Optional color As FS_COLOR? = Nothing
)
public:
void SetDefaultAppearance(
PdfFont^ font = nullptr,
float fontSize = 0f,
Nullable<FS_COLOR> color = nullptr
)
member SetDefaultAppearance :
?font : PdfFont *
?fontSize : float32 *
?color : Nullable<FS_COLOR>
(* Defaults:
let _font = defaultArg font null
let _fontSize = defaultArg fontSize 0f
let _color = defaultArg color null
*)
-> unit public void SetDefaultAppearance(
PdfFont font = null,
float fontSize = 0f,
FS_COLOR? color = null
)
function SetDefaultAppearance(font, fontSize, color);
Parameters
- font PdfFont (Optional)
- The font to set. if null Helvetica is used.
- fontSize Single (Optional)
- The font size. 0 means autosize.
- color NullableFS_COLOR (Optional)
- The font color. If null Black is used.
See Also