Initializes a new instance of the Column class.

Namespace: Dapfor.Net.Ui
Assembly: 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,
	bool visible,
	bool editable
)
Visual Basic
Public Sub New ( 
	id As String,
	label As String,
	width As Integer,
	alignment As Nullable(Of ContentAlignment),
	visible As Boolean,
	editable As Boolean
)
Visual C++
public:
Column(
	String^ id, 
	String^ label, 
	int width, 
	Nullable<ContentAlignment> alignment, 
	bool visible, 
	bool editable
)
F#
new : 
        id : string * 
        label : string * 
        width : int * 
        alignment : Nullable<ContentAlignment> * 
        visible : bool * 
        editable : bool -> 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.
visible
Type: System..::..Boolean
true if the column is visible. Otherwise false.
editable
Type: System..::..Boolean
if set to true, the Cells, belonging to this column can be edited.

See Also