Wisej.Web.ListControlConvertEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides data for the Format event.
Initializes a new instance of ListControlConvertEventArgs.
value
desiredType
listItem
Object: Item being converted.
Represents the method that will handle the ListControlConvert event of a ListView.
Wisej.Web.ListControlConvertEventHandler
Wisej.Web.ListControl
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Provides a common implementation of members for the ListBox and ComboBox classes.
Boolean: Returns or sets a value indicating that the control can display HTML in the Text property. (Default: False
)
Boolean: Returns a value indicating whether the list enables selection of list items.
BorderStyle: Returns or sets the type of border that is drawn around the ListControl. (Default: Solid
)
CurrencyManager: Returns the CurrencyManager associated with this control.
Object: Returns or sets the data source for this ListControl. (Default: null
)
Throws:
ArgumentException The assigned value does not implement the IList or IListSource interfaces.
String: Returns or sets the property to display for this ListControl. (Default: ""
)
IFormatProvider: Returns or sets the IFormatProvider that provides custom formatting behavior. (Default: null
)
String: Returns or sets the format-specifier characters that indicate how a value is to be displayed. (Default: ""
)
Boolean: Returns or sets whether formatting is applied to the DisplayMember property of the ListControl. (Default: False
)
String: Returns or sets the property to use as the icon for the items in the ListControl. (Default: ""
)
Boolean: Returns or sets a value that indicates that the control is invalid.
String: Returns or sets the invalid message that is shown in the invalid tooltip. (Default: ""
)
Boolean: Returns or sets a value that indicates that the control has been modified by the user since the control was created or its contents were last set.
Int32: Returns or sets the number of items to prefetch outside of the visible area when VirtualScroll is set to true. The default is 0 (disabled). (Default: 0
)
Int32: When overridden in a derived class, gets or sets the zero-based index of the currently selected item.
Object: Returns or sets the value of the member property specified by the ValueMember property. (Default: null
)
Throws:
InvalidOperationException The assigned value is null or the empty string ("").
Boolean: Returns or sets whether to show tooltips (set using ToolTipMember) for the list items. (Default: False
)
String: Returns or sets the property to use as the tooltip for the items in the ListControl, when the property ShowToolTips is set to true. (Default: ""
)
String: Returns or sets the property to use as the actual value for the items in the ListControl. (Default: ""
)
Throws:
ArgumentException The specified property cannot be found on the object specified by the DataSource property.
Boolean: Enables or disables virtual scrolling for the ListControl. When virtual scrolling is enabled, only the visible items are rendered in the browser allowing the ListControl to host virtually unlimited items without any performance loss. (Default: False
)
When VirtualScroll is set to true, all the items must be of the same height, limiting the more flexible HTML rendering available when VirtualScroll is off (default). Setting the property PrefetchItems to a value greater than 0 allows the virtual view to prefetch the specified number of items outside of the visible area to enable smoother scrolling. Throws:
InvalidOperationException Horizontal orientation is not supported with virtual scrolling.
Populates the ListControl from the data appending the items to the existing items.
data
Returns: Int32. Numbers of items appended.
Use this method to fill a ListControl without binding it to the data source.
bindingMemberInfo
Returns: Boolean.
Dispose the control.
disposing
true when this method is called by the application rather than a finalizer.
Populates the ListControl from the data .
data
Returns: Int32. Numbers of items added.
Use this method to fill a ListControl without binding it to the data source.
Retrieves the current value of the ListControl item, if it is a property of an object, given the item.
item
Returns: Object. The filtered object.
Returns the current value of the ListControl item, if it is a property of an object given the item and the property name.
item
field
Returns: Object. The filtered object.
text
items
startIndex
exact
Returns: Int32.
text
items
startIndex
exact
ignoreCase
ignoreHtml
ignoreCrLf
Returns: Int32.
Returns the icon object, either an instance of Image or a String representing the icon name or URL, of the specified item.
item
The object from which to get the icon to display for the list item.
Returns: Object. If the IconMember property is not specified, the value returned by GetItemIcon is null. Otherwise, the method returns the object value of the member specified in the IconMember property for the object specified in the item parameter.
Returns the text representation of the specified item.
item
The object from which to get the contents to display.
Returns: String. If the DisplayMember property is not specified, the value returned by GetItemText is the value of the item's ToString method. Otherwise, the method returns the string value of the member specified in the DisplayMember property for the object specified in the item parameter.
Returns the text representation of the specified item without HTML tags.
item
Returns: String.
Returns the tooltip text related to the object.
item
The object from which to get the tooltip text to display for the list item.
Returns: String. If the ToolTipMember property is not specified, the value returned by GetItemToolTip is null. Otherwise, the method returns the value of the member specified in the ToolTipMember property for the object specified in the item parameter.
Handles special input keys, such as PAGE UP, PAGE DOWN, HOME, END, and so on.
keyData
Returns: Boolean. true if the keyData parameter specifies the End, Home, PageUp, or PageDown key; false if the keyData parameter specifies Alt.
Fires the BindingContextChanged event.
e
Fires the DataSourceChanged event.
e
Fires the DisplayMemberChanged event.
e
Raises the Format event.
e
Fires the FormatInfoChanged event.
e
Fires the FormatStringChanged event.
e
Fires the FormattingEnabledChanged event.
e
Fires the IconMemberChanged event.
e
Fires the ModifiedChanged event.
e
Fires the SelectedValueChanged event.
e
Fires the SelectedValueChanged event.
e
Fires the ToolTipMemberChanged event.
e
Fires the Validating event.
e
Fires the ValueMemberChanged event.
e
Renders the client component.
config
Dynamic configuration object.
When overridden in a derived class, resynchronizes the data of the object at the specified index with the contents of the data source.
index
The zero-based index of the item whose data to refresh.
When overridden in a derived class, resynchronizes the item data with the contents of the data source.
Renders the text representation of the specified item. If AllowHtml is set to false, the text is encoded.
item
The object from which to get the contents to display.
Returns: Object. If the DisplayMember property is not specified, the value returned by GetItemText is the value of the item's ToString method. Otherwise, the method returns the string value of the member specified in the DisplayMember property for the object specified in the item parameter.
When overridden in a derived class, sets the object with the specified index in the derived class.
index
The array index of the object.
value
The object.
When overridden in a derived class, sets the specified array of objects in a collection in the derived class.
items
An array of items.
EventHandler Fired when the DataSource changes.
EventHandler Fired when the DisplayMember property changes.
ListControlConvertEventHandler Fired when the control is bound to a data value.
EventHandler Fired when the value of the FormatInfo property changes.
EventHandler Fired when value of the FormatString property changes.
EventHandler Fired when the value of the FormattingEnabled property changes.
EventHandler Fired when the IconMember property changes.
EventHandler Fired when the value of the Modified property has changed.
EventHandler Fired when the SelectedValue property changes.
EventHandler Fired when the ToolTipMember property changes.
EventHandler Fired when the ValueMember property changes.
Represents a combo box control.
Represents a control to display a list of items.
Provides access to the UserData
and Tag
properties associated to the component implementing this interface.
Bindable components implement this interface.
Controls that support drag & drop operations implement this interface.
Provides access to the validation events and properties property for controls that support validation.
All wisej components implement this interface.
Allows an object to serialize itself.
The object that contains data for the to display.
The object that contains data for the to display.
The object the item is bound to.
The object the item is bound to.
The property name of the item the is bound to.
One of the values of .
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
A that contains the event data.
Displays a in which a check box is displayed to the left of each item.
Represents a control that can be hosted in a .
The TreeViewComboBox control represents a control with a as the drop down panel.
The TreeViewComboBox control represents a control with a as the drop down panel.
The UserComboBox control represents a control with a custom panel that drops down when the user clicks the down arrow.
All wisej controls derived from the class must implement this interface.