Class LogColumn
A column in the log view.
Inherited Members
Namespace: Phoenix.BotBrain.Logging
Assembly: Phoenix.Plugin.BotBrain.Logging.dll
Syntax
public class LogColumn
Remarks
Initializes a new instance of the LogColumn class.
Constructors
View SourceLogColumn(string, string, double)
A column in the log view.
Declaration
public LogColumn(string name, string propertyName, double width = NaN)
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The column header. |
| string | propertyName | The property name for the column binding. |
| double | width | The column width. |
Remarks
Initializes a new instance of the LogColumn class.
Properties
View SourceName
Gets or sets the column header.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
PropertyName
Gets or sets the property name for the column binding.
Declaration
public string PropertyName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Width
Gets or sets the column width.
Declaration
public double Width { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Methods
View SourceCreate()
Creates a grid view column from this column.
Declaration
public GridViewColumn Create()
Returns
| Type | Description |
|---|---|
| GridViewColumn | The GridViewColumn object. |