_Column.Name Property

Definition

Returns a String (string in C#) value that represents the name of the Column. Read-only.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
Public ReadOnly Property Name As String

Property Value

Remarks

The Name property is the default member of the Column object.

If the Column is a default column in the Table, or if it has been added to the Table with the explicit built-in name for the property, the value of Name is the explicit built-in name (without any enclosing brackets) for the property. If the Column has been added to the Table with a property name referencing a namespace, the value of Name will be the property name referenced by namespace. For more information on referencing properties by namespace, see Referencing Properties by Namespace

Applies to