Gets the path data.
Syntax
Visual Basic
C#
Managed Extensions for C++
C++/CLI
'Declaration
Public Function GetData() As Integer()
'Usage
Dim instance As ImGearPDEPath
Dim value() As Integer
value = instance.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