ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ColumnBase Class / SortMemberPath Property






In This Topic
    SortMemberPath Property (ColumnBase)
    In This Topic
    Gets or sets the name of the property to use when sorting this column.
    Syntax
    'Declaration
     
    
    Public Property SortMemberPath As System.String
    'Usage
     
    
    Dim instance As ColumnBase
    Dim value As System.String
     
    instance.SortMemberPath = value
     
    value = instance.SortMemberPath
    public System.string SortMemberPath {get; set;}
    public read-write property SortMemberPath: System.String; 
    public function get,set SortMemberPath : System.String
    public: __property System.string* get_SortMemberPath();
    public: __property void set_SortMemberPath( 
       System.string* value
    );
    public:
    property System.String^ SortMemberPath {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    Use this property in cases where you want the sorting to be performed based on values other than the ones speficied by the Binding property.
    See Also