OrderBy Property
See Also 
SourceCode.Workflow.Design Namespace > SmartObjectFieldPart Class : OrderBy Property



Glossary Item Box

Gets or sets a value indicating in which order the results should be returned in if it is a list. ASC = Ascending, DESC = Descending

Syntax

Visual Basic (Declaration) 
Public Property OrderBy As Nullable(Of OrderByDirection)
Visual Basic (Usage)Copy Code
Dim instance As SmartObjectFieldPart
Dim value As Nullable(Of OrderByDirection)
 
instance.OrderBy = value
 
value = instance.OrderBy
C# 
public Nullable<OrderByDirection> OrderBy {get; set;}
C++/CLI 
public:
property Nullable<OrderByDirection> OrderBy {
   Nullable<OrderByDirection> get();
   void set (    Nullable<OrderByDirection> value);
}

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also