ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDESoftMask Class / GetForm Method
Defines the transformation matrix from coordinate space to user space for the SoftMask object. The returned value corresponds to Matrix key in the XObject Form attributes dictionary, which specifies the mapping from form space to the current user space. Each time the form XObject is painted by the Do operator, this matrix is concatenated with the current transformation matrix to define the mapping from form space to device space. See section "4.9 Form XObjects" of the PDF Reference for more details.




In This Topic
    GetForm Method
    In This Topic
    Acquires the form that defines the soft mask.
    Syntax
    'Declaration
     
    Public Function GetForm( _
       ByVal matrix As ImGearPDFFixedMatrix _
    ) As ImGearPDEForm
    'Usage
     
    Dim instance As ImGearPDESoftMask
    Dim matrix As ImGearPDFFixedMatrix
    Dim value As ImGearPDEForm
     
    value = instance.GetForm(matrix)
    public ImGearPDEForm GetForm( 
       ImGearPDFFixedMatrix matrix
    )
    public: ImGearPDEForm* GetForm( 
       ImGearPDFFixedMatrix* matrix
    ) 
    public:
    ImGearPDEForm^ GetForm( 
       ImGearPDFFixedMatrix^ matrix
    ) 

    Parameters

    matrix
    Defines the transformation matrix from coordinate space to user space for the SoftMask object. The returned value corresponds to Matrix key in the XObject Form attributes dictionary, which specifies the mapping from form space to the current user space. Each time the form XObject is painted by the Do operator, this matrix is concatenated with the current transformation matrix to define the mapping from form space to device space. See section "4.9 Form XObjects" of the PDF Reference for more details.

    Return Value

    ImGearPDEForm class object.
    See Also