Sets new path data for a path element.
Syntax
'Declaration
Public Sub SetData( _
ByVal () As Integer _
)
'Usage
Dim instance As ImGearPDEPath
Dim data() As Integer
instance.SetData(data)
public void SetData(
int[]
)
public: void SetData(
int[]*
)
public:
void SetData(
array<int>^
)
Parameters
- data
- Integer array, which is 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. Operators are codes for moveto, lineto, curveto, rect, or closepath operators and must be one of ImGearPDEPathElementType. Operands are ImGearPDFFixedPoint values.
See Also