Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / TableView Class / SetColumnNames Method
Array of table column names.


In This Topic
    SetColumnNames Method
    In This Topic
    Sets the column names for the table. The count of array names must equal the count of table columns. Each element must not be null or empty and each element must be unique (not case sensitive) in the array names.
    Syntax
    'Declaration
     
    
    Public Function SetColumnNames( _
       ByVal names() As String _
    ) As Boolean
    'Usage
     
    
    Dim instance As TableView
    Dim names() As String
    Dim value As Boolean
     
    value = instance.SetColumnNames(names)
    public bool SetColumnNames( 
       string[] names
    )

    Parameters

    names
    Array of table column names.

    Return Value

    true if set successfully; otherwise, returns false.
    See Also