GetStartingViewSettings Method


Returns the starting view settings for the specified document.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 22.0.0.0 (22.1.0.0)
Since: 2012

Syntax

C#
public static StartingViewSettings GetStartingViewSettings(
	Document doc
)
Visual Basic
Public Shared Function GetStartingViewSettings ( _
	doc As Document _
) As StartingViewSettings
Visual C++
public:
static StartingViewSettings^ GetStartingViewSettings(
	Document^ doc
)

Parameters

doc
Type: Autodesk.Revit.DB Document
The document to get the settings from, which must be a project document.

Return Value

The starting view settings for the document.

Exceptions

Exception Condition
Autodesk.Revit.Exceptions ArgumentException doc is not a project document.
Autodesk.Revit.Exceptions ArgumentNullException A non-optional argument was null

See Also