View.StartPosition Property
Gets or sets a value indicating how the initial view area is determined.
Syntax
public ViewStartPosition StartPosition { get; set; }
Property Value
Default: Differs depending on type. See the table below.
Specifies how the initial view area is determined.
Default values
Class | Default value |
---|---|
GlobeView | Not used. |
View | Manual |
Remarks
Changing this value after the view has been updated has no effect.
Example
// Set View StartPosition to ExtentOfData
public static void SetStartPositionToExtentOfData(View view)
{
// Set the StartPosition to ExtentOfData
view.StartPosition = ViewStartPosition.ExtentOfData;
}
Platforms
Windows, Linux, Android