IsOutOfDate Property

Gets whether this PointGroup is out-of-date.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.208.0

Syntax

C#

public bool IsOutOfDate { get; }

Visual Basic

Public ReadOnly Property IsOutOfDate As Boolean
	Get

Visual C++

public:
property bool IsOutOfDate {
	bool get ();
}

Examples

CopyC#
1bool outOfDate = pointGroup.IsOutOfDate;
2write("PointGroup IsOutOfDate: " + outOfDate + "\n");
CopyVB.NET
1Dim outOfDate As Boolean = pointGroup__1.IsOutOfDate

See Also