DXFReaderNETControlAddAngularDimension Method (Vector3, Vector3, Vector3, Double, String, Int16, String, String, Boolean)
|
Adds a new angular dimension to the current drawing giving center point, start point, end point and the distance offset from the reference arc.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic EntityObject AddAngularDimension(
Vector3 CenterPoint,
Vector3 StartPoint,
Vector3 EndPoint,
double Offset,
string DimensionStyleName = "",
short ACIColor = 256,
string LayerName = "",
string LineTypeName = "",
bool AddToDrawing = true
)
Public Function AddAngularDimension (
CenterPoint As Vector3,
StartPoint As Vector3,
EndPoint As Vector3,
Offset As Double,
Optional DimensionStyleName As String = "",
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = "",
Optional AddToDrawing As Boolean = true
) As EntityObject
public:
EntityObject^ AddAngularDimension(
Vector3 CenterPoint,
Vector3 StartPoint,
Vector3 EndPoint,
double Offset,
String^ DimensionStyleName = L"",
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L"",
bool AddToDrawing = true
)
member AddAngularDimension :
CenterPoint : Vector3 *
StartPoint : Vector3 *
EndPoint : Vector3 *
Offset : float *
?DimensionStyleName : string *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string *
?AddToDrawing : bool
(* Defaults:
let _DimensionStyleName = defaultArg DimensionStyleName ""
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
let _AddToDrawing = defaultArg AddToDrawing true
*)
-> EntityObject
METHOD AddAngularDimension(
CenterPoint AS Vector3,
StartPoint AS Vector3,
EndPoint AS Vector3,
Offset AS REAL8,
DimensionStyleName AS STRING := "",
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := "",
AddToDrawing AS LOGIC := TRUE
) AS EntityObject
Parameters
- CenterPoint
- Type: DXFReaderNETVector3
Center point of the dimension. - StartPoint
- Type: DXFReaderNETVector3
Start point of the dimension. - EndPoint
- Type: DXFReaderNETVector3
End point of the dimension. - Offset
- Type: SystemDouble
The offset from the reference arc (positive or negative). - DimensionStyleName (Optional)
- Type: SystemString
The dimension style name. If omitted the current dimension style will be used. - 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. - AddToDrawing (Optional)
- Type: SystemBoolean
If true, the entity will be added to the drawing. Determines whether the created entity should actually be added to the current drawing or database. If false, the method just creates and returns the EntityObject without inserting it into the drawing. Useful when you want to preview, modify, or combine it with other entities before committing.
Return Value
Type:
EntityObjectThe new entity as a
Dimension.
RemarksThe entity is added to the active layout.
See Also