PieObject Constructor (Typed) | |
Construct a PieObject object.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax CONSTRUCTOR(
oPoint AS Point,
oDimension AS Dimension,
oPen AS Pen,
oBrush AS Brush,
iStartAngle AS LONG,
iEndAngle AS LONG
)
public PieObject(
Point oPoint,
Dimension oDimension,
Pen oPen,
Brush oBrush,
int iStartAngle,
int iEndAngle
)
Request Example
View SourceParameters
- oPoint
- Type: Point
The position of the PieObject object in canvas coordinates. - oDimension
- Type: Dimension
The dimension of the PieObject object in canvas coordinates. - oPen
- Type: Pen
The pen used to draw the PieObject object. By default, the current pen is used. - oBrush
- Type: Brush
The brush used to fill the PieObject object. By default, the current brush is used. - iStartAngle
- Type: Long
The starting angle of the pie shape in degrees (0 to 360). - iEndAngle
- Type: Long
The ending angle of the pie shape in degrees (0 to 360).
See Also