ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDETextItem Class / GetMatrix Method / GetMatrix(Int32) Method
Index of the character whose text matrix is obtained.




In This Topic
    GetMatrix(Int32) Method
    In This Topic
    Gets the matrix that defines the transformation from text space to the user space for individual text character.
    Syntax
    'Declaration
     
    Public Overloads Function GetMatrix( _
       ByVal characterIndex As Integer _
    ) As ImGearPDFFixedMatrix
    'Usage
     
    Dim instance As ImGearPDETextItem
    Dim characterIndex As Integer
    Dim value As ImGearPDFFixedMatrix
     
    value = instance.GetMatrix(characterIndex)
    public ImGearPDFFixedMatrix GetMatrix( 
       int characterIndex
    )
    public: ImGearPDFFixedMatrix* GetMatrix( 
       int characterIndex
    ) 
    public:
    ImGearPDFFixedMatrix^ GetMatrix( 
       int characterIndex
    ) 

    Parameters

    characterIndex
    Index of the character whose text matrix is obtained.

    Return Value

    ImGearPDFFixedMatrix class object.
    Remarks
    The coordinates of text items are specified in text space. This method gets the matrix that defines the transformation from text space to the user space for individual text character. See section '5.3.1Text-Positioning Operators' of the PDF Reference for more details.
    See Also