Initializes a new instance of the
Column class.
Namespace: Dapfor.Net.UiAssembly: Dapfor.Net (in Dapfor.Net.dll) Version: 2.10.3.24917 (2.10.3.24917)
Syntax
C# |
---|
public Column(
string id,
string label,
int width,
Nullable<ContentAlignment> alignment
) |
Visual Basic |
---|
Public Sub New (
id As String,
label As String,
width As Integer,
alignment As Nullable(Of ContentAlignment)
) |
Visual C++ |
---|
public:
Column(
String^ id,
String^ label,
int width,
Nullable<ContentAlignment> alignment
) |
F# |
---|
new :
id : string *
label : string *
width : int *
alignment : Nullable<ContentAlignment> -> Column |
Parameters
- id
- Type: System..::..String
The column identifier.
- label
- Type: System..::..String
The column label.
- width
- Type: System..::..Int32
The column width.
- alignment
- Type: System..::..Nullable<(Of <(<'ContentAlignment>)>)>
The column text alignment.
See Also