DXFReaderNETControlAddAngularDimension Method (Line, Line, Vector3, String, Int16, String, String)
|
Adds a new angular dimension to the current drawing giving two reference lines and the position.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public EntityObject AddAngularDimension(
Line ReferenceLine1,
Line ReferenceLine2,
Vector3 Position,
string DimensionStyleName = "",
short ACIColor = 256,
string LayerName = "",
string LineTypeName = ""
)
Public Function AddAngularDimension (
ReferenceLine1 As Line,
ReferenceLine2 As Line,
Position As Vector3,
Optional DimensionStyleName As String = "",
Optional ACIColor As Short = 256,
Optional LayerName As String = "",
Optional LineTypeName As String = ""
) As EntityObject
public:
EntityObject^ AddAngularDimension(
Line^ ReferenceLine1,
Line^ ReferenceLine2,
Vector3 Position,
String^ DimensionStyleName = L"",
short ACIColor = 256,
String^ LayerName = L"",
String^ LineTypeName = L""
)
member AddAngularDimension :
ReferenceLine1 : Line *
ReferenceLine2 : Line *
Position : Vector3 *
?DimensionStyleName : string *
?ACIColor : int16 *
?LayerName : string *
?LineTypeName : string
(* Defaults:
let _DimensionStyleName = defaultArg DimensionStyleName ""
let _ACIColor = defaultArg ACIColor 256
let _LayerName = defaultArg LayerName ""
let _LineTypeName = defaultArg LineTypeName ""
*)
-> EntityObject
METHOD AddAngularDimension(
ReferenceLine1 AS Line,
ReferenceLine2 AS Line,
Position AS Vector3,
DimensionStyleName AS STRING := "",
ACIColor AS SHORT := 256,
LayerName AS STRING := "",
LineTypeName AS STRING := ""
) AS EntityObject
Parameters
- ReferenceLine1
- Type: DXFReaderNET.EntitiesLine
First reference line. - ReferenceLine2
- Type: DXFReaderNET.EntitiesLine
Second reference line. - Position
- Type: DXFReaderNETVector3
Point position of the dimension. - 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.
Return Value
Type:
EntityObjectThe new added entity as a
Dimension.
Remarks The entity is added to the active layout.
See Also