PlanTopology Property (Level)


Get the PlanTopology of a given level in the last phase.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)

Syntax

C#
public PlanTopology this[
	Level level
] { get; }
Visual Basic
Public ReadOnly Property PlanTopology ( _
	level As Level _
) As PlanTopology
	Get
Visual C++
public:
property PlanTopology^ PlanTopology[Level^ level] {
	PlanTopology^ get (Level^ level);
}

Parameters

level
Type: Autodesk.Revit.DB Level
The level of the Plan Topology.

Remarks

Accessing plan topology requires that document is modifiable as it will actually trigger calculating plan topology if they have not been calculated yet. The time necessary for the calculations may be significant and should be considered.

See Also