Wisej.Web.DomainUpDown
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents a spinner control that displays string values.
Initializes a new instance of the class.
Initializes a new instance of the class with specific initial settings.
Initializes a new instance of the class with specific initial settings.
Initializes a new instance of the class with specific initial settings.
Initializes a new instance of the class with specific initial settings.
: Returns the default size for a text box control.
: A collection of objects assigned to the spinner control.
: Returns or sets the index value of the selected item. (Default: -1)
Throws:
The assigned value is less than the default, -1; or the assigned value is greater than the count.
: Returns or sets the selected item based on the index value of the selected item in the collection.
: Returns or sets whether the item collection is sorted. (Default: False)
: Returns or sets the text associated with this control. (Default: "")
When AllowHtml is set to true, the text can contain HTML content. If the text contains new lines (CRLF) but doesn't contain HTML elements (at least one "<") all CRLF are automatically substituted with "<BR/>".
Fires the event.
Fires the event.
Processes the event from the client.
Renders the client component.
Updates the client component using the state information.
Displays the value of the currently selected item.
Fired when the property has been changed.
Fired when the property has changed.
All wisej components implement this interface.
All wisej controls derived from the class must implement this interface.
Allows an object to serialize itself.
onSelectedItemChanged
The delegate to invoke when the SelectedItemChanged event is raised.
label
Initial LabelText value.
onSelectedItemChanged
The delegate to invoke when the SelectedItemChanged event is raised.
location
The Point specifying the upper-left corner of the DomainUpDown control relative to the upper-left corner of its container.
size
The Size of the DomainUpDown control.
onSelectedItemChanged
The delegate to invoke when the SelectedItemChanged event is raised.
label
Initial LabelText value.
location
The Point specifying the upper-left corner of the DomainUpDown control relative to the upper-left corner of its container.
size
The Size of the DomainUpDown control.
onSelectedItemChanged
e
An EventArgs that contains the event data.
e
A EventArgs that contains the event data.
e
Event arguments.
config
Dynamic configuration object.
state
Dynamic state object.
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 LabelWrapper associated with the controls that implement this interface.
Provides access to the ReadOnly property for coontrols that support the read-only mode.
Provides access to the validation events and properties property for controls that support validation.
Public Class DomainUpDown
Inherits UpDownBasepublic class DomainUpDown : UpDownBaseThe delegate to invoke when the event is raised.
Wisej.Web.DomainUpDown DomainUpDownItemCollection
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Encapsulates a collection of objects for use by the DomainUpDown class.
public class DomainUpDownItemCollection : IList, ICollection, IEnumerablePublic Class DomainUpDownItemCollection
Inherits IList
Implements ICollection, IEnumerable: Returns the number of items in the collection.
: Returns a value indicating whether this collection can be modified.
: Retrieves the item at the specified index within the collection.
Throws:
The index was less than zero; or the index was greater of equal to the count of items in the collection.
Adds an object to the end of the collection.
Returns: . The index at which the item has been added.
Adds a collection of objects to the end of the collection.
Removes all items from the control.
Determines if the specified item is located within the collection.
Returns: . true if the item is located within the collection; otherwise, false.
Returns an enumerator that can be used to iterate through the item collection.
Returns: . A that represents the item collection.
Retrieves the index within the collection of the specified item.
Returns: . The zero-based index where the item is located within the collection; otherwise, -1.
Throws:
The item parameter was null.
Inserts an element into the collection at the specified index.
Throws:
index is less than zero, or index is greater than number of items in the collection.
Removes the first occurrence of a specific object from the collection.
Removes the element at the specified index of the collection.
Throws:
index is less than zero; or index is equal to or greater than number of items in the collection.
item
The Object to be added to the end of the collection. The value can be null.
items
Items to add to the end of the collection.
item
An object representing the item to locate in the collection.
item
An object representing the item to locate in the collection.
index
The zero-based index at which item should be inserted.
item
The Object to insert. The value can be null.
item
The Object to remove from the collection. The value can be null.
index
The zero-based index of the element to remove.