SelectElement MembersC# API

The SelectElement type exposes the following members.
Constructors

  NameDescription
Public methodSelectElement
For internal use only. Of no interest to the user.
Back to Top
Methods

  NameDescription
Public methodAddOptionElement
Adds an OptionElement to the list of available OptionElement objects.
Public methodClone
Initialises a new instance of the SelectElement class, which is a copy of the specified SelectElement.
(Overrides HtmlElement Clone .)
Public methodDispose
Releases all resources used by the SelectElement
(Overrides HtmlElement Dispose .)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAttribute
Gets the value of the specified attribute, or an empty string if the attribute is not contained within this HTML element.
(Inherited from HtmlElement.)
Public methodStatic membergetCPtr
For internal use only. Of no interest to the user.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetOptionElement(Int32)
Gets the OptionElement at the specifed index.
Public methodGetOptionElement(String)
Gets the OptionElement with the specified value.
Public methodGetSelectedOption
Gets the OptionElement that is currently selected.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasAttribute
Determines whether this HTML element contains the specified attribute.
(Inherited from HtmlElement.)
Public methodInsertOptionElement
Inserts an OptionElement into the list of available OptionElement objects.
Public methodStatic memberMakefrom
For internal use only. Of no interest to the user.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemoveAttribute
Removes an attribute from this HTML element. This method has no effect if the attribute does not exist.
(Inherited from HtmlElement.)
Public methodRemoveOptionElement(Int32)
Removes the OptionElement at the specified index from the list of available OptionElement objects.
Public methodRemoveOptionElement(String)
Removes the OptionElement with the specified value from the list of available OptionElement objects.
Public methodSetAttribute(String)
Sets the value of the specified attribute to an empty string.
(Inherited from HtmlElement.)
Public methodSetAttribute(String, String)
Sets the value of the specified attribute. The attribute will be added if it does not already exist.
(Inherited from HtmlElement.)
Public methodSetSelectedOption(String)
Sets the selected option from the list of available OptionElement objects.
Public methodSetSelectedOption(OptionElement)
Sets the selected option from the list of available OptionElement objects.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Back to Top
Properties

  NameDescription
Public propertyAfterEndTagPosition
Gets the character offset into the HTML document at which the last character (not including < > tag characters) in this HTML element appears.
(Inherited from HtmlElement.)
Public propertyAfterStartTagPosition
Gets the character offset into the HTML document at which the 1st character (not including < > tag characters) in this HTML element appears.
(Inherited from HtmlElement.)
Public propertyAttributes
Gets all the attributes contained in this HtmlElement as an IDictionary of attribute names to values.
(Inherited from HtmlElement.)
Public propertyCharEncoding
Gets or sets the character encoding that is used to decode the data contained in this HtmlElement, for example "UTF-8".
(Inherited from HtmlElement.)
Public propertyContent
Gets or sets the content of this HTML element. This includes everything between the HTML tags, but excludes the tags themselves and any attributes.
(Inherited from HtmlElement.)
Public propertyContentPosition
Gets the character offset into the HTML document at which this HTML element's content starts.
(Inherited from HtmlElement.)
Public propertyDisabled
Gets or sets a value that indicates whether this HTML element has been disabled.
(Inherited from HtmlElement.)
Public propertyId
Gets or sets the value of the "id" attribute for this HTML element.
(Inherited from HtmlElement.)
Public propertyIsMultiple
Gets a value that indicates whether it is possible to select multiple options at once.
Public propertyIsSuccessfulControl
Gets a value that indicates whether this SelectElement currently represents a successful control.
(Overrides HtmlElement IsSuccessfulControl.)
Public propertyName
Gets or sets the value of the "name" attribute for this HTML element.
(Inherited from HtmlElement.)
Public propertyOptionCount
Gets the number of OptionElement objects in this SelectElement.
Public propertyTag
Gets the tag name of this HTML element.
(Inherited from HtmlElement.)
Public propertyValue
Gets or sets the value of the "value" attribute for this HTML element.
(Inherited from HtmlElement.)
Back to Top
See Also