View.Width Property
Gets or sets the width of the view area.
Thread safety: This property is thread-safe.
Syntax
public System.Double Width { get; set; }
Property Value
Type: System.Double
Default: Differs depending on type. See the table below.
The width of the area displayed in the view, defined in the coordinate reference system of the view.
Default: Differs depending on type. See the table below.
The width of the area displayed in the view, defined in the coordinate reference system of the view.
Default values
Class | Default value |
---|---|
GlobeView | Not used. |
View | 10000.0 |
Remarks
See the property Area for more information.
Example
// Set the width of the area displayed in a 2D View to 10 000m (10km)
public static void SetWidthTo10000m(View view)
{
// Relation between projected coordinates and true meters near a given
// (projected) point. (In this example it is the center of the view)
Point projUnitsToMetersXY = view.Crs.MetersXY(view.Center);
// Calculate the relation from 1 meter to the projected units in X direction
double metersToProjUnitsX = 1.0 / projUnitsToMetersXY.X;
// Set the width of 10 000m
view.Width = 10000 * metersToProjUnitsX;
// Update the View
view.Update();
}
Platforms
Windows, Linux, Android