ListColumnCollection<TBusinessObject>.DefaultSortColumn Property
Gets or sets the default sort column for the list that is displayed in the list pane of the Dashboard.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public ListColumn<TBusinessObject> DefaultSortColumn { get; set; }
public:
property ListColumn<TBusinessObject>^ DefaultSortColumn {
ListColumn<TBusinessObject>^ get();
void set(ListColumn<TBusinessObject>^ value);
}
Public Property DefaultSortColumn As ListColumn(Of TBusinessObject)
Property Value
Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.ListColumn<TBusinessObject>
An instance of ListColumn<TBusinessObject> that is the default sort column.
Remarks
TBusinessObject represents a business object that encapsulates information and methods that relate to business data or business functionality. The information in the business object is exposed as properties.
See Also
ListColumnCollection<TBusinessObject> Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel Namespace
Return to top