DXFReaderNETControlAddPolygon Method
|
Adds a new regular polygon inscribed in a circle to the current drawing with center, radius and rotation.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddPolygon(
Vector3 Center,
double Radius,
short Sides,
double Rotation = 0,
bool Circumscribed = false,
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddPolygon (
Center As Vector3,
Radius As Double,
Sides As Short,
Optional Rotation As Double = 0,
Optional Circumscribed As Boolean = false,
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddPolygon(
Vector3 Center,
double Radius,
short Sides,
double Rotation = 0,
bool Circumscribed = false,
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddPolygon :
Center : Vector3 *
Radius : float *
Sides : int16 *
?Rotation : float *
?Circumscribed : bool *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _Rotation = defaultArg Rotation 0
let _Circumscribed = defaultArg Circumscribed false
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddPolygon(
Center AS Vector3,
Radius AS REAL8,
Sides AS SHORT,
Rotation AS REAL8 := 0,
Circumscribed AS LOGIC := FALSE,
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- Center
- Type: DXFReaderNETVector3
The center of the polygon. - Radius
- Type: SystemDouble
The radius of the polygon in drawing's units. - Sides
- Type: SystemInt16
The number of sides of the polygon. - Rotation (Optional)
- Type: SystemDouble
The rotation in degree of the polygon. - Circumscribed (Optional)
- Type: SystemBoolean
True for circumscribed polygon about circle, false for inscribed polygonin circle. Default value false. - ACIColor (Optional)
- Type: SystemInt16
A number for 0 to 256 corresponding to the AutoCAD Color Index (0 = ByBlock; 256 = ByLayer. Default value = 256). - LayerName (Optional)
- Type: SystemString
The layer name. If omitted, or layername doesn't exist, the CurrentLayer will be used. - LineTypeName (Optional)
- Type: SystemString
The linetype name. If omitted, or linetype doesn't exist, the CurrentLineTypeName will be used.
Return Value
Type:
EntityObjectThe new added entity as a
Light Weight Polyline.
Remarks The entity is added to the active layout.
See Also