SPList.Ordered property

Gets or sets a Boolean value that specifies whether the option to allow users to reorder items in the list is available on the Edit View page for the list.

Namespace:  Microsoft.SharePoint
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Property Ordered As Boolean
    Get
    Set
'Usage
Dim instance As SPList
Dim value As Boolean

value = instance.Ordered

instance.Ordered = value
public bool Ordered { get; set; }

Property value

Type: System.Boolean
true if the option is available on the Edit View page; otherwise, false.

Remarks

The Ordered property is true by default for links lists. Setting this property to true for a list of base type Survey, IssueTracking, DocumentLibrary, or DiscussionBoard throws a System.NotSupportedException exception.

Examples

The following code example adds to the Edit View page of the specified list the option to allow users to reorder items.

Dim site As SPWeb = SPContext.Current.Web
Try
    Dim list As SPList = site.Lists("List_Name")
    list.Ordered = True
    list.Update()
Finally
    site.Dispose()
End Try
SPWeb oWebsite = SPContext.Current.Web;
SPList oList = oWebsite.Lists["List_Name"];
oList.Ordered = true;
oList.Update();

See also

Reference

SPList class

SPList members

Microsoft.SharePoint namespace