ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEText Class / RunSetMatrix Method
Index of the text run.
The coordinates of text runs are specified in text space. Matrix defines the transformation from text space to the user space for individual text run. See section '5.3.1Text-Positioning Operators' of the PDF Reference for more details.




In This Topic
    RunSetMatrix Method
    In This Topic
    Sets the matrix of a text run.
    Syntax
    'Declaration
     
    Public Sub RunSetMatrix( _
       ByVal index As Integer, _
       ByVal matrix As ImGearPDFFixedMatrix _
    ) 
    'Usage
     
    Dim instance As ImGearPDEText
    Dim index As Integer
    Dim matrix As ImGearPDFFixedMatrix
     
    instance.RunSetMatrix(index, matrix)
    public void RunSetMatrix( 
       int index,
       ImGearPDFFixedMatrix matrix
    )
    public: void RunSetMatrix( 
       int index,
       ImGearPDFFixedMatrix* matrix
    ) 
    public:
    void RunSetMatrix( 
       int index,
       ImGearPDFFixedMatrix^ matrix
    ) 

    Parameters

    index
    Index of the text run.
    matrix
    The coordinates of text runs are specified in text space. Matrix defines the transformation from text space to the user space for individual text run. See section '5.3.1Text-Positioning Operators' of the PDF Reference for more details.
    See Also