DXFReaderNETControlShowRubberBandAlignedDimension Method (Line, Vector2, NullableColor, RubberBandType)
             | 
          
        
         
            Shows the distance specified by referenc line as a rubber band aligned dimension. 
            
 
    Namespace: 
   DXFReaderNET
    Assembly:
   DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic void ShowRubberBandAlignedDimension(
	Line ReferenceLine,
	Vector2 Position,
	Color? Color = null,
	RubberBandType RubberBandType = RubberBandType.Dashed
)
Public Sub ShowRubberBandAlignedDimension ( 
	ReferenceLine As Line,
	Position As Vector2,
	Optional Color As Color? = Nothing,
	Optional RubberBandType As RubberBandType = RubberBandType.Dashed
)
public:
void ShowRubberBandAlignedDimension(
	Line^ ReferenceLine, 
	Vector2 Position, 
	Nullable<Color> Color = nullptr, 
	RubberBandType RubberBandType = RubberBandType::Dashed
)
member ShowRubberBandAlignedDimension : 
        ReferenceLine : Line * 
        Position : Vector2 * 
        ?Color : Nullable<Color> * 
        ?RubberBandType : RubberBandType 
(* Defaults:
        let _Color = defaultArg Color null
        let _RubberBandType = defaultArg RubberBandType RubberBandType.Dashed
*)
-> unit 
 METHOD ShowRubberBandAlignedDimension(
	ReferenceLine AS Line,
	Position AS Vector2,
	Color AS Nullable<Color> := NULL,
	RubberBandType AS RubberBandType := RubberBandType.Dashed
) AS VOID
Parameters
- ReferenceLine
 - Type: DXFReaderNET.EntitiesLine
Reference line of the dimension. - Position
 - Type: DXFReaderNETVector2
Point position of the dimension line. - Color (Optional)
 - Type: SystemNullableColor
The color of the rubber band if solid. If omitted the CurrentColor will be used. - RubberBandType (Optional)
 - Type: DXFReaderNETRubberBandType
The type of rubber band: solid or dashed. 
See Also