|
Description
|
Returns/sets the aspect ratio of the displayed drawing. This aspect ratio is the relationship between the drawing's two dimensions, expressed as width divided by height.
|
Syntax Visual Basic
|
[form.]DXFReader.DisplayAspectRatio[ = Value!]
|
|
Visual C++
|
float DXFReader.GetDisplayAspectRatio(); void DXFReader.SetDisplayAspectRatio(float NewValue);
|
|
Delphi
|
property DisplayAspectRatio: Single;
|
|
C#
|
float DXFReader.DisplayAspectRatio;
|
|
Remarks
|
Use this property to exactly calibrate the display device. To set this property set it to its default value, display a square, measure the actual width and height on the screen and set the DisplayAspectRatio to the value width / height.
|
|
Data Type
|
Single
|
|
Default Value
|
1
|