Represents a column shown in RadGanttView.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
public class GanttViewTextViewColumn : INotifyPropertyChanged
Inheritance: objectGanttViewTextViewColumn
Implements:
Constructors
Initializes a new instance of the GanttViewTextViewColumn class.
public GanttViewTextViewColumn()
Initializes a new instance of the GanttViewTextViewColumn class.
Initializes a new instance of the GanttViewTextViewColumn class.
Initializes a new instance of the GanttViewTextViewColumn class.
Properties
Gets or sets a value indicating whether this GanttViewTextViewColumn is current.
public virtual bool Current { get; set; }
true if current; otherwise, false.
Gets or sets a value indicating the type of the data this column is displaying.
public Type DataType { get; set; }
Gets or sets the name of the field used to populate this column
public string FieldName { get; set; }
The name of the field.
Gets or sets the format string.
public string FormatString { get; set; }
The format string.
Gets or sets the header text of the column.
public string HeaderText { get; set; }
The header text.
Gets a value indicating whether this instance is data bound.
public bool IsDataBound { get; }
true if this instance is data bound; otherwise, false.
Gets or sets the name of the column.
public string Name { get; set; }
The name.
Gets the RadGanttViewElement that is the owner of this column.
public RadGanttViewElement Owner { get; }
The owner.
Gets or sets the tag of the column.
public object Tag { get; set; }
The tag.
Gets or sets a value indicating whether this GanttViewTextViewColumn is visible.
public bool Visible { get; set; }
true if visible; otherwise, false.
Methods
protected virtual void Initialize()
Fires the PropertyChanged event.
protected virtual void OnNotifyPropertyChanged(string propertyName)
Name of the property.
Updates the width.
protected virtual void UpdateWidth()
Events
Occurs when a property value changes.
public event PropertyChangedEventHandler PropertyChanged
Implements: