DiametricDimension Constructor (Circle, Double, Double, DimensionStyle)
             | 
          
        
         
            Initializes a new instance of the DiametricDimension class.
            
 
    Namespace: 
   DXFReaderNET.Entities
    Assembly:
   DXFReaderNET (in DXFReaderNET.dll) Version: 20.12.2
Syntaxpublic DiametricDimension(
	Circle circle,
	double rotation,
	double offset,
	DimensionStyle style
)
Public Sub New ( 
	circle As Circle,
	rotation As Double,
	offset As Double,
	style As DimensionStyle
)
public:
DiametricDimension(
	Circle^ circle, 
	double rotation, 
	double offset, 
	DimensionStyle^ style
)
new : 
        circle : Circle * 
        rotation : float * 
        offset : float * 
        style : DimensionStyle -> DiametricDimension CONSTRUCTOR(
	circle AS Circle,
	rotation AS REAL8,
	offset AS REAL8,
	style AS DimensionStyle
)
Parameters
- circle
 - Type: DXFReaderNET.EntitiesCircle
Circle to measure. - rotation
 - Type: SystemDouble
Rotation in degrees of the dimension line. - offset
 - Type: SystemDouble
Distance between the reference point and the dimension text - style
 - Type: DXFReaderNET.TablesDimensionStyle
The style to use with the dimension. 
RemarksThe center point and the definition point define the distance to be measure.
See Also