Class ListViewDetailColumn
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ListViewDetailColumn : RadObject, IDisposable, ICustomTypeDescriptor, INotifyPropertyChanged
Constructors
ListViewDetailColumn(String)
Declaration
public ListViewDetailColumn(string name)
Parameters
System.String
name
|
ListViewDetailColumn(String, String)
Declaration
public ListViewDetailColumn(string name, string headerText)
Parameters
System.String
name
|
System.String
headerText
|
Fields
AutoSizeModeProperty
Properties
AutoSizeMode
Gets or sets the mode by which the column automatically adjusts its width after BestFit is executed.
Declaration
public ListViewBestFitColumnMode AutoSizeMode { get; set; }
Property Value
ListViewBestFitColumnMode
|
Current
Gets or sets a value indicating whether this column is current.
Declaration
public bool Current { get; set; }
Property Value
System.Boolean
|
FieldName
Gets the name of the field of the bound item corresponding to this column.
Declaration
public string FieldName { get; }
Property Value
System.String
|
HeaderText
Gets or sets the text that will be displayed in the header cells.
Declaration
public string HeaderText { get; set; }
Property Value
System.String
|
IsDataBound
Gets a value indicating whether the column is in bound mode.
Declaration
public bool IsDataBound { get; }
Property Value
System.Boolean
|
MaxWidth
Gets the maximum width that the column can be resized to.
Declaration
public float MaxWidth { get; set; }
Property Value
System.Single
|
MinWidth
Gets the minimum width that the column can be resized to.
Declaration
public float MinWidth { get; set; }
Property Value
System.Single
|
Name
Gets the name of the column. Must be unique for each column in the same RadListViewElement.
Declaration
public string Name { get; }
Property Value
System.String
|
Owner
Gets the RadListViewElement that owns this column.
Declaration
public RadListViewElement Owner { get; }
Property Value
RadListViewElement
|
Visible
Gets or sets a value indicating whether this column will be visible in DetailsView.
Declaration
public bool Visible { get; set; }
Property Value
System.Boolean
|
Width
Gets the current width of the column.
Declaration
public float Width { get; set; }
Property Value
System.Single
|
Methods
BestFit()
Adjusts the column width to fit the contents of all cells in the column, including the header cell.
Declaration
public void BestFit()
Initialize()
Declaration
protected virtual void Initialize()
SetOwner(RadListViewElement)
Sets the owner for this column. This method is used internally, never call it directly.
Declaration
public void SetOwner(RadListViewElement listElement)
Parameters
RadListViewElement
listElement
The owner element. |