 | PdfInteractiveFormsGetDefaultAppearance Method |
Get the default field's text size, colors and font.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.111.2704
Syntaxpublic bool GetDefaultAppearance(
out FS_COLOR strokeColor,
out FS_COLOR fillColor,
out PdfFont font,
out float fontSize,
out FS_MATRIX matrix
)
Public Function GetDefaultAppearance (
<OutAttribute> ByRef strokeColor As FS_COLOR,
<OutAttribute> ByRef fillColor As FS_COLOR,
<OutAttribute> ByRef font As PdfFont,
<OutAttribute> ByRef fontSize As Single,
<OutAttribute> ByRef matrix As FS_MATRIX
) As Boolean
public:
bool GetDefaultAppearance(
[OutAttribute] FS_COLOR% strokeColor,
[OutAttribute] FS_COLOR% fillColor,
[OutAttribute] PdfFont^% font,
[OutAttribute] float% fontSize,
[OutAttribute] FS_MATRIX^% matrix
)
member GetDefaultAppearance :
strokeColor : FS_COLOR byref *
fillColor : FS_COLOR byref *
font : PdfFont byref *
fontSize : float32 byref *
matrix : FS_MATRIX byref -> bool public boolean GetDefaultAppearance(
/** @attribute OutAttribute */ /** @ref */FS_COLOR strokeColor,
/** @attribute OutAttribute */ /** @ref */FS_COLOR fillColor,
/** @attribute OutAttribute */ /** @ref */PdfFont font,
/** @attribute OutAttribute */ /** @ref */float fontSize,
/** @attribute OutAttribute */ /** @ref */FS_MATRIX matrix
)
function GetDefaultAppearance(strokeColor, fillColor, font, fontSize, matrix);
Parameters
- strokeColor FS_COLOR
- Stroke Color. Transparent if not specified/
- fillColor FS_COLOR
- Fill color. Transparent if not specified.
- font PdfFont
- Font.
- fontSize Single
- Font size. 0 - auto size.
- matrix FS_MATRIX
- Matrix.
Return Value
BooleanFalse if the default appearance is missing or incorrect.
See Also