Share

PointGroupCollection.DrawOrder Property

Gets or sets the draw priority collection for the PointGroups.



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

Syntax

C#

public ObjectIdCollection DrawOrder { get; set; }

VB

Public Property DrawOrder As ObjectIdCollection
	Get
	Set

C++

public:
property ObjectIdCollection^ DrawOrder {
	ObjectIdCollection^ get ();
	void set (ObjectIdCollection^ value);
}

Property Value

ObjectIdCollection

Exceptions

ExceptionCondition
ArgumentException Thrown when setting to a a collection with items that are not identical to the existing DrawOrders.

Remarks

  • The common usage is to get the draw priority collection, then re-order the items in collection, and then set value to the re-ordered collection.
  • All the PointGroups in the current database must be included in the collection when the property value is set.

See Also

Reference

Was this information helpful?