Show / Hide Table of Contents

Class LogColumn

A column in the log view.

Inheritance
object
LogColumn
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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 Source

LogColumn(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 Source

Name

Gets or sets the column header.

Declaration
public string Name { get; set; }
Property Value
Type Description
string
View Source

PropertyName

Gets or sets the property name for the column binding.

Declaration
public string PropertyName { get; set; }
Property Value
Type Description
string
View Source

Width

Gets or sets the column width.

Declaration
public double Width { get; set; }
Property Value
Type Description
double

Methods

View Source

Create()

Creates a grid view column from this column.

Declaration
public GridViewColumn Create()
Returns
Type Description
GridViewColumn

The GridViewColumn object.

  • View Source
In this article
Back to top Generated by DocFX