In This Topic
Gets or sets a value that determines whether null values should appear first or last when the collection is sorted(regardless of sort direction).
Syntax
'Declaration
Public Property SortNullsFirst As System.Boolean
'Usage
Dim instance As SortDescription
Dim value As System.Boolean
instance.SortNullsFirst = value
value = instance.SortNullsFirst
public System.bool SortNullsFirst {get; set;}
public read-write property SortNullsFirst: System.Boolean;
public function get,set SortNullsFirst : System.boolean
public: __property System.bool get_SortNullsFirst();
public: __property void set_SortNullsFirst(
System.bool value
);
public:
property System.bool SortNullsFirst {
System.bool get();
void set ( System.bool value);
}
See Also