 | PdfFontExtensionGetCharBBoxEx Method |
Get the special character bounding box of a font object.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf.Gdi (in Patagames.Pdf.Gdi.dll) Version: 5.1.3
Syntaxpublic static Rectangle GetCharBBoxEx(
this PdfFont font,
int charCode
)
<ExtensionAttribute>
Public Shared Function GetCharBBoxEx (
font As PdfFont,
charCode As Integer
) As Rectangle
public:
[ExtensionAttribute]
static Rectangle GetCharBBoxEx(
PdfFont^ font,
int charCode
)
[<ExtensionAttribute>]
static member GetCharBBoxEx :
font : PdfFont *
charCode : int -> Rectangle /** @attribute ExtensionAttribute */
public static Rectangle GetCharBBoxEx(
PdfFont font,
int charCode
)
Patagames.Pdf.Net.PdfFontExtension.GetCharBBoxEx = function(font, charCode);
Parameters
- font PdfFont
- The instance of the PdfFont class.
- charCode Int32
- The character code.
Return Value
RectangleCharacter bounding box of a font object
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
PdfFont. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also