Assign this to properties on your IData interfaces to control default ordering of tree items.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
Examples
This sample shows how to use the TreeOrdering attribute.
CopyC#

// data interface attributes ... interface IMyDataType : IData { [TreeOrdering(1)] [StoreFieldType(PhysicalStoreFieldType.String, 40)] [ImmutableFieldId("{D75EA67F-AD14-4BAB-8547-6D87002809F1}")] string ProductName { get; set; } // more data properties ... }