Base List ControlItem(String) Property
This can be used to get the value of the specified column in the currently selected item
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Returns the entry at the specified column in the currently selected item. If SelectedIndex equals -1 (no selection) or the column cannot be found, this returns null.
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public Object? this[
string colName
] { get; }VB
Public ReadOnly Default Property Item (
colName As String
) As Object
GetC++
public:
property Object^ default[String^ colName] {
Object^ get (String^ colName);
}F#
member Item : Object with getParameters
- colName String
- The column name of the item to get. This can be any column in the data source, not just those displayed by the control.
Property Value
ObjectReturns the entry at the specified column in the currently selected item. If SelectedIndex equals -1 (no selection) or the column cannot be found, this returns null.