IPCsArcs ![]() |
Properties and methods of IPCsArcs 
IPCsApplication
IPCsDocument
IPCsPage
IPCsArcs 
IPCsApplication
IPCsDocument
IPCsSelectStatus
IPCsSelectionArea
Arcs
Add ![]() | Create a circle. Parameters needed: center as TPCsPoint3D , Radius as integer, StartAngle as integer, EndAngle as integer. Returns a IPCsArc ![]() Syntax:function Add(Center: TPCsPoint3D; Radius: Integer; StartAng: Integer; EndAng: Integer): IPCsArc; |
AddXYZ ![]() | The same as Add-method. Instead of a TPCsPoint3D , it take 3 integers. The rest of the parameters are the sameSyntax:function AddXYZ(CenterX: Integer; CenterY: Integer; CenterZ: Integer; Radius: Integer; StartAng: Integer; EndAng: Integer): IPCsArc; |
Item ![]() | Used to access a specific circle. Parameters needed: an integer. Return type is IPCsArc ![]() Syntax:property Item[Index: Integer]: IPCsArc; |
Count ![]() | Number of circles on a page |
Use Arcs.Item[interger] and Arcs.Count to get that/these items you want.
IPCsArcs
gives access to all circles on a page through Item[integer].
IPCsArc
is a specific circle, (which can be selected through IPCsArcs.Item[integer])