ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / HeaderTemplateCell Class / Set Method
row position in header table.
column position in header table.
row span in header table.
column span in header table.
Text will appear in this cell.






In This Topic
    Set Method
    In This Topic
    Set value for properties of cell.
    Syntax
    'Declaration
     
    
    Public Function Set( _
       ByVal row As System.Integer, _
       ByVal col As System.Integer, _
       ByVal rowSpan As System.Integer, _
       ByVal colSpan As System.Integer, _
       ByVal title As System.String _
    ) As HeaderTemplateCell
    'Usage
     
    
    Dim instance As HeaderTemplateCell
    Dim row As System.Integer
    Dim col As System.Integer
    Dim rowSpan As System.Integer
    Dim colSpan As System.Integer
    Dim title As System.String
    Dim value As HeaderTemplateCell
     
    value = instance.Set(row, col, rowSpan, colSpan, title)
    public HeaderTemplateCell Set( 
       System.int row,
       System.int col,
       System.int rowSpan,
       System.int colSpan,
       System.string title
    )
    public function Set( 
        row: System.Integer;
        col: System.Integer;
        rowSpan: System.Integer;
        colSpan: System.Integer;
        title: System.String
    ): HeaderTemplateCell; 
    public function Set( 
       row : System.int,
       col : System.int,
       rowSpan : System.int,
       colSpan : System.int,
       title : System.String
    ) : HeaderTemplateCell;
    public: HeaderTemplateCell* Set( 
       System.int row,
       System.int col,
       System.int rowSpan,
       System.int colSpan,
       System.string* title
    ) 
    public:
    HeaderTemplateCell^ Set( 
       System.int row,
       System.int col,
       System.int rowSpan,
       System.int colSpan,
       System.String^ title
    ) 

    Parameters

    row
    row position in header table.
    col
    column position in header table.
    rowSpan
    row span in header table.
    colSpan
    column span in header table.
    title
    Text will appear in this cell.
    See Also