ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEPath Class / GetData Method




In This Topic
    GetData Method (ImGearPDEPath)
    In This Topic
    Gets the path data.
    Syntax
    'Declaration
     
    Public Function GetData() As Integer()
    'Usage
     
    Dim instance As ImGearPDEPath
    Dim value() As Integer
     
    value = instance.GetData()
    public int[] GetData()
    public: int[]* GetData(); 
    public:
    array<int>^ GetData(); 

    Return Value

    Integer array that contains a variable-sized array of path operators and operands. The format is a 32-bit operator followed by 0 to 3 ImGearPDFFixedPoint values, depending on the operator. Opcodes are codes for moveto, lineto, curveto, rect, or closepath operators; operands are ImGearPDFFixedPoint values. Returns raw path data. If you want the points in page coordinates, concatenate the path data points with the PDE Element matrix obtained from ImGearPDEElement.GetMatrix.
    See Also