Click here to Skip to main content
15,893,588 members
Articles / Web Development / ASP.NET

DesktopBrowser - A Web Based File Explorer for Media Desktops

Rate me:
Please Sign up or sign in to vote.
4.21/5 (4 votes)
25 Jun 2011GPL32 min read 34.1K   1.1K   22  
A presentation of DesktopBrowser open-source project, a web based file explorer for media desktops.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>SharpKit.Html4</name>
    </assembly>
    <members>
        <member name="T:SharpKit.Html4.HtmlElement">
            <summary>
            Retrieves the type of the requested node.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlNode">
            <summary>
            Represents an HtmlNode
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlNode.replaceChild(SharpKit.Html4.HtmlNode,SharpKit.Html4.HtmlNode)">
            <summary>
            Replaces an existing child element with a new child element.
            </summary>
            <param name="newNode"></param>
            <param name="existingChild"></param>
            <returns>Returns a reference to the object that is replaced.</returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlNode.nodeType">
            <summary>
            Returns the node type
            </summary>
            <remarks>
            <list type="table">
            	<item>
            		<term>1</term>
            		<description>Element node.</description>
            	</item>
            	<item>
            		<term>2</term>
            		<description>Attribute node.</description>
            	</item>
            	<item>
            		<term>3</term>
            		<description>Text node.</description>
            	</item>
            	<item>
            		<term>4</term>
            		<description>CDATA node.</description>
            	</item>
            	<item>
            		<term>5</term>
            		<description>Entity Reference node.</description>
            	</item>
            	<item>
            		<term>6</term>
            		<description>Entity node.</description>
            	</item>
            	<item>
            		<term>7</term>
            		<description>Processing instruction node.</description>
            	</item>
            	<item>
            		<term>8</term>
            		<description>Comment node.</description>
            	</item>
            	<item>
            		<term>9</term>
            		<description>HtmlDocument node.</description>
            	</item>
            	<item>
            		<term>10</term>
            		<description>Document type (DOCTYPE) node.</description>
            	</item>
            	<item>
            		<term>11</term>
            		<description>Document fragment node.</description>
            	</item>
            	<item>
            		<term>12</term>
            		<description>Notation node.</description>
            	</item>
            </list>
            </remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlNode.compareDocumentPosition(SharpKit.Html4.HtmlNode)">
            <summary>
            Compares the position of the current node against another node in any other document.
            </summary>
            <param name="otherNode ">the node that's being compared against.</param>
            <returns>a bitmask:
            1: Position disconnected
            2: Precedes
            4: Follows
            8: Contains
            16: Is contained by
            </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlNode.hasChildNodes">
            <summary>
            Returns a value that indicates whether the object has children.
            </summary>
            <returns>Returns true if the object contains HTML Elements or TextNode objects, or false if the object does not contain HTML Elements or TextNodes.</returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.previousSibling">
            <summary>
            Retrieves a reference to the previous child of the parent for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.nextSibling">
            <summary>
            Retrieves a reference to the next child of the parent for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.nodeName">
            <summary>
            Retrieves the name of a particular type of node. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.nodeValue">
            <summary>
            Sets or retrieves the value of a node.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.parentNode">
            <summary>
            Retrieves the parent object in the document hierarchy.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlNode.ownerDocument">
            <summary>
            Retrieves the document object associated with the node.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeAttribute(SharpKit.JavaScript.JsString)">
            <summary>
            Removes the given attribute from the object.
            </summary>
            <param name="attName">String that specifies the attribute name. </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeAttribute(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes the given attribute from the object.
            </summary>
            <param name="attName">String that specifies the attribute name. </param>
            <param name="caseSensitive"> Integer that specifies whether to use a case-sensitive search to locate the attribute. By default, this value is set to 1 to indicate that the uppercase and lowercase letters in the specified sName parameter must exactly match those in the attribute name. If there are multiple attributes specified with different case sensitivity, the attribute returned might vary across platforms. </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.insertAdjacentHTML(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Inserts the given HTML text into the element at the location
            </summary>
            <param name="where">
            String that specifies where to insert the HTML text, using one of the following values: 
            beforeBegin Inserts sText immediately before the object. 
            afterBegin Inserts sText after the start of the object but before all other content in the object. 
            beforeEnd Inserts sText immediately before the end of the object but after all other content in the object. 
            afterEnd Inserts sText immediately after the end of the object. 
            </param>
            <param name="html">String that specifies the HTML text to insert. The JsString can be a combination of text and HTML tags. This must be well-formed, valid HTML or this method will fail. </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.attachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Binds the specified function to an event, so that the function gets called whenever the event fires on the object.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.addEventListener(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Binds the specified function to an event, so that the function gets called whenever the event fires on the object.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
            <param name="useCapture"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.detachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Unbinds the specified function from the event, so that the function stops receiving notifications when the event fires.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeEventListener(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Unbinds the specified function from the event, so that the function stops receiving notifications when the event fires.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
            <param name="useCapture"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.fireEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventArgs)">
            <summary>
            Fires a specified event on the object.
            </summary>
            <param name="sEvent">String that specifies the name of the event to fire.</param>
            <param name="oEventObject">Object that specifies the event object from which to obtain event object properties.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.fireEvent(SharpKit.JavaScript.JsString)">
            <summary>
            Fires a specified event on the object.
            </summary>
            <param name="sEvent">String that specifies the name of the event to fire.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.getClientRects">
            <summary>
            Retrieves a collection of rectangles that describes the layout of the contents of an object or range within the client. Each rectangle describes a single line. 
            </summary>
            <returns>Returns the TextRectangle collection. Each rectangle has four integer properties (top, left, right, and bottom) that each represent a coordinate of the rectangle, in pixels.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.appendChild(SharpKit.Html4.HtmlNode)">
            <summary>
            Appends an element as a child to the object.
            </summary>
            <param name="child"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeChild(SharpKit.Html4.HtmlNode)">
            <summary>
            Removes a child node from the object.
            </summary>
            <param name="oNode">Object that specifies the element to be removed from the document.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.setCapture">
            <summary>
            Sets the mouse capture to the object that belongs to the current document. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.setCapture(SharpKit.JavaScript.JsBoolean)">
             <summary>
             Sets the mouse capture to the object that belongs to the current document. 
             </summary>
             <param name="containerCapture">A Boolean that specifies one of the following values. true Default. Events originating in a container are captured by the container. 
            false Events originating in a container are not captured by the container 
            </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.releaseCapture">
            <summary>
            Removes mouse capture from the object in the current document.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.insertAdjacentElement(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlElement)">
            <summary>
            Inserts an element at the specified location.
            </summary>
            <param name="sWhere">A String that specifies where to insert the HTML element, using one of the following values. 
            	<list type="table">
            	<item><term>beforeBegin</term><description>Inserts oElement immediately before the object.</description></item>
            	<item><term>afterBegin</term><description></description>Inserts oElement after the start of the object, but before all other content in the object.</item>
            	<item><term>beforeEnd</term><description>Inserts oElement immediately before the end of the object, but after all other content in the object.</description></item>
            	<item><term>afterEnd</term><description>Inserts oElement immediately after the end of the object.</description></item>
            	</list>
            </param>
            <param name="oElement">Object that specifies the element to be inserted adjacent to the object that invoked the insertAdjacentElement method.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.insertAdjacentText(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Inserts the given text into the element at the specified location.
            </summary>
            <param name="sWhere">A String that specifies where to insert the HTML element, using one of the following values. 
            	<list type="table">
            	<item><term>beforeBegin</term><description>Inserts oElement immediately before the object.</description></item>
            	<item><term>afterBegin</term><description></description>Inserts oElement after the start of the object, but before all other content in the object.</item>
            	<item><term>beforeEnd</term><description>Inserts oElement immediately before the end of the object, but after all other content in the object.</description></item>
            	<item><term>afterEnd</term><description>Inserts oElement immediately after the end of the object.</description></item>
            	</list>
            </param>
            <param name="sText">String that specifies the text to insert.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeNode">
            <summary>
            Removes the object from the document hierarchy.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeNode(SharpKit.JavaScript.JsBoolean)">
            <summary>
            Removes the object from the document hierarchy.
            </summary>
            <param name="bRemoveChildren">A Boolean that specifies one of the following values. </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.blur">
            <summary>
            Causes the element to lose focus and fires the onblur event.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.setAttribute(SharpKit.JavaScript.JsString,System.Object)">
            <summary>
            Sets the value of the specified attribute 
            </summary>
            <param name="name">String that specifies the name of the attribute.</param>
            <param name="value">Variant that specifies the JsString, number, or Boolean to assign to the attribute.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.cloneNode(SharpKit.JavaScript.JsBoolean)">
            <summary>
            Copies a reference to the object from the document hierarchy. 
            </summary>
            <param name="includeChildren">Boolean that specifies one of the following values:
            FALSE Cloned objects do not include childNodes. 
            TRUE Cloned objects include childNodes. </param>
            <returns>Returns a reference to the newly created node.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.cloneNode">
            <summary>
            Copies a reference to the object from the document hierarchy. 
            </summary>
            <returns>Returns a reference to the newly created node.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.focus">
            <summary>
            Causes the element to receive the focus and executes the code specified by the onfocus event. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.scrollIntoView">
            <summary>
            Causes the object to scroll into view, aligning it either at the top or bottom of the window. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.scrollIntoView(SharpKit.JavaScript.JsBoolean)">
            <summary>
            Causes the object to scroll into view, aligning it either at the top or bottom of the window. 
            </summary>
            <param name="alignToTop">Boolean that specifies one of the following values: 
            true Default. Scrolls the object so that top of the object is visible at the top of the window. 
            false Scrolls the object so that the bottom of the object is visible at the bottom of the window </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.setActive">
            <summary>
            Sets the object as active without setting focus to the object.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.normalize">
            <summary>
            Puts the specified node and all of its subtree into a "normalized" form. In a normalized subtree, no text nodes in the subtree are empty and there are no adjacent text nodes.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.createAttribute(SharpKit.JavaScript.JsString)">
            <summary>
            Creates an attribute object with a specified name.
            </summary>
            <param name="sName">A String that sets the attribute object's name.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.setAttributeNode(SharpKit.Html4.HtmlAttribute)">
            <summary>
            Sets an attribute object node as part of the object.
            </summary>
            <param name="oSrcAttribute">attribute object to be assigned.</param>
            <returns>
            Returns a reference to the removed attribute object.
            </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.getAttribute(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Retrieves the value of the specified attribute.
            </summary>
            <param name="sAttrName">String that specifies the name of the attribute.</param>
            <param name="iFlags">Integer that specifies one or more of the following flags:
            0 - Default. Performs a property search that is not case-sensitive, and returns an interpolated value if the property is found.
            1 - Performs a case-sensitive property search. To find a match, the uppercase and lowercase letters in sAttrName must exactly match those in the attribute name.
            2 - Returns attribute value as a String. This flag does not work for event properties.
            4 - Returns attribute value as a fully expanded URL. Only works for URL attributes.</param>
            <returns>Variant that returns a String, Integer, or Boolean value as defined by the attribute. If the attribute is not present, this method returns null.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.getAttribute(SharpKit.JavaScript.JsString)">
            <summary>
            Retrieves the value of the specified attribute.
            </summary>
            <param name="sAttrName">String that specifies the name of the attribute.</param>
            <returns>Variant that returns a String, Integer, or Boolean value as defined by the attribute. If the attribute is not present, this method returns null.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.getAttributeNode(SharpKit.JavaScript.JsString)">
            <summary>
            Retrieves an attribute object referenced by the attribute.name property.
            </summary>
            <param name="sName">String that specifies the name property of the requested attribute object.</param>
            <returns>Returns a reference to an attribute object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.hasAttribute(SharpKit.JavaScript.JsString)">
            <summary>
            Determines whether an attribute with the specified name exists.
            </summary>
            <param name="sAttrName">String that specifies the name of the attribute.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.hasAttributes">
            <summary>
            returns a boolean value of true or false, indicating if the current element has any attributes or not.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.removeAttributeNode(SharpKit.JavaScript.JsString)">
            <summary>
            Removes an attribute object from the object.
            </summary>
            <param name="oSrcAttribute">attribute object to be removed.</param>
            <remarks>Returns a reference to the removed attribute object.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.applyElement(SharpKit.Html4.HtmlElement,SharpKit.JavaScript.JsString)">
            <summary>
            Makes the element either a child or parent of another element.
            </summary>
            <param name="oNewElement">An object that becomes the child or parent of the current element.</param>
            <param name="oWhere">A String that specifies one of the following values.
            outside - Default. Specified element becomes a parent of the current element.
            inside - Specified element becomes a child of the current element, but contains all the child elements of the current element.
            </param>
            <returns>Returns a reference to the applied element.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.applyElement(SharpKit.Html4.HtmlElement)">
            <summary>
            Makes the element either a child or parent of another element.
            </summary>
            <param name="oNewElement">An object that becomes the child or parent of the current element.</param>
            <returns>Returns a reference to the applied element.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.clearAttributes">
            <summary>
            Removes all attributes and values from the object.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.mergeAttributes(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Copies all read/write attributes to the specified element.
            </summary>
            <param name="oSource">Pointer to an Object that specifies the attributes copied to the object that invokes mergeAttributes.</param>
            <param name="bPreserve">Available as of Microsoft Internet Explorer 5.5. Pointer to a Boolean that specifies one of the following values:
            true - Default. Preserve the identity of the object to which attributes are being merged.
            false - Do not preserve the identity of the object to which attributes are being merged.
            </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.mergeAttributes(SharpKit.JavaScript.JsString)">
            <summary>
            Copies all read/write attributes to the specified element.
            </summary>
            <param name="oSource">Pointer to an Object that specifies the attributes copied to the object that invokes mergeAttributes.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.replaceNode(SharpKit.Html4.HtmlNode)">
            <summary>
            Replaces the object with another element.
            </summary>
            <param name="oNewNode">An Object that specifies the new element to replace the object.</param>
            <returns>Returns a reference to the object that is replaced.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.swapNode(SharpKit.Html4.HtmlNode)">
            <summary>
            Exchanges the location of two objects in the document hierarchy.
            </summary>
            <param name="oNode">Object that specifies the existing element.</param>
            <returns>Returns a reference to the object that invoked the method.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlElement.getBoundingClientRect">
            <summary>
            Returns an object that contains the top, left, right, and bottom (all relative to the top left of the viewport) of the combined rectangle of element x. Essentially, the browser calculates all rectangles (see below getClientRects()), and getBoundingClientRect() returns the lowest (top, left) or highest (bottom, right) values found.
            </summary>
            <returns></returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onafterupdate">
            <summary>
            Fires on a databound object after successfully updating the associated data in the data source object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforeactivate">
            <summary>
            Fires immediately before the object is set as the active element.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforedeactivate">
            <summary>
            Fires immediately before the activeElement is changed from the current object to another object in the parent document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforeeditfocus">
            <summary>
            Fires before an object contained in an editable element enters a UI-activated state or when an editable container object is control selected.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforeupdate">
            <summary>
            Fires on a databound object before updating the associated data in the data source object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onblur">
            <summary>
            Fires when the object loses the input focus.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.oncellchange">
            <summary>
            Fires when data changes in the data provider.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onclick">
            <summary>
            Fires when the user clicks the left mouse button on the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.oncontextmenu">
            <summary>
            Fires when the user clicks the right mouse button in the client area, opening the context menu.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.oncontrolselect">
            <summary>
            Fires when the user is about to make a control selection of the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.oncopy">
            <summary>
            Fires on the source element when the user copies the object or selection, adding it to the system clipboard.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.oncut">
            <summary>
            Fires on the source element when the object or selection is removed from the document and added to the system clipboard.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondataavailable">
            <summary>
            Fires periodically as data arrives from data source objects that asynchronously transmit their data.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondatasetchanged">
            <summary>
            Fires when the data set exposed by a data source object changes.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondatasetcomplete">
            <summary>
            Fires to indicate that all data is available from the data source object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondblclick">
            <summary>
            Fires when the user double-clicks the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondrag">
            <summary>
            Fires on the source object continuously during a drag operation.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondragend">
            <summary>
            Fires on the source object when the user releases the mouse at the close of a drag operation.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondragenter">
            <summary>
            Fires on the target element when the user drags the object to a valid drop target.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondragleave">
            <summary>
            Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondragover">
            <summary>
            Fires on the target element continuously while the user drags the object over a valid drop target.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondragstart">
            <summary>
            Fires on the source object when the user starts to drag a text selection or selected object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondrop">
            <summary>
            Fires on the target object when the mouse button is released during a drag-and-drop operation.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onerrorupdate">
            <summary>
            Fires on a databound object when an error occurs while updating the associated data in the data source object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onfilterchange">
            <summary>
            Fires when a visual filter changes state or completes a transition.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onfocus">
            <summary>
            Fires when the object receives focus.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onhelp">
            <summary>
            Fires when the user presses the F1 key while the browser is the active window.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onkeydown">
            <summary>
            Fires when the user presses a key.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onkeypress">
            <summary>
            Fires when the user presses an alphanumeric key.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onkeyup">
            <summary>
            Fires when the user releases a key.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onlayoutcomplete">
            <summary>
            Fires when the print or print preview layout process finishes filling the current LayoutRect object with content from the source document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onlosecapture">
            <summary>
            Fires when the object loses the mouse capture.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmousedown">
            <summary>
            Fires when the user clicks the object with either mouse button.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmousemove">
            <summary>
            Fires when the user moves the mouse over the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmouseout">
            <summary>
            Fires when the user moves the mouse pointer outside the boundaries of the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmouseover">
            <summary>
            Fires when the user moves the mouse pointer into the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmouseup">
            <summary>
            Fires when the user releases a mouse button while the mouse is over the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmousewheel">
            <summary>
            Fires when the wheel button is rotated.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmove">
            <summary>
            Fires when the object moves.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmoveend">
            <summary>
            Fires when the object stops moving.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmovestart">
            <summary>
            Fires when the object starts to move.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onpaste">
            <summary>
            Fires on the target object when the user pastes data, transferring the data from the system clipboard to the document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onpropertychange">
            <summary>
            Fires when a property changes on the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onreadystatechange">
            <summary>
            Fires when the state of the object has changed.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onresize">
            <summary>
            Fires when the size of the object is about to change.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onresizeend">
            <summary>
            Fires when the user finishes changing the dimensions of the object in a control selection.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onresizestart">
            <summary>
            Fires when the user begins to change the dimensions of the object in a control selection.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onrowenter">
            <summary>
            Fires to indicate that the current row has changed in the data source and new data values are available on the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onrowexit">
            <summary>
            Fires just before the data source control changes the current row in the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onrowsdelete">
            <summary>
            Fires when rows are about to be deleted from the recordset.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onrowsinserted">
            <summary>
            Fires just after new rows are inserted in the current recordset.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onscroll">
            <summary>
            Fires when the user repositions the scroll box in the scroll bar on the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onselectstart">
            <summary>
            Fires when the object is being selected.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onactivate">
            <summary>
            Fires when the object is set as the active element.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforecopy">
            <summary>
            Fires on the source object before the selection is copied to the system clipboard.		
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforecut">
            <summary>
            Fires on the source object before the selection is deleted from the document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onbeforepaste">
            <summary>
            Fires on the target object before the selection is pasted from the system clipboard to the document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.ondeactivate">
            <summary>
            Fires when the activeElement is changed from the current object to another object in the parent document.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onfocusin">
            <summary>
            Fires for an element just prior to setting focus on that element.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onfocusout">
            <summary>
            Fires for the current element with focus immediately after moving focus to another element.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onhashchange">
            <summary>
            Raised when there are changes to the portion of a URL that follows the number sign (#).
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmouseenter">
            <summary>
            Fires when the user moves the mouse pointer into the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlElement.onmouseleave">
            <summary>
            Fires when the user moves the mouse pointer outside the boundaries of the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.unselectable">
            <summary>
            Specifies that an element cannot be selected.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.id">
            <summary>
            Sets or retrieves the JsString identifying the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.uniqueID">
            <summary>
            Retrieves an autogenerated, unique identifier for the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.contentEditable">
            <summary>
            Sets or retrieves the JsString that indicates whether the user can edit the content of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.lastChild">
            <summary>
            Retrieves a reference to the last child in the childNodes collection of an object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.offsetParent">
            <summary>
            Retrieves a reference to the container object that defines the offsetTop and offsetLeft properties of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.scrollLeft">
            <summary>
            Sets or retrieves the distance between the left edge of the object and the leftmost portion of the content currently visible in the window. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.scrollTop">
            <summary>
            Sets or retrieves the distance between the top of the object and the topmost portion of the content currently visible in the window. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.offsetLeft">
            <summary>
            Retrieves the calculated left position of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.offsetTop">
            <summary>
            Retrieves the calculated top position of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.offsetWidth">
            <summary>
            Retrieves the width of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.offsetHeight">
            <summary>
            Retrieves the height of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
            <remarks>When overflowY is Scroll, this is the physical height of the control, which is clientHeight + Vscrollbar size</remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.clientTop">
            <summary>
            Retrieves the distance between the offsetTop property and the true top of the client area.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.clientLeft">
            <summary>
            Retrieves the distance between the offsetLeft property and the true left side of the client area.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.clientWidth">
            <summary>
            Retrieves the width of the object including padding, but not including margin, border, or scroll bar.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.clientHeight">
            <summary>
            Retrieves the height of the object including padding, but not including margin, border, or scroll bar.
            </summary>
            <remarks>When overflowY is Scroll, this is the physical displayed height of the children w/o the scrollbar</remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.scrollWidth">
            <summary>
            Retrieves the scrolling width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.scopeName">
            <summary>
            Gets the namespace defined for the element.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.sourceIndex">
            <summary>
            Retrieves the ordinal position of the object, in source order, as the object appears in the document's all collection.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.scrollHeight">
            <summary>
            Retrieves the scrolling height of the object. 
            </summary>
            <remarks>When overflowY is Scroll, this is the virtual height of the scrollable region (without scrolling, this would be the physical height of the element)</remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.document">
            <summary>
            Retrieves the document object associated with the node.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.childNodes">
            <summary>
            Retrieves a collection of HTML Elements and TextNode objects that are direct descendants of the specified object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.title">
            <summary>
            Sets or retrieves advisory information (a ToolTip) for the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.innerHTML">
            <summary>
            Sets or retrieves the HTML between the start and end tags of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.innerText">
            <summary>
            Sets or retrieves the text between the start and end tags of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.textContent">
            <summary>
            Sets or retrieves the text between the start and end tags of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.tabIndex">
            <summary>
            Sets or retrieves the index that defines the tab order for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.tagUrn">
            <summary>
            Sets or gets the Uniform Resource OriginalValue (URN) specified in the namespace declaration.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.style">
            <summary>
            Sets an inline style for the element.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.currentStyle">
            <summary>
            Returns the current (calculated) style of the element
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.className">
            <summary>
            Sets or retrieves the class of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.disabled">
            <summary>
            Sets or retrieves a value that indicates whether the user can interact with the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.dir">
            <summary>
            Sets or retrieves a value that indicates the reading order of the object.
            Possible values:
            ltr		Default. Content flows from left to right.
            rtl		Content flows from right to left.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.lang">
            <summary>
            Sets or retrieves the language to use.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.tagName">
            <summary>
            Retrieves the tag name of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.parentElement">
            <summary>
            Retrieves the parent object in the document hierarchy.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.firstChild">
            <summary>
            Retrieves a reference to the first child in the childNodes collection of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.outerText">
            <summary>
            Sets or retrieves the text of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.outerHTML">
            <summary>
            Sets or retrieves the object and its content in HTML.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.attributes">
            <summary>
            Retrieves a collection of attributes of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.childElementCount">
            <summary>
            Returns the number of element children
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.firstElementChild">
            <summary>
            Returns the first child that is an element node
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.lastElementChild">
            <summary>
            Returns the last child that is an element node
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.nextElementSibling">
            <summary>
            Returns the next element node sibling
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElement.previousElementSibling">
            <summary>
            Returns the previous  element node sibling
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.href">
            <summary>
            Sets or retrieves a destination URL or an anchor point.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.target">
            <summary>
            Sets or retrieves the window or frame at which to target content.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.charset">
            <summary>
            Sets or retrieves the character set used to encode the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.coords">
            <summary>
            Sets or retrieves the coordinates of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.hash">
            <summary>
            Sets or retrieves the subsection of the href property that follows the number sign (#).
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.host">
            <summary>
            Sets or retrieves the hostname and port number of the location or URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.hostname">
            <summary>
            Sets or retrieves the host name part of the location or URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.hreflang">
            <summary>
            Sets or retrieves the language code of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.Methods">
            <summary>
            Sets or gets the list of HTTP methods supported by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.name">
            <summary>
            Sets or retrieves the name of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.nameProp">
            <summary>
            Retrieves the file name specified in the href or src property of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.pathname">
            <summary>
            Sets or retrieves the file name or path specified by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.port">
            <summary>
            Sets or retrieves the port number associated with a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.protocol">
            <summary>
            Sets or retrieves the protocol portion of a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.rel">
            <summary>
            Sets or retrieves the relationship between the object and the destination of the link.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.rev">
            <summary>
            Sets or retrieves the relationship between the object and the destination of the link.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.search">
            <summary>
            Sets or retrieves the substring of the href property that follows the question mark.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.shape">
            <summary>
            Sets or retrieves the shape of the object.
            Possible values:
            circ		Circle
            circle		Circle
            poly		Polygon
            polygon		Polygon
            rect		Rectangle
            rectangle	Rectangle
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.type">
            <summary>
            Sets or retrieves the MIME type of the object. e.g. 'text/css'
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAnchor.urn">
            <summary>
            Sets or gets a Uniform Resource OriginalValue (URN) for a target document.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlAppletElement">
            <summary>
            The applet element is a Java-specific variant of the embed element. The applet element is now obsoleted so that all extension frameworks (Java, .NET, Flash, etc) are handled in a consistent manner.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlAttribute">
            <summary>
            Represents an HTML Attribute node
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlBaseElement">
            <summary>
            The base element allows authors to specify the document base URL for the purposes of resolving relative URLs , and the name of the default browsing context for the purposes of following hyperlinks . The element does not represent any content beyond this information.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlBaseFontElement">
            <summary>
            User agents must treat acronym elements in a manner equivalent to abbr elements.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlBody">
            <summary>
            Represents the root Body element of a HTML document
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlBody.createTextRange">
            <summary>
            Creates a TextRange object for the element
            </summary>
            <returns></returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onafterprint">
            <summary>
            Fires on the object immediately after its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onbeforeprint">
            <summary>
            Fires on the object before its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onbeforeunload">
            <summary>
            Fires prior to a page being unloaded.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onhashchange">
            <summary>
            Raised when there are changes to the portion of a URL that follows the number sign (#).
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onoffline">
            <summary>
            Raised when Internet Explorer is working offline.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.ononline">
            <summary>
            Raised when Internet Explorer is working online.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onselect">
            <summary>
            Fires when the current selection changes.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlBody.onunload">
            <summary>
            Fires immediately before the object is unloaded.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlBr">
            <summary>
            Inserts a line break.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlButton">
            <summary>
            Specifies a container for rich HTML that is rendered as a button.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.accessKey">
            <summary>
            Sets the access key for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.type">
            <summary>
            Gets the classification and default behavior of the button.
            Possible values:
            button	Default. Creates a Command button.
            reset	Creates a Reset button. If the button is in a form, it resets the fields in the form to their initial values.
            submit	Creates a Submit button. If the button is in a form, it submits the form.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.name">
            <summary>
            Sets or retrieves the name of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.status">
            <summary>
            Sets or retrieves the value indicating whether the control is selected.
            Possible values:
            false	Default. Control is not selected.
            true	Control is selected.
            null	Control is not initialized.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlButton.value">
            <summary>
            Sets or retrieves the default or selected value of the control.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlCaption">
            <summary>
            Specifies a brief description for a table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCaption.vAlign">
            <summary>
            String that specifies or receives one of the following values.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="T:SharpKit.Html4.HtmlClipboardData">
            <summary>
            Provides access to predefined clipboard formats for use in editing operations.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlClipboardData.setData(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Assigns data in a specified format to the dataTransfer object or the clipboardData object.
            </summary>
            <param name="sDataFormat">Required. A String that specifies the format of the data to be transferred, using one of the following values. </param>
            <param name="sData">Required. A String that specifies the data supplied by the source object. This information can be descriptive text, a source path to an image, or a URL for an anchor. When you pass "URL" as the sDataFormat parameter, you must use the sData parameter to provide the location of the object that is transferred. </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlClipboardData.getData(SharpKit.JavaScript.JsString)">
            <summary>
            Gets the data in the specified format from the clipboard through the dataTransfer object or the clipboardData object.
            </summary>
            <param name="sDataFormat">Required. A String that specifies one of the following data format values. </param>
            <returns>String. Returns the data in the format retrieved from the clipboard through the dataTransfer object or the clipboardData object. Depending on the information contained in setData, this variable can get a path to an image, text, or an anchor URL.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.alert(System.Object)">
            <summary>
            Displays a dialog box containing an application-defined message. 
            </summary>
            <param name="message">Optional. String that specifies the message to display in the dialog box.</param>
            <remarks>You cannot change the title bar of the Alert dialog box.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.confirm(SharpKit.JavaScript.JsString)">
            <summary>
            Displays a confirmation dialog box that contains an optional message as well as OK and Cancel buttons.
            </summary>
            <param name="message">Optional. String that specifies the message to display in the confirmation dialog box. If no value is provided, the dialog box does not contain a message.</param>
            <returns>Boolean. Returns one of the following possible values:
            <list type="table">
            <item>
            	<term>true</term>
            	<description>The user clicked the OK button.</description>
            </item>
            <item>
            	<term>false</term>
            	<description>The user clicked Cancel button.</description>
            </item>
            </list>
            </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.escape(SharpKit.JavaScript.JsString)">
            <summary>
            Encodes String objects so they can be read on all computers.
            </summary>
            <param name="s">String object or literal to be encoded.</param>
            <returns>A JsString value (in Unicode format) that contains the contents of charstring. All spaces, punctuation, accented characters, and any other non-ASCII characters are replaced with %xx encoding, where xx is equivalent to the hexadecimal number representing the character. For example, a space is returned as "%20."</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.decodeURIComponent(SharpKit.JavaScript.JsString)">
            <summary>
            Returns the unencoded version of an encoded component of a Uniform Resource Identifier (URI). 
            </summary>
            <param name="encodedURIString">A value representing an encoded URI component.</param>
            <returns>The required encodedURIString argument is a value representing an encoded 
            URI component.A URIComponent is part of a complete URI. If the encodedURIString is 
            not valid, a URIError occurs.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.encodeURIComponent(SharpKit.JavaScript.JsString)">
            <summary>
            Encodes a text JsString as a valid component of a Uniform Resource Identifier (URI).
            </summary>
            <param name="encodedURIString">A value representing an encoded URI component.</param>
            <returns>A an encoded URI. If you pass the result to decodeURIComponent, 
            the original JsString is returned. Because the encodeURIComponent method encodes all 
            characters, be careful if the JsString represents a path such 
            as /folder1/folder2/default.html. The slash characters will be encoded and will 
            not be valid if sent as a request to a web server. Use the encodeURI method if the 
            JsString contains more than a single URI component.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.encodeURI(SharpKit.JavaScript.JsString)">
            <summary>
            Encodes a text JsString as a valid Uniform Resource Identifier (URI) 
            </summary>
            <param name="URIString">A value representing an encoded URI.</param>
            <returns>n encoded URI. If you pass the result to decodeURI, the original JsString is returned. The encodeURI method does not encode the following characters: ":", "/", ";", and "?". Use encodeURIComponent to encode these characters.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.decodeURI(SharpKit.JavaScript.JsString)">
            <summary>
            Returns the unencoded version of an encoded Uniform Resource Identifier (URI). 
            </summary>
            <param name="URIString"></param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlContext.unescape(SharpKit.JavaScript.JsString)">
            <summary>
            Decodes String objects encoded with the escape method.
            </summary>
            <param name="charString">String object or literal to be decoded.</param>
            <returns>A JsString value that contains the contents of charstring. All characters encoded with the %xx hexadecimal form are replaced by their ASCII character set equivalents.</returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlContext.window">
            <summary>
            Retrieves the HTML window
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlContext.document">
            <summary>
            Retrieves the HTML document
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlCssRule">
            <summary>
            Represents a style within a Cascading Style Sheets (CSS) that consists of a selector and one or more declarations.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCssRule.readOnly">
            <summary>
            Retrieves whether the rule or style sheet is defined on the page or is imported.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCssRule.selectorText">
            <summary>
            Retrieves a JsString that identifies which elements the corresponding style sheet rule applies to.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCssRule.style">
            <summary>
            Represents the current settings of all possible inline styles for a given element.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCssRule.cssText">
            <summary>
            Sets or retrieves the persisted representation of the style rule.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlCssRule.parentStyleSheet">
            <summary>
            Returns the stylesheet object in which the current rule is defined.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlDiv">
            <summary>
            Specifies a container that renders HTML.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDiv.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDiv.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDiv.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDiv.noWrap">
            <summary>
            Sets or retrieves whether the browser automatically performs wordwrap.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDiv.align">
            <summary>
            Sets or retrieves the alignment of the object relative to the display or table.
            Possible Values:
            center	Aligns to the center.
            justify	Aligns to the left and right edge.
            left		Default. Aligns to the left edge.
            right		Aligns to the right edge.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.src">
            <summary>
            Retrieves the URL to an external file that contains the source code or data.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.type">
            <summary>
            Sets or retrieves the MIME type for the associated scripting engine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.charset">
            <summary>
            Sets or retrieves the character set used to encode the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.defer">
            <summary>
            Sets or retrieves the status of the script.
            Possible values:
            false		Default. Inline executable function is not deferred.
            true		Inline executable function is deferred.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.event">
            <summary>
            Sets or retrieves the event for which the script is written.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.htmlFor">
            <summary>
            Sets or retrieves the object that is bound to the event script.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScript.text">
            <summary>
            Retrieves or sets the text of the object as a JsString.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlDocument">
            <summary>
            Represents an HTML document
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.getElementsByName(SharpKit.JavaScript.JsString)">
            <summary>
            Gets a collection of objects based on the value of the NAME or ID attribute.
            </summary>
            <param name="sNameValue"></param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.attachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Binds the specified function to an event, so that the function gets called whenever the event fires on the object.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.detachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Unbinds the specified function from the event, so that the function stops receiving notifications when the event fires.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createTextNode(SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new TextNode
            </summary>
            <param name="text"></param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createElement(SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new HtmlElement
            </summary>
            <param name="name"></param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createElement``1(SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new HtmlElement
            </summary>
            <param name="name"></param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.getElementsByTagName(SharpKit.JavaScript.JsString)">
            <summary>
            Retrieves a collection of objects based on the specified element name.
            </summary>
            <param name="sTagName">String that specifies the name of an element.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createStyleSheet">
            <summary>
            Creates a new Stylesheet node
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createStyleSheet(SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new Stylesheet node
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createStyleSheet(SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new Stylesheet node
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createStyleSheet(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new Stylesheet node.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.getElementById(SharpKit.JavaScript.JsString)">
            <summary>
            Returns a reference to the first object with the specified value of the ID or NAME attribute (in IE)
            </summary>
            <param name="sIDValue">A String that specifies the ID value. Case-insensitive.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.getElementById``1(SharpKit.JavaScript.JsString)">
            <summary>
            Returns a reference to the first object with the specified value of the ID or NAME attribute (in IE)
            </summary>
            <param name="sIDValue">A String that specifies the ID value. Case-insensitive.</param>		
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createDocumentFragment">
            <summary>
            Creates a new document.
            </summary>
            <returns>Returns the newly created document.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createEventObject">
            <summary>
            Generates an event object to pass event context information when you use the fireEvent method.
            </summary>
            <returns>Returns an event object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createEventObject(SharpKit.Html4.HtmlDomEventArgs)">
            <summary>
            Generates an event object to pass event context information when you use the fireEvent method.
            </summary>
            <param name="existingEvent">A object that specifies an existing event object on which to base the new object. </param>
            <returns>Returns an event object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.elementFromPoint(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Returns the element for the specified x coordinate and the specified y coordinate.
            </summary>
            <param name="iX">A Integer that specifies the X-offset, in pixels.</param>
            <param name="iY">A Integer that specifies the Y-offset, in pixels.</param>
            <returns>Returns an element object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDocument.createComment(SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new comment node, and returns it.
            </summary>
            <param name="data">a JsString containing the data to be added to the Comment.</param>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.readyState">
            <summary>
            Retrieves a value that indicates the current state of the object.
            uninitializedObject is not initialized with data.
            loadingObject is loading its data.
            loadedObject has finished loading its data.
            interactiveUser can interact with the object even though it is not fully loaded.
            completeObject is completely initialized.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.all">
            <summary>
            Retrieves a collection of HTML Elements and TextNode objects that are descendants of the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.activeElement">
            <summary>
            Gets the object that has the focus when the parent document has focus.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.parentWindow">
            <summary>
            Gets or sets the HtmlWindow object that contains this HtmlDocument
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.documentElement">
            <summary>
            Returns the root node for this HtmlDocument
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.selection">
            <summary>
            Gets the HtmlSelection object of this HtmlDocument
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.body">
            <summary>
            Gets the HtmlBody root element of this HtmlDocument
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.title">
            <summary>
            Gets the title of this HtmlDocument
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.cookie">
            <summary>
            Sets or gets the JsString value of a cookie.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.compatMode">
            <summary>
            Gets a value that indicates whether standards-compliant mode is switched on for the object.
            </summary>
            <remarks>
            Possible Values
            BackCompat - Standards-compliant mode is not switched on.
            CSS1Compat Standards-compliant mode is switched on.
            </remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.defaultView">
            <summary>
            Returns a reference to the default AbstractView for the document, or null if none available
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocument.styleSheets">
            <summary>
            Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlDocumentElement">
            <summary>
            Tag: HTML. Represents the root element of a HTML document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.activeElement">
            <summary>
            Gets the object that has the focus when the parent document has focus.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.alinkColor">
            <summary>
            Sets or gets the color of all active links in the document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.charset">
            <summary>
            Sets or retrieves the character set used to encode the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.compatible">
            <summary>
            Retrieves the collection of user agents and versions declared in the X-UA-Compatible
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.compatMode">
            <summary>
            Gets a value that indicates whether standards-compliant mode is switched on for the object.
            Possible values:
            BackCompat	Standards-compliant mode is not switched on.
            CSS1Compat	Standards-compliant mode is switched on.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.cookie">
            <summary>
            Sets or gets the JsString value of a cookie.
            specifies or receives the name=value; pairs, plus any of the values listed in Possible Values.
            Possible Values: 
            expires=date;
            If you set no expiration date on a cookie, it expires when the browser closes. If you set an expiration date, the cookie is saved across browser sessions. If you set an expiration date in the past, the cookie is deleted. Use Greenwich Mean Time (GMT) format to specify the date.
            domain=domainname;
            If you set the domain of the cookie, pages on a domain made up of more than one server can share cookie information.
            path=path;
            If you set a path for the cookie, the current document can share cookie information with other pages within the same domain—that is, if the path is set to /thispathname, all pages in /thispathname and all pages in subfolders of /thispathname can access the same cookie information.
            secure;
            If you set a cookie as secure;, the stored cookie information can be accessed only from Secure Hypertext Transfer Protocol (HTTPS).
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.defaultCharset">
            <summary>
            Gets the default character set from the current regional language settings.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.designMode">
            <summary>
            Sets or gets a value that indicates whether the document can be edited.	  
            Possible Values:
            On							Document can be edited.
            Off | Inherit		Default. Document cannot be edited.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.doctype">
            <summary>
            Gets the document type declaration associated with the current document.
            Possible values:
            ltr		Default. Content flows from left to right.
            rtl		Content flows from right to left.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.documentElement">
            <summary>
            Gets a reference to the root node of the document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.documentMode">
            <summary>
            Retrieves the document compatibility mode of the document.
            Possible values:
            5		Microsoft Internet Explorer 5 mode (also known as "quirks mode").
            7		Internet Explorer 7 Standards mode.
            8   Internet Explorer 8 Standards mode.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.domain">
            <summary>
            Sets or gets the security domain of the document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.expando">
            <summary>
            Sets or retrieves a value indicating whether arbitrary variables can be created within the object.
            Possible values:
            true	Default. Creation of arbitrary variables is allowed.
            false	Creation of arbitrary variables is not allowed.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.fgColor">
            <summary>
            Sets or gets the foreground (text) color of the document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.fileCreatedDate">
            <summary>
            Retrieves the date the file was created.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.fileModifiedDate">
            <summary>
            Retrieves the date the file was last modified.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.fileSize">
            <summary>
            Retrieves the file size.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.fileUpdatedDate">
            <summary>
            Retrieves the date the file was last updated.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.implementation">
            <summary>
            Gets the implementation object of the current document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.lastModified">
            <summary>
            Gets the date that the page was last modified, if the page supplies one.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.linkColor">
            <summary>
            Sets or gets the color of the document links.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.media">
            <summary>
            Sets or retrieves the media type.
            Possible Values:
            screen		Output is intended for computer screens.
            print			Output is intended for printed material and for on-screen documents viewed in Print Preview mode.
            all				Default. Applies to all devices.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.nameProp">
            <summary>
            Retrieves the file name specified in the href or src property of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.parentWindow">
            <summary>
            Gets a reference to the container object of the window.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.protocol">
            <summary>
            Sets or retrieves the protocol portion of a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.readyState">
            <summary>
            Retrieves a value that indicates the current state of the object.	
            Possible Values:
            uninitialized		Object is not initialized with data.
            loading					Object is loading its data.
            loaded					Object has finished loading its data.
            interactive			User can interact with the object even though it is not fully loaded.
            complete				Object is completely initialized.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.referrer">
            <summary>
            Gets the URL of the location that referred the user to the current page.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.URL">
            <summary>
            Sets or gets the URL for the current document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.URLUnencoded">
            <summary>
            Gets the URL for the document, stripped of any character encoding.		 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDocumentElement.vLinkColor">
            <summary>
            Sets or gets the color of the links that the user has visited.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlDocumentFragment">
            <summary>
            Represents a fragment of a document
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlDomEventArgs">
            <summary>
            Represents the state of an event, such as the element in which the event occurred, the state of the keyboard keys, the location of the mouse, and the state of the mouse buttons. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlDomEventArgs.keyCode">
            <summary>
            Sets or retrieves the Unicode key code associated with the key that caused the event. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlDomEventArgs.shiftKey">
            <summary>
            Sets or retrieves the state of the SHIFT key. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlDomEventArgs.ctrlKey">
            <summary>
            Sets or retrieves the state of the CTRL key. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlDomEventArgs.propertyName">
            <summary>
            Sets or retrieves the name of the property that changes on the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.x">
            <summary>
            Sets or retrieves the x-coordinate, in pixels, of the mouse pointer's position relative to a relatively positioned parent element.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.y">
            <summary>
            Sets or retrieves the y-coordinate, in pixels, of the mouse pointer's position relative to a relatively positioned parent element.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.clientX">
            <summary>
            Sets or retrieves the x-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.clientY">
            <summary>
            Sets or retrieves the y-coordinate of the mouse pointer's position relative to the client area of the window, excluding window decorations and scroll bars.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.pageX">
            <summary>
            Returns the horizontal coordinate of the event relative to whole document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.pageY">
            <summary>
            Returns the vertical coordinate of the event relative to the whole document.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.offsetX">
            <summary>
            Sets or retrieves the x-coordinate of the mouse pointer's position relative to the object firing the event. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.offsetY">
            <summary>
            Sets or retrieves the y-coordinate of the mouse pointer's position relative to the object firing the event. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.srcElement">
            <summary>
            Sets or retrieves the object that fired the event. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.returnValue">
            <summary>
            Sets or retrieves the return value from the event. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.cancelBubble">
            <summary>
            Sets or retrieves whether the current event should bubble up the hierarchy of event handlers. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.type">
            <summary>
            Sets or retrieves the event name from the event object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.button">
            <summary>
            Sets or retrieves the mouse button pressed by the user. 
            Values:
            <list type="table">
            	<listheader>
            		<term>Value</term>	
            		<description>Description</description>
            	</listheader>
            	<item>
            		<term>0</term>	
            		<description>Default. No button is pressed.</description>
            	</item>
            	<item>
            		<term>1</term>	
            		<description>Left button is pressed. </description>
            	</item>
            	<item>
            		<term>2</term>	
            		<description>Right button is pressed. </description>
            	</item>
            	<item>
            		<term>3</term>	
            		<description>Left and right buttons are both pressed. </description>
            	</item>
            	<item>
            		<term>4</term>	
            		<description>Middle button is pressed. </description>
            	</item>
            	<item>
            		<term>5</term>	
            		<description>Left and middle buttons both are pressed. </description>
            	</item>
            	<item>
            		<term>6</term>	
            		<description>Right and middle buttons are both pressed. </description>
            	</item>
            	<item>
            		<term>7</term>	
            		<description>All three buttons are pressed. </description>
            	</item>
            </list>
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.altKey">
            <summary>
            Sets or retrieves a value that indicates the state of the ALT key. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.ctrlLeft">
            <summary>
            Retrieves the state of the left CTRL key. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.ctrlRight">
            <summary>
            Retrieves the state of the right CTRL key. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.shiftLeft">
            <summary>
            Retrieves the state of the left SHIFT key. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.shiftRight">
            <summary>
            Retrieves the state of the right SHIFT key. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.repeat">
            <summary>
            Retrieves whether the onkeydown event is being repeated. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.screenX">
            <summary>
            Sets or retrieves the x-coordinate of the mouse pointer's position relative to the user's screen. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.screenY">
            <summary>
            Sets or retrieves the y-coordinate of the mouse pointer's position relative to the user's screen. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlDomEventArgs.wheelDelta">
            <summary>
            Retrieves the distance and direction the wheel button has rolled. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlDomImplementation.createDocument(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,System.Object)">
            <summary>
            Creates a DOM document.
            </summary>
            <param name="namespaceURI">namespace URI of the document to be created (use null if none)</param>
            <param name="qualifiedNameStr">qualified name (optional prefix and colon plus the local root element name) of the document to be created</param>
            <param name="documentType">the DocumentType to be created.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlDomImplementation.createHTMLDocument">
            <summary>
            Creates an HTMLDocument object with the minimal tree made of the following elements: HTML, HEAD, TITLE, and BODY.
            </summary>
            <remarks>Introduced in DOM Level 2</remarks>
            <returns>A new HTMLDocument object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlDomImplementation.createDocumentType(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or they can be put into the document via Node.insertBefore() or Node.replaceChild()
            </summary>
            <param name="qualifiedNameStr"></param>
            <param name="publicId"></param>
            <param name="systemId"></param>
            <returns></returns>
        </member>
        <member name="T:SharpKit.Html4.HtmlElementStyle">
            <summary>
            Represents the current settings of all possible inline styles for a given element.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posBottom">
            <summary>
             Sets or retrieves the bottom position of the object in the units specified by the bottom attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posHeight">
            <summary>
             Sets or retrieves the height of the object in the units specified by the height attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posLeft">
            <summary>
            Sets or retrieves the left position of the object in the units specified by the left attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posRight">
            <summary>
            Sets or retrieves the right position of the object in the units specified by the right attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posTop">
            <summary>
            Sets or retrieves the top position of the object in the units specified by the top attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.posWidth">
            <summary>
            Sets or retrieves the width of the object in the units specified by the width attribute.  
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlElementStyle.styleFloat">
            <summary>
            SSets or retrieves on which side of the object the text will flow.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlElementStyle.getPropertyPriority(SharpKit.JavaScript.JsString)">
            <summary>
            Returns the optional priority, "important".
            </summary>
            <param name="propertyName">property name</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElementStyle.getPropertyValue(SharpKit.JavaScript.JsString)">
            <summary>
            Returns the property value.
            </summary>
            <param name="propertyName">property name</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElementStyle.setProperty(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Sets the property value.
            </summary>
            <param name="propertyName">property name</param>
            <param name="value">value</param>
            <param name="priority">'important' or null</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlElementStyle.removeProperty(SharpKit.JavaScript.JsString)">
            <summary>
            Removed a declaration from a stylesheet
            </summary>
            <param name="propertyName">property name</param>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.overflow">
            <summary>
            Sets or retrieves a value indicating how to manage the content of the object when the content exceeds the height or width of the object.
            String that specifies or receives one of the following values.
            visible		Default. Content is not clipped and scroll bars are not added. 
            scroll		Content is clipped and scroll bars are added, even if the content does not exceed the dimensions of the object.
            hidden		Content that exceeds the dimensions of the object is not shown.
            auto			Content is clipped and scrolling is added only when necessary.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.overflowX">
            <summary>
            Sets or retrieves how to manage the content of the object when the content exceeds the width of the object.
            String that specifies or receives one of the following values.
            visible		Default. Content is not clipped and scroll bars are not added. Elements are clipped to the size of the containing window or frame.
            scroll		Content is clipped and scroll bars are added, even if the content does not exceed the dimensions of the object.
            hidden		Content that exceeds the dimensions of the object is not shown.
            auto			Content is clipped and scrolling is added only when necessary.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.overflowY">
            <summary>
            Sets or retrieves how to manage the content of the object when the content exceeds the height of the object.		
            String that specifies or receives one of the following values.
            visible		Default. Content is not clipped and scroll bars are not added. Elements are clipped to the size of the containing window or frame.
            scroll		Content is clipped and scroll bars are added, even if the content does not exceed the dimensions of the object.
            hidden		Content that exceeds the dimensions of the object is not shown.
            auto			Content is clipped and scrolling is added only when necessary.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.position">
            <summary>
            Sets or retrieves the type of positioning used for the object. 
            String that specifies or receives one of the following values.
            static		Default. Object has no special positioning; it follows the layout rules of HTML.
            absolute	Object is positioned relative to parent element's position—or to the body object if its parent element is not positioned—using the top and left properties.
            relative	Object is positioned according to the normal flow, and then offset by the top and left properties.
            fixed			Windows Internet Explorer 7 and later. Object is positioned relative to the viewport containing the content.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.pixelLeft">
            <summary>
            Sets or retrieves the left position of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.pixelTop">
            <summary>
            Sets or retrieves the top position of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.opacity">
            <summary>
            Opacity (supported by Mozilla Gecko and Apple WebKit)
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.pixelHeight">
            <summary>
            Sets or retrieves the height of the object in the units specified by the height attribute. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.pixelWidth">
            <summary>
            Sets or retrieves the width of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.height">
            <summary>
            Sets or retrieves the height of the object. 
            String that specifies or receives one of the following values.
            auto				Default.  
            height			Floating-point number followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer followed by a percent sign (%). The value is a percentage of the height of the parent object, which must be specified explicitly. Negative values are not allowed.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.width">
            <summary>
            Sets or retrieves the width of the object. 
            String that specifies or receives one of the following values.
            auto				Default. Default width of the object.
            width				Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units.
            percentage	Integer, followed by a %. The value is a percentage of the width of the parent object, whether or not it is specified explicitly. Negative values are not allowed.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.cssText">
            <summary>
            Sets or retrieves the persisted representation of the style rule.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.visibility">
            <summary>
            Sets or retrieves whether the content of the object is displayed. 
            String that specifies or receives one of the following values.
            inherit		Default. Object inherits the visibility of the next parent object.
            visible		Object is visible.
            hidden		Object is hidden.
            collapse  Internet Explorer 8. Used in tables to remove rows and columns; for all other elements, same as hidden.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.display">
            <summary>
            Sets or retrieves whether the object is rendered.
            String that specifies or receives one of the following values.
            blockObject is rendered as a block element.
            inlineDefault. Object is rendered as an inline element sized by the dimensions of the content.
            list-item Microsoft Internet Explorer 6 and later. Object is rendered as a block element, and a list-item marker is added.
            none Object is not rendered.
            table-header-group Object is rendered as tHead. Table header is always displayed before all other rows and row groups, and after any top captions. The header is displayed on each page spanned by a table. 
            table-footer-group Object is rendered as tFoot. Table footer is always displayed after all other rows and row groups, and before any bottom captions. The footer is displayed on each page spanned by a table. 
            inline-block Object is rendered inline, but the contents of the object are rendered as a block element. Adjacent inline elements are rendered on the same line, space permitting.
            String that specifies or receives one of the following values.
            table  
            Internet Explorer 8. Object is rendered as table. 
            inline-table  
            Internet Explorer 8. Object is rendered as table within an inline-block. 
            table-row  
            Internet Explorer 8. Object is rendered as tr. 
            table-row-group  
            Internet Explorer 8. Object is rendered as tBody. Table body is always displayed after table-header-group objects and before table-footer-group objects. 
            table-column  
            Internet Explorer 8. Object is rendered as col. 
            table-column-group  
            Internet Explorer 8. Object is rendered as colGroup. 
            table-cell  
            Internet Explorer 8. Object is rendered as cell (td) or header cell (th), depending on location within the table. 
            table-caption  
            Internet Explorer 8. Object is rendered as caption. 
            run-in  
            Internet Explorer 8. If the run-in box contains a block element, object is rendered as a block. If not, and the following sibling is a block (which is neither floating nor absolutely positioned), object is rendered as the first inline-block of the sibling. Otherwise, same as block.
            ruby  
            Internet Explorer 8. Specifies that an element defines a ruby structure. This and the following values are from the CSS3 Ruby Module. 
            ruby-base  
            Internet Explorer 8. Specifies that an element defines a ruby base. 
            ruby-text  
            Internet Explorer 8. Specifies that an element defines a ruby text. 
            ruby-base-container  
            Internet Explorer 8. Specifies a container for one or more ruby base elements. 
            ruby-text-container  
            Internet Explorer 8. Specifies a container for one or more ruby text elements. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.top">
            <summary>
            Sets or retrieves the position of the object relative to the top of the next positioned object in the document hierarchy. 
            String that specifies or receives one of the following values:
            auto				Default. Default position according to the regular HTML layout of the page.
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). This value is a percentage of the height of the parent object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.bottom">
            <summary>
            Sets or retrieves the bottom position of the object in relation to the bottom of the next positioned object in the document hierarchy. 
            String that specifies or receives one of the following values:
            auto				Default. Default position according to the regular HTML layout of the page.
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). This value is a percentage of the height of the parent object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.left">
            <summary>
            Sets or retrieves the position of the object relative to the left edge of the next positioned object in the document hierarchy. 
            String that specifies or receives one of the following values:
            auto				Default. Position is determined by the regular HTML layout of the page.
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). The value is a percentage of the width of the parent object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.right">
            <summary>
            Sets or retrieves the position of the object relative to the right edge of the next positioned object in the document hierarchy.
            String that specifies or receives one of the following values:
            auto				Default. Position is determined by the regular HTML layout of the page.
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). The value is a percentage of the width of the parent object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.zIndex">
            <summary>
            Sets or retrieves the stacking order of positioned objects. 
            String or Integer that specifies or receives one of the following values.
            auto. Default. String that specifies the stacking order of the positioned objects based on the order in which the objects appear in the HTML source.
            order. Integer that specifies the position of the object in the stacking order.		
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.filter">
            <summary>
            Sets or retrieves the filter or collection of filters applied to the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.textDecoration">
            <summary>
            Sets or retrieves a value that indicates whether the text in the object has blink, line-through, overline, or underline decorations. 
            String that specifies or receives one of the following values.
            none					Default. Text has no decoration.
            underline			Text is underlined.
            overline			Text has a line over it.
            line-through	Text has a line drawn through it.
            blink					Not implemented.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.textAlign">
            <summary>
            Sets or retrieves whether the text in the object is left-aligned, right-aligned, centered, or justified. 
            String that specifies or receives one of the following values.
            left		Default. Text is aligned to the left.
            right		Text is aligned to the right.
            center	Text is centered.
            justify	Text is justified		
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.cursor">
            <summary>
            Sets or retrieves the type of cursor to display as the mouse pointer moves over the object. 
            Default value is auto.
            String that specifies or receives one or more of the following possible values, separated by commas.
            all-scroll		Microsoft Internet Explorer 6 and later. Arrows pointing up, down, left, and right with a dot in the middle, indicating that the page can be scrolled in any direction.
            auto					Default. Browser determines which cursor to display based on the current context.
            col-resize		Internet Explorer 6 and later. Arrows pointing left and right with a vertical bar separating them, indicating that the item/column can be resized horizontally.
            crosshair			Simple cross hair.
            default				Platform-dependent default cursor; usually an arrow.
            hand					Hand with the first finger pointing up, as when the user moves the pointer over a link.
            help					Arrow with question mark, indicating help is available.
            move					Crossed arrows, indicating something is to be moved.
            no-drop				Internet Explorer 6 and later. Hand with a small circle with a line through it, indicating that the dragged item cannot be dropped at the current cursor location.
            not-allowed		Internet Explorer 6 and later. Circle with a line through it, indicating that the requested action will not be carried out.
            pointer				Internet Explorer 6 and later. Hand with the first finger pointing up, as when the user moves the pointer over a link. Identical to hand.
            progress			Internet Explorer 6 and later. Arrow with an hourglass next to it, indicating that a process is running in the background. User interaction with the page is unaffected.
            row-resize		Internet Explorer 6 and later. Arrows pointing up and down with a horizontal bar separating them, indicating that the item/row can be resized vertically.
            text					Editable text; usually an I-bar.
            url(uri)			Internet Explorer 6 and later. Cursor is defined by the author, using a custom Uniform Resource Identifier (URI), such as url('mycursor.cur'). Cursors of type .CUR and .ANI are the only supported cursor types.
            vertical-text	Internet Explorer 6 and later. Editable vertical text, indicated by a horizontal I-bar.
            wait					Hourglass or watch, indicating that the program is busy and the user should wait.
            *-resize			Arrows, indicating an edge is to be moved; the asterisk (*) can be N, NE, NW, S, SE, SW, E, or W—each representing a compass direction.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.verticalAlign">
            <summary>
            Sets or retrieves the vertical alignment of the object. 
            Default value is baseline.
            String that specifies or receives one of the following values.
            auto				Aligns the contents of an object according to the value of the layout-flow attribute.
            baseline		Default. Aligns the contents of an object supporting VALIGN to the base line.
            sub					Vertically aligns the text to subscript.
            super				Vertically aligns the text to superscript.
            top					Vertically aligns the contents of an object supporting VALIGN to the top of the object.
            middle			Vertically aligns the contents of an object supporting VALIGN to the middle of the object.
            bottom			Vertically aligns the contents of an object supporting VALIGN to the bottom of the object.
            text-top		Vertically aligns the text of an object supporting VALIGN to the top of the object.
            text-bottom	Vertically aligns the text of an object supporting VALIGN to the bottom of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.tableLayout">
            <summary>
            Sets or retrieves a JsString that indicates whether the table layout is fixed.
            auto		Default. Column width is set by the widest unbreakable content in the column cells.
            fixed		Table and column widths are set either by the sum of the widths on the col objects or, if these are not specified, by the width of the first row of cells. If no width is specified for the table, it renders by default with width=100%.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.padding">
            <summary>
            Sets or retrieves the amount of space to insert between the object and its margin or, if there is a border, between the object and its border. 
            String that specifies or receives one of the following values.
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units.
            percentage	Integer, followed by a %. The value is a percentage of the width of the parent object.
            The property has a default value of 0 for all objects with the following exceptions: TD -> 1, TH -> 1
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.whiteSpace">
            <summary>
            Sets or retrieves a value that indicates whether lines are automatically broken inside the object.
            String that specifies or receives one of the following values.
            normal		Default. Lines of text break automatically. Content wraps to the next line if it exceeds the width of the object.
            nowrap		Line breaks are suppressed. Content does not wrap to the next line.
            pre				Line breaks and other whitespace are preserved. This possible value is supported in Microsoft Internet Explorer 6 and later when the !DOCTYPE declaration specifies standards-compliant mode. When the !DOCTYPE declaration does not specify standards-compliant mode, you can retrieve this value, but it does not affect rendering—it functions like the normal value.
            pre-line (in IE8)  
            Sequences of line breaks are preserved. 
            pre-wrap (in IE8)
            Sequences of line breaks are collapsed. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.color">
            <summary>
            Sets or retrieves the foreground color of the object's content. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.backgroundColor">
            <summary>
            Sets or retrieves the color behind the content of the object. 
            String or Integer that specifies or receives one of the following values.
            transparent		Default. Color of the next parent object through which the background is visible.
            color					Any color value, including those specified in the Color Table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.backgroundImage">
            <summary>
            Sets or retrieves the background image of the object. 
            String that specifies or receives one of the following values.
            none			Default. Color of the next parent through which the background is visible.
            url(sUrl)	Location of the background image, where sUrl is an absolute or relative URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.backgroundRepeat">
            <summary>
            Sets or retrieves how the backgroundImage property of the object is tiled.
            String that specifies or receives one of the following values.
            repeat		Default. Image is repeated horizontally and vertically.
            no-repeat	Image is not repeated.
            repeat-x	Image is repeated horizontally.
            repeat-y	Image is repeated vertically.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.backgroundAttachment">
            <summary>
            Sets or retrieves how the background image is attached to the object within the document.
            String that specifies or receives one of the following values.
            scroll	Default. Background image scrolls with the object as the document is scrolled.
            fixed		Background image stays fixed within the viewable area of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.backgroundPosition">
            <summary>
            Sets or retrieves the position of the background of the object. 
            String that specifies or receives one or two of the following values. 
            length			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). The value is a percentage of the width or height of the object.
            vAlignment Vertical alignment value. Possible values include the following: 
            		top					Vertical alignment is at the top.
            		center			Vertical alignment is centered.
            		bottom			Vertical alignment is at the bottom.
            hAlignment	Horizontal alignment value. Possible values include the following: 
            		left				Horizontal alignment is to the left.
            		center			Horizontal alignment is centered.
            		right				Horizontal alignment is to the right.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.background">
            <summary>
            Sets or retrieves up to five separate background properties of the object.
            String that specifies or receives up to five of the following space-delimited values, in any order:
            color Any of the range of color values available to the backgroundColor property. 
            image Any of the range of image values available to the backgroundImage property.
            repeat Any of the range of repeat values available to the backgroundRepeat property.
            attachment Any of the range of attachment values available to the backgroundAttachment property.
            position Any of the range of position values available to the backgroundPosition property.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.fontSize">
            <summary>
            Sets or retrieves a value that indicates the font size used for text in the object. 
            value = String that specifies or receives one of the following values.
            absolute-size Set of keywords that indicate predefined font sizes. Named font sizes scale according to the user's font setting preferences. Possible values include the following: xx-small, x-small, small, medium, large, x-large, xx-large.  
            relative-size Set of keywords that are interpreted as relative to the font size of the parent object. Possible values include the following: larger, smaller.  
            length Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see the CSS Length Units Reference. 
            percentage Integer, followed by a percent (%). The value is a percentage of the parent object's font size. In Microsoft Internet Explorer 3.0, the value is calculated as a percentage of the default font size. 
            Default - medium (of the absolute-size set).
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.fontStyle">
            <summary>
            Sets or retrieves the font style of the object as italic, normal, or oblique.
            String that specifies or receives one of the following values.
            normal Default. Font is normal. 
            italic Font is italic. 
            oblique Font is italic.  
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.fontVariant">
            <summary>
            Sets or retrieves whether the text of the object is in small capital letters.
            String that specifies or receives one of the following values.
            normal Default. Font is normal. 
            small-caps Font is in small capital letters. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.fontFamily">
            <summary>
            Sets or retrieves the name of the font used for text in the object. 
            String that specifies or receives one of the following values.
            family-name Any of the available font families supported by the browser. For example, Times, Helvetica, Zapf-Chancery, Western, or Courier. 
            generic-name Any of the following font families: serif, sans-serif, cursive, fantasy, or monospace. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.fontWeight">
            <summary>
            Sets or retrieves the weight of the font of the object. 
            String that specifies or receives one of the following values.
            normal Font is normal. 
            bold Font is bold. 
            bolder Font is at least as bold as the default bold weight. 
            lighter Font is lighter than normal. 
            100 Font is at least as light as the 200 weight. 
            200 Font is at least as bold as the 100 weight and at least as light as the 300 weight. 
            300 Font is at least as bold as the 200 weight and at least as light as the 400 weight. 
            400 Font is normal. 
            500 Font is at least as bold as the 400 weight and at least as light as the 600 weight. 
            600 Font is at least as bold as the 500 weight and at least as light as the 700 weight. 
            700 Font is bold. 
            800 Font is at least as bold as the 700 weight and at least as light as the 900 weight. 
            900 Font is at least as bold as the 800 weight. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.lineHeight">
            <summary>
            Sets or retrieves the distance between lines in the object. 
            String that specifies or receives one of the following values.
            normal			Default. Default height.
            height			Floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px). For more information about the supported length units, see CSS Length Units Reference.
            percentage	Integer, followed by a percent sign (%). The value is a percentage of the height of the parent object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.font">
            <summary>
            Sets or retrieves a combination of separate font properties of the object. Alternatively, sets or retrieves one or more of six user-preference fonts.
            String that specifies or receives up to six of the following space-delimited property values. Alternatively, sets or retrieves the six listed text fonts.
            font-style Any of the range of font-style values available to the fontStyle property. 
            font-variant Any of the range of font-variant values available to the fontVariant property. 
            font-weight Any of the range of font-weight values available to the fontWeight property. 
            font-size Any of the range of font-size values available to the fontSize property. When this value is an integer followed by a percent (%), the value is a percentage of the parent object's font size. In Microsoft Internet Explorer 3.0, a percentage value is calculated as a percentage of the default font size. 
            line-height Any of the range of line-height values available to the lineHeight property. When used with the font property, this attribute must include a slash (/) before the value. Line height percentage values are calculated as a percentage of the font size of the element itself, not of the parent. 
            font-family Any of the range of font-family values available to the fontFamily property. This property can be set to multiple comma-separated values. Its default value depends on user settings. 
            caption User-preference font used in objects that have captions—buttons, labels, and so on. 
            icon User-preference font used in icon labels. 
            menu User-preference font used in menus. 
            message-box User-preference font used in dialog boxes. 
            small-caption User-preference font used in small controls. 
            status-bar User-preference font used in window status bars. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.borderCollapse">
            <summary>
            Sets or retrieves a value that indicates whether the row and cell borders of a table are joined in a single border or detached as in standard HTML.
            String that specifies or receives one of the following values.
            separate Default. Borders are detached (standard HTML).  
            collapse Borders are collapsed, where adjacent, into a single border.  
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.border">
            <summary>
            Sets or retrieves the properties to draw around the object.
            String that specifies or receives one or more of the following space-delimited values:
            width. Any of the range of width values available to the borderWidth property.
            style. Any of the range of style values available to the borderStyle property.
            color. Any of the range of color values available to the borderColor property.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.borderStyle">
            <summary>
            Sets or retrieves the style of the left, right, top, and bottom borders of the object. 
            String that specifies or receives one of the following values.
            none. Default. No border is drawn, regardless of any specified borderWidth.
            dotted. Border is a dotted line. This value is supported on the Macintosh platform, as of Microsoft Internet Explorer 4.01, and on the Microsoft Windows platform, as of Internet Explorer 5.5. It renders as a solid line on Unix platforms, and on Windows systems running earlier versions of Windows Internet Explorer.
            dashed. Border is a dashed line. This value is supported on the Macintosh platform as of Internet Explorer 4.01 and on the Windows platform, as of Internet Explorer 5.5. It renders as a solid line on Unix platforms, and on Windows systems running earlier versions of Internet Explorer.
            solid. Border is a solid line.
            double. Border is a double line drawn on top of the background of the object. The sum of the two single lines and the space between equals the borderWidth value. The border width must be at least 3 pixels wide to draw a double border.
            groove. 3-D groove is drawn in colors based on the value. The borderWidth property of the object must be specified for the style to render correctly.
            ridge. 3-D ridge is drawn in colors based on the value.
            inset. 3-D inset is drawn in colors based on the value.
            window-inset. Border is the same as inset, but is surrounded by an additional single line, drawn in colors based on the value.
            outset. 3-D outset is drawn in colors based on the value.
            window-inset. Internet Explorer 6 and later. Same as inset with a thin outside border. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.borderWidth">
            <summary>
            Sets or retrieves the width of the left, right, top, and bottom borders of the object. 
            String that specifies or receives up to four of the following values:
            medium. Default.		
            thin. Width less than the default.
            thick. Width greater than the default.
            width. Width consisting of a floating-point number, followed by an absolute units designator (cm, mm, in, pt, or pc) or a relative units designator (em, ex, or px)
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlElementStyle.borderColor">
            <summary>
            Sets or retrieves the border color of the object.
            String that specifies or receives one or more of the following space-delimited values:
            transparent. Border is transparent.
            color. Up to four color names or RGB values in the Color Table. 
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlEmbedElement">
            <summary>
            Allows documents of any type to be embedded.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlEmbedElement.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlFieldSet.align">
            <summary>
            Sets or retrieves how the object is aligned with adjacent text.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlFieldSet.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlFontElement">
            <summary>
            User agents must treat acronym elements in a manner equivalent to abbr elements.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlForm">
            <summary>
            Specifies that the contained controls take part in a form.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlForm.submit">
            <summary>
            Submits the form.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlForm.onreset">
            <summary>
            Fires when the user resets a form.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlForm.onsubmit">
            <summary>
            Fires when a FORM is about to be submitted.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlForm.acceptCharset">
            <summary>
            Sets or retrieves a list of character encodings for input data that must be accepted by the server processing the form.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlForm.length">
            <summary>
            Sets or retrieves the number of objects in a collection.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlForm.action">
            <summary>
            Sets or retrieves the URL to which the form content is sent for processing.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlForm.method">
            <summary>
            Sets or retrieves how to send the form data to the server.
            Receives one of the following values:
            <list type="table">
            <item><term>GET</term><description>Append the arguments to the action URL and open it as if it were an anchor.</description></item>
            <item><term>POST</term><description>Send the data through an HTTP post transaction.</description></item>
            </list>
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlFrameElement">
            <summary>
            Specifies an individual frame within a frameSet element.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameElement.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlFrameSetElement">
            <summary>
            Specifies a frameset, which is used to organize multiple frames and nested framesets.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameSetElement.onafterprint">
            <summary>
            Fires on the object immediately after its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameSetElement.onbeforeprint">
            <summary>
            Fires on the object before its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameSetElement.onbeforeunload">
            <summary>
            Fires prior to a page being unloaded.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameSetElement.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlFrameSetElement.onunload">
            <summary>
            Fires immediately before the object is unloaded.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlHead">
            <summary>
            Represents the HEAD element of a HTML document
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlHeadingElement">
            <summary>
            These elements represent headings for their sections.User agents must treat acronym elements in a manner equivalent to abbr elements.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlHorizontalRule">
            <summary>
            Draws a horizontal rule.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlHtmlElement">
            <summary>
            The html element represents the root of an HTML document.The marquee element is a presentational element that animates content. CSS transitions and animations are a more appropriate mechanism.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlIFrame">
            <summary>
            Creates inline floating frames. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlIFrame.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.frameBorder">
            <summary>
            Sets or retrieves whether to display a border for the frame.
            Possible values:
            1		Default. Inset border is drawn.
            0		No border is drawn.
            no		No border is drawn.
            yes		Inset border is drawn.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.src">
            <summary>
            Sets or retrieves a URL to be loaded by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.allowTransparency">
            <summary>
            Sets or retrieves whether the object can be transparent.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.border">
            <summary>
            Sets or retrieves the space between the frames, including the 3-D border. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.marginHeight">
            <summary>
            Sets or retrieves the top and bottom margin heights before displaying the text in a frame. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.marginWidth">
            <summary>
            Sets or retrieves the left and right margin widths before displaying the text in a frame. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.height">
            <summary>
            Sets or retrieves the height of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.width">
            <summary>
            Sets or retrieves the width of the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.vspace">
            <summary>
            Sets or retrieves the vertical margin for the object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.scrolling">
            <summary>
            Sets or retrieves whether the frame can be scrolled.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.align">
            <summary>
            Sets or retrieves a value that indicates the table alignment.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.contentWindow">
            <summary>
            Retrieves the window object of the specified frame or iframe.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.frameSpacing">
            <summary>
            Sets or retrieves the amount of additional space between the frames.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.hspace">
            <summary>
            Sets or retrieves the horizontal margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.longDesc">
            <summary>
            Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.name">
            <summary>
            Sets or retrieves the frame name.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.noResize">
            <summary>
            Sets or retrieves whether the user can resize the frame.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlIFrame.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlImage">
            <summary>
            Embeds an image or a video clip in the document.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlImage.onabort">
            <summary>
            Fires when the user aborts the download of an image.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlImage.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlImage.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.align">
            <summary>
            Sets or retrieves how the object is aligned with adjacent text.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.alt">
            <summary>
            Sets or retrieves a text alternative to the graphic.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.border">
            <summary>
            Sets the properties to draw around the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.height">
            <summary>
            Sets the height of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.hspace">
            <summary>
            Sets the horizontal margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.src">
            <summary>
            Sets a URL to be loaded by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.usemap">
            <summary>
            Sets the URL, often with a bookmark extension (#name), to use as a client-side image map.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.vspace">
            <summary>
            Sets the vertical margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.width">
            <summary>
            Sets the width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.complete">
            <summary>
            Retrieves whether the object is fully loaded.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.fileCreatedDate">
            <summary>
            Retrieves the date the file was created.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.fileModifiedDate">
            <summary>
            Retrieves the date the file was last modified.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.fileSize">
            <summary>
            Retrieves the file size.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.fileUpdatedDate">
            <summary>
            Retrieves the date the file was last updated.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.href">
            <summary>
            Sets or retrieves a destination URL or an anchor point.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.isMap">
            <summary>
            Sets or retrieves whether the image is a server-side image map.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.longDesc">
            <summary>
            Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.loop">
            <summary>
            Sets or retrieves the number of times a sound or video clip will loop when activated.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.lowsrc">
            <summary>
            Sets or retrieves a lower resolution image to display.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.nameProp">
            <summary>
            Retrieves the file name specified in the href or src property of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.protocol">
            <summary>
            Sets or retrieves the protocol portion of a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.start">
            <summary>
            Sets or retrieves when a video clip file should begin playing.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlImage.vrml">
            <summary>
            Sets or retrieves the URL of the virtual reality modeling language (VRML) world to be displayed in the window.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlInput">
            <summary>
            Creates a variety of form input controls.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlInput.select">
            <summary>
            Highlights the input area of a form element.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlInput.createTextRange">
            <summary>
            Creates a TextRange object for the element.
            Use a text range to examine and modify the text within an object.
            </summary>
            <returns>Returns a TextRange object if successful, or null otherwise.</returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlInput.onabort">
            <summary>
            Fires when the user aborts the download of an image.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlInput.onchange">
            <summary>
            Fires when the contents of the object or selection have changed.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlInput.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlInput.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlInput.onselect">
            <summary>
            Fires when the current selection changes.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.accept">
            <summary>
            Sets or retrieves a comma-separated list of content types.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.align">
            <summary>
            Sets or retrieves how the object is aligned with adjacent text.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.alt">
            <summary>
            Sets or retrieves a text alternative to the graphic.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.checked">
            <summary>
            Sets or retrieves the state of the check box or radio button.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.complete">
            <summary>
            Retrieves whether the object is fully loaded.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.defaultValue">
            <summary>
            Sets or retrieves the initial contents of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.defaultChecked">
            <summary>
            Sets or retrieves the state of the check box or radio button.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.lowsrc">
            <summary>
            Sets or retrieves a lower resolution image to display.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.loop">
            <summary>
            Sets or retrieves the number of times a sound or video clip will loop when activated.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.hspace">
            <summary>
            Sets or retrieves the horizontal margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.vspace">
            <summary>
            Sets or retrieves the vertical margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.useMap">
            <summary>
            Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.readOnly">
            <summary>
            Sets or retrieves the value indicated whether the content of the object is read-only.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.size">
            <summary>
            Sets or retrieves the size of the control.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.src">
            <summary>
            Sets or retrieves a URL to be loaded by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.start">
            <summary>
            Sets or retrieves when a video clip file should begin playing.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.width">
            <summary>
            Sets or retrieves the calculated width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.status">
            <summary>
            Sets or retrieves the value indicating whether the control is selected.
            Possible values:
            false	Default. Control is not selected.
            true	Control is selected.
            null	Control is not initialized.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.name">
            <summary>
            Sets or retrieves the name of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.value">
            <summary>
            Retrieves the file name of the input object after the text is set by user input.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.type">
            <summary>
            Retrieves or initially sets the type of input control represented by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlInput.maxLength">
            <summary>
            Sets or retrieves the maximum number of characters that the user can enter in a text control. 
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlLabelElement">
            <summary>
            The label represents a caption in a user interface. The caption can be associated with a specific form control , known as the labelelement's labeled control , either using for attribute, or by putting the form control inside the label element itself.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLegend.align">
            <summary>
            Sets or retrieves the alignment of the caption or legend.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLegend.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLegend.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLegend.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLegend.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlLineBreak">
            <summary>
            Inserts a line break.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlLink">
            <summary>
            Represents a LINK html node
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlLink.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlLink.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlLink.href">
            <summary>
            Sets or retrieves the destination URL or anchor point.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLink.rel">
            <summary>
            Sets or retrieves the relationship between the object and the destination of the link. e.g. 'stylesheet'
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlLink.type">
            <summary>
            Sets or retrieves the MIME type of the object. e.g. 'text/css'
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlListItem">
            <summary>
            Represents an HTML list item
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlMapElement">
            <summary>
            The map element, in conjunction with any area element descendants, defines an image map . The element represents its children.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlMarqueeElement">
            <summary>
            Creates a scrolling text marquee.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlMarqueeElement.onbounce">
            <summary>
            Fires when the behavior property of the marquee object is set to "alternate" and the contents of the marquee reach one side of the window.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlMarqueeElement.onfinish">
            <summary>
            Fires when marquee looping is complete.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlMarqueeElement.onstart">
            <summary>
            Fires at the beginning of every loop of the marquee object.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlMetaElement">
            <summary>
            The meta element represents various kinds of metadata that cannot be expressed using the title , base , link , style , and script elements.The marquee element is a presentational element that animates content. CSS transitions and animations are a more appropriate mechanism.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlObjectElement">
            <summary>
            Inserts an object into the HTML page.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlObjectElement.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlOptGroupElement">
            <summary>
            The optgroup element represents a group of option elements with a common label.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlOption">
            <summary>
            Denotes one choice in a SELECT element.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.value">
            <summary>
            Sets or retrieves the value which is returned to the server when the form control is submitted.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.text">
            <summary>
            Sets or retrieves the text JsString specified by the option tag. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.defaultSelected">
            <summary>
            Sets or retrieves the status of an option.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.label">
            <summary>
            Sets or retrieves the ordinal position of an option in a list box.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlOption.selected">
            <summary>
            Sets or retrieves whether the option in the list box is the default item.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlOrderedList">
            <summary>
            Represents an ordered list
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlParagraph">
            <summary>
            Denotes a paragraph.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlParagraph.clear">
            <summary>
            Sets or retrieves the side on which floating objects are not to be positioned when any IHTMLBlockElement is inserted into the document.
            Possible Values:
            all		Object is moved below any floating object.
            left	Object is moved below any floating object on the left side.
            right Object is moved below any floating object on the right side.
            none	Floating objects are allowed on all sides.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlPre">
            <summary>
            Renders text in a fixed-width font.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlQuoteElement">
            <summary>
            The blockquote element represents a section that is quoted from another source.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.availHeight">
            <summary>
            Retrieves the height of the working area of the system's screen, excluding the Microsoft Windows taskbar.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.availWidth">
            <summary>
            Retrieves the width of the working area of the system's screen, excluding the Windows taskbar.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.updateInterval">
            <summary>
            Sets or retrieves the update interval for the screen.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.fontSmoothingEnabled">
            <summary>
            Retrieves whether the user has enabled font smoothing in the Display control panel.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.bufferDepth">
            <summary>
            Sets or retrieves the number of bits per pixel used for colors in the off-screen bitmap buffer.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.colorDepth">
            <summary>
            The color depth (in bits) of the screen
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.pixelDepth">
            <summary>
            The color depth (in bits) of the screen. (Same as colorDepth)
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.width">
            <summary>
            The width of the screen
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlScreen.height">
            <summary>
            The height of the screen
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlScriptElement">
            <summary>
            Specifies a script for the page that is interpreted by a script engine.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlScriptElement.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlScriptElement.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="T:SharpKit.Html4.HtmlSelect">
            <summary>
            Denotes a list box or drop-down list.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlSelect.onchange">
            <summary>
            Fires when the contents of the object or selection have changed.
            </summary>		
        </member>
        <member name="M:SharpKit.Html4.HtmlSelect.add(SharpKit.Html4.HtmlOption,SharpKit.Html4.HtmlOption)">
            <summary>
            Adds an option element to the options collection of a select object.
            </summary>
            <param name="newOption">An HTMLOptionElement to add to the options collection.</param>
            <param name="existingOption">An existing HTMLOptionElement within the collection used as a reference point for inserting the new element; the new element being inserted before the referenced element in the collection.  If this parameter is null, the new element is appended to the end of the collection.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlSelect.add(SharpKit.Html4.HtmlOption)">
            <summary>
            Adds an option element to the options collection of a select object.
            </summary>
            <param name="newOption">An HTMLOptionElement to add to the options collection.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlSelect.add(SharpKit.Html4.HtmlOption,SharpKit.JavaScript.JsNumber)">
            <summary>
            Adds an option element to the options collection of a select object.
            </summary>
            <param name="newOption">An HTMLOptionElement to add to the options collection.</param>
            <param name="index">Integer that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlSelect.remove(SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes an element from the collection.
            </summary>
            <param name="iIndex">Integer that specifies the zero-based index of the element to remove from the collection.</param>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.multiple">
            <summary>
            Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.selectedIndex">
            <summary>
            Sets or retrieves the index of the selected option in a select object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.length">
            <summary>
            Sets or retrieves the number of objects in a collection.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.name">
            <summary>
            Sets or retrieves the name of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.size">
            <summary>
            Sets or retrieves the number of rows in the list box.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.type">
            <summary>
            Retrieves the type of select control based on the value of the MULTIPLE attribute.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSelect.value">
            <summary>
            Sets or retrieves the value which is returned to the server when the form control is submitted.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlSpan">
            <summary>
            Specifies an inline text container.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSpan.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSpan.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlSpan.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlStyleElement">
            <summary>
            Represents a STYLE html node
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.addRule(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new rule for a style sheet.
            </summary>
            <param name="cSelector">String that specifies the selector for the new rule. Single contextual selectors are valid. For example, "div p b" is a valid contextual selector.</param>
            <param name="cStyle">String that specifies the style assignments for this style rule. This style takes the same form as an inline style specification. For example, "color:blue" is a valid style parameter.</param>
            <param name="iIndex">Integer that specifies the zero-based position in the rules collection where the new style rule should be placed.
            -1 by Default. The rule is added to the end of the collection.</param>
            <returns>-1 (Reserved value)</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.addRule(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Creates a new rule for a style sheet.
            </summary>
            <param name="cSelector">String that specifies the selector for the new rule. Single contextual selectors are valid. For example, "div p b" is a valid contextual selector.</param>
            <param name="cStyle">String that specifies the style assignments for this style rule. This style takes the same form as an inline style specification. For example, "color:blue" is a valid style parameter.</param>
            <returns>-1 (Reserved value)</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.insertRule(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Inserts a new style rule into the current style sheet.
            </summary>
            <param name="rule">a JsString containing the rule to be inserted (selector and declaration).</param>
            <param name="index">a number representing the position to be inserted.</param>
            <returns>The index within the style sheet's rule collection of the newly inserted rule.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.deleteRule(System.UInt64)">
            <summary>
            Used to delete a rule from the style sheet.
            </summary>
            <param name="index">The index within the style sheet's rule list of the rule to remove.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.removeRule(SharpKit.JavaScript.JsNumber)">
            <summary>
            Deletes an existing style rule for the styleSheet object, and adjusts the index of the rules collection accordingly.
            </summary>
            <param name="iIndex">Integer that specifies the index value of the rule to be deleted from the style sheet.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlStyleElement.removeRule">
            <summary>
            Deletes the first style rule for the styleSheet object, and adjusts the index of the rules collection accordingly.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlStyleElement.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlStyleElement.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.type">
            <summary>
            Sets or retrieves the MIME type of the object. e.g. 'text/css'
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.media">
            <summary>
            Sets or retrieves the media type.
            </summary>
            <remarks>Possible values:
            screen - Output is intended for computer screens.
            print - Output is intended for printed material and for on-screen documents viewed in Print Preview mode.
            all - Default. Applies to all devices.</remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.owningElement">
            <summary>
            Retrieves the next object in the HTML hierarchy.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.parentStyleSheet">
            <summary>
            Retrieves the style sheet that imported the current style sheets.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.readOnly">
            <summary>
            Retrieves whether the rule or style sheet is defined on the page or is imported.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.title">
            <summary>
            Sets or retrieves the title of the style sheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.imports">
            <summary>
            Retrieves a collection of all the imported style sheets defined for the respective styleSheet object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.pages">
            <summary>
            Retrieves a collection of page objects, which represent @page rules in a styleSheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.rules">
            <summary>
            Retrieves a collection of rules defined in a style sheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.cssRules">
            <summary>
            Retrieves a collection of rules defined in a style sheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.cssText">
            <summary>
            Sets or retrieves the persisted representation of the style rule.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.disabled">
            <summary>
            Sets or retrieves a value that indicates whether the user can interact with the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.href">
            <summary>
            The URL of the linked style sheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleElement.ownerNode">
            <summary>
            Returns the node that associates this style sheet with the document. Usually a &lt;link&gt; or a &lt;style&gt; tag.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlStyleSheetPage">
            <summary>
            Represents an @page rule within a styleSheet.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleSheetPage.pseudoClass">
            <summary>
            Retrieves a JsString that identifies the pseudo class of the page or pages an @page rule applies to.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlStyleSheetPage.selector">
            <summary>
            Retrieves a JsString that identifies which page or pages an @page rule applies to.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTable">
            <summary>
            Specifies that the contained content is organized into a table with rows and columns.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.insertRow(SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new row (tr) in the table, and adds the row to the rows collection.
            </summary>
            <param name="iIndex">Integer that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.</param>
            <returns>Returns the tr element object if successful, or null otherwise.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.createCaption">
            <summary>
            Creates an empty caption element in the table.
            </summary>
            <returns>Returns a caption object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.createTFoot">
            <summary>
            Creates an empty tFoot element in the table.
            </summary>
            <returns>Returns the tFoot element object if successful, or null otherwise.</returns>
            <remarks>If a tFoot already exists for the table, the createTFoot method returns the existing element. Otherwise, it returns a pointer to the element created.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.createTHead">
            <summary>
            Creates an empty tHead element in the table.
            </summary>
            <returns>Returns the tHead element object if successful, or null otherwise.</returns>
            <remarks>If a tHead already exists, createTHead returns the existing element. Otherwise, it returns a pointer to the element created.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.deleteCaption">
            <summary>
            Deletes the caption element and its contents from the table.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.deleteRow(SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes the specified row (tr) from the element and from the rows collection.
            </summary>
            <param name="iRowIndex">Integer that specifies the zero-based position in the rows collection of the row to remove.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.deleteRow">
            <summary>
            Removes the last row (tr) from the element and from the rows collection.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.deleteTFoot">
            <summary>
            Deletes the tFoot element and its contents from the table.
            </summary>
            <remarks>If only one tFoot element exists in the source, the deleteTFoot method deletes the table footer. If multiple tFoot elements have been defined, the next tFoot element in the source order is promoted as the table footer.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.deleteTHead">
            <summary>
            Deletes the tHead element and its contents from the table.
            </summary>
            <remarks>If only one tHead element exists in the source, the deleteTHead method deletes the table header. If multiple tHead elements have been defined, the next tHead element in the source order is promoted as the table header.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTable.moveRow(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Moves a table row to a new position.
            </summary>
            <param name="iSource">Integer that specifies the index in the rows collection of the table row that is moved.</param>
            <param name="iTarget">Integer that specifies where the row is moved within the rows collection.</param>
            <returns>Object. Returns a reference to the table row that is moved.</returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.width">
            <summary>
            Sets or retrieves the width of the object.
            Possible Values:
            Integer			that specifies the width of the object in pixels.
            percentage	String that specifies an integer value followed by a %. The value is a percentage of the width of the parent object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.summary">
            <summary>
            Sets or retrieves a description and/or structure of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.rules">
            <summary>
            Sets or retrieves which dividing lines (inner borders) are displayed.			 
            Possible Values:
            all			Borders are displayed on all rows and columns.
            cols		Borders are displayed between all table columns.
            groups	Horizontal borders are displayed between all tHead, tBody, and tFoot objects; vertical borders are displayed between all colGroup objects.
            none		All interior table borders are removed.
            rows		Horizontal borders are displayed between all table rows.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.height">
            <summary>
            Sets or retrieves the height of the object.
            Possible Values:
            height			Integer that specifies the height of the object, in pixels.
            percentage	Integer, followed by a percent sign (%). The value is a percentage of the height of the parent object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.frame">
            <summary>
            Sets or retrieves the way the border frame around the table is displayed.
            </summary>
            <remarks>Possible values: void, above, below, hsides, vsides, lhs, rhs, box, border</remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.dataFormatAs">
            <summary>
            Sets or retrieves the rendering format for the data supplied to the object.
            Possible values:
            text						Default. Data is rendered as text.
            html						Data is rendered as HTML.
            localized-text	Microsoft Internet Explorer 5.01 and later versions. Data is rendered using the locale settings of the client machine.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.cols">
            <summary>
            Sets or retrieves the number of columns in the table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.cellSpacing">
            <summary>
            Sets or retrieves the amount of space between cells in a table.
            Possible Values:
            spacing			Integer that specifies the amount of space between cells, in pixels.
            percentage	Integer, followed by a %. The value is a percentage of the available amount of space between the border and the content.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.cellPadding">
            <summary>
            Sets or retrieves the amount of space between the border of the cell and the content of the cell.
            Possible Values:
            Integer			that specifies the amount of space between the border and the content, in pixels.
            percentage	Integer, followed by a %. The value is a percentage of the available amount of space between the border and the content.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.caption">
            <summary>
            Retrieves the caption object of a table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.borderColorLight">
            <summary>
            Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.borderColorDark">
            <summary>
            Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.bgColor">
            <summary>
            Deprecated. Sets or retrieves the background color behind the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.align">
            <summary>
            Sets or retrieves a value that indicates the table alignment.
            Possible Values:
            left		Aligns to the left edge of the available space.
            center	Aligns to the center of the available space, which is not necessarily the same as the browser window.
            right		Aligns to the right edge of the available space.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.tFoot">
            <summary>
            Retrieves the tFoot object of the table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTable.tHead">
            <summary>
            Retrieves the tHead object of the table.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableBody">
            <summary>
            Designates rows as the body of the table.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.insertRow(SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new row (tr) in the table, and adds the row to the rows collection. 
            </summary>
            <param name="rowIndex">Integer that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection.</param>
            <returns>Returns the tr element object if successful, or null otherwise. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.insertRow">
            <summary>
            Creates a new row (tr) in the table, and adds the row to the rows collection. 
            </summary>
            <returns>Returns the tr element object if successful, or null otherwise. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.deleteRow(SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes the specified row (tr) from the element and from the rows collection.
            </summary>
            <param name="iRowIndex">Integer that specifies the zero-based position in the rows collection of the row to remove.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.deleteRow">
            <summary>
            Removes the last row (tr) from the element and from the rows collection.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.deleteTFoot">
            <summary>
            Deletes the tFoot element and its contents from the table.
            </summary>
            <remarks>If only one tFoot element exists in the source, the deleteTFoot method deletes the table footer. If multiple tFoot elements have been defined, the next tFoot element in the source order is promoted as the table footer.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.deleteTHead">
            <summary>
            Deletes the tHead element and its contents from the table.
            </summary>
            <remarks>If only one tHead element exists in the source, the deleteTHead method deletes the table header. If multiple tHead elements have been defined, the next tHead element in the source order is promoted as the table header.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableBody.moveRow(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Moves a table row to a new position.
            </summary>
            <param name="iSource">Integer that specifies the index in the rows collection of the table row that is moved.</param>
            <param name="iTarget">Integer that specifies where the row is moved within the rows collection.</param>
            <returns>Object. Returns a reference to the table row that is moved.</returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableBody.vAlign">
            <summary>
            String that specifies or receives one of the following values.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableCaptionElement">
            <summary>
            The caption element represents the title of the table that is its parent, if it has a parent and that is a table element.User agents must treat acronym elements in a manner equivalent to abbr elements.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableCell">
            <summary>
            Specifies a cell in a table.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlTableCell.align">
            <summary>
            Sets or retrieves the alignment of the object relative to the display or table.
            Possible Values:
            center	Aligns to the center.
            justify	Aligns to the left and right edge.
            left		Default. Aligns to the left edge.
            right		Aligns to the right edge.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.abbr">
            <summary>
            Sets or retrieves abbreviated text for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.axis">
            <summary>
            Sets or retrieves a comma-delimited list of conceptual categories associated with the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.borderColorDark">
            <summary>
            Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.borderColorLight">
            <summary>
            Sets or retrieves the color for one of the two colors used to draw the 3-D border of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.ch">
            <summary>
            Sets or retrieves a value that you can use to implement your own ch functionality for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.chOff">
            <summary>
            Sets or retrieves a value that you can use to implement your own chOff functionality for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.colSpan">
            <summary>
            Sets or retrieves the number columns in the table that the object should span.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.headers">
            <summary>
            Sets or retrieves a list of header cells that provide information for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.rowSpan">
            <summary>
            Sets or retrieves how many rows in a table the cell should span.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.scope">
            <summary>
            Sets or retrieves the group of cells in a table to which the object's information applies.
            Possible Values:
            row				The current cell provides header information for its row.
            col				The current cell provides header information for its column.
            rowgroup	The header cell provides header information for its row.
            colgroup	The header cell provides header information for its column.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.width">
            <summary>
            Sets or retrieves the width of the object.
            Possible Values:
            Integer			that specifies the width of the object in pixels.
            percentage	String that specifies an integer value followed by a %. The value is a percentage of the width of the parent object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.noWrap">
            <summary>
            Sets whether the browser automatically performs wordwrap.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.cellIndex">
            <summary>
            Retrieves the position of the object in the cells collection of a row. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.bgColor">
            <summary>
            Deprecated. Sets or retrieves the background color behind the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.height">
            <summary>
            Sets the height of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCell.vAlign">
            <summary>
            String that specifies or receives one of the following values.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableCol">
            <summary>
            Specifies column-based defaults for the table properties.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.width">
            <summary>
            Sets or retrieves the width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.chOff">
            <summary>
            Sets or retrieves a value that you can use to implement your own chOff functionality for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.valign">
            <summary>
            Sets or retrieves how text and other content are vertically aligned within the object that contains them.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.span">
            <summary>
            Sets or retrieves the number of columns in the group. 
            </summary>
            <remarks>
            Integer that specifies or receives the number of spanned columns. The default value is 1.
            </remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.ch">
            <summary>
            Sets or retrieves a value that you can use to implement your own ch functionality for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableCol.align">
            <summary>
            Sets or retrieves the alignment of the object relative to the display or table.
            Possible Values:
            center	Aligns to the center.
            justify	Aligns to the left and right edge.
            left		Default. Aligns to the left edge.
            right		Aligns to the right edge.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableColGroup">
            <summary>
            Specifies property defaults for a column or group of columns in a table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableColGroup.vAlign">
            <summary>
            String that specifies or receives one of the following values.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableFoot">
            <summary>
            Designates rows as the table's footer.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableHead">
            <summary>
            Designates rows as the table's header.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableHeadCell">
            <summary>
            Sets how text and other content are vertically aligned within the object that contains them.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTableRow">
            <summary>
            Specifies a row in a table.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableRow.insertCell(SharpKit.JavaScript.JsNumber)">
            <summary>
            Creates a new cell in the table row (tr), and adds the cell to the cells collection. 
            </summary>
            <param name="index">Integer that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection.</param>
            <returns>Returns the td element object if successful, or null otherwise.</returns>		
        </member>
        <member name="M:SharpKit.Html4.HtmlTableRow.deleteCell(SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes the specified cell (td) from the table row, as well as from the cells collection.
            </summary>
            <param name="iIndex">Integer that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTableRow.deleteCell">
            <summary>
            Removes the last cell (td) from the table row, as well as from the cells collection.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableRow.vAlign">
            <summary>
            String that specifies or receives one of the following values.
            </summary>
            <remarks>
            <list type="table">
            <item><term>middle</term><description>Default. Aligns the text in the middle of the object.</description></item>
            <item><term>baseline</term><description>Aligns the base line of the first line of text with the base lines in adjacent objects.</description></item>
            <item><term>bottom</term><description>Aligns the text at the bottom of the object.</description></item>
            <item><term>top</term><description>Aligns the text at the top of the object.</description></item>
            </list>
            </remarks>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableRow.rowIndex">
            <summary>
            Retrieves the position of the object in the rows collection for the table.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTableRow.sectionRowIndex">
            <summary>
            Retrieves the position of the object in the tBody, tHead, tFoot, or rows collection.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextArea.select">
            <summary>
            Highlights the input area of a form element.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextArea.createTextRange">
            <summary>
            Creates a TextRange object for the element.
            Use a text range to examine and modify the text within an object.
            </summary>
            <returns>Returns a TextRange object if successful, or null otherwise.</returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlTextArea.onchange">
            <summary>
            Fires when the contents of the object or selection have changed.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlTextArea.onselect">
            <summary>
            Fires when the current selection changes.
            </summary>		
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.rows">
            <summary>
            Sets or retrieves the number of horizontal rows contained in the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.cols">
            <summary>
            Sets or retrieves the width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.wrap">
            <summary>
            Sets or retrieves how to handle wordwrapping in the object. 
            Possible values:
            soft	Default. Text is displayed with wordwrapping and submitted without carriage returns and line feeds. 
            hard	Text is displayed with wordwrapping and submitted with soft returns and line feeds. 
            off		Wordwrapping is disabled. The lines appear exactly as the user types them. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.dataFld">
            <summary>
            Sets or retrieves a field of a given data source, as specified by the dataSrc property, to bind to the specified object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.dataSrc">
            <summary>
            Sets or retrieves the source of the data for data binding.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.accept">
            <summary>
            Sets or retrieves a comma-separated list of content types.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.align">
            <summary>
            Sets or retrieves how the object is aligned with adjacent text.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.alt">
            <summary>
            Sets or retrieves a text alternative to the graphic.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.checked">
            <summary>
            Sets or retrieves the state of the check box or radio button.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.complete">
            <summary>
            Retrieves whether the object is fully loaded.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.defaultValue">
            <summary>
            Sets or retrieves the initial contents of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.defaultChecked">
            <summary>
            Sets or retrieves the state of the check box or radio button.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.form">
            <summary>
            Retrieves a reference to the form that the object is embedded in.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.lowsrc">
            <summary>
            Sets or retrieves a lower resolution image to display.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.loop">
            <summary>
            Sets or retrieves the number of times a sound or video clip will loop when activated.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.hspace">
            <summary>
            Sets or retrieves the horizontal margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.vspace">
            <summary>
            Sets or retrieves the vertical margin for the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.useMap">
            <summary>
            Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.readOnly">
            <summary>
            Sets or retrieves the value indicated whether the content of the object is read-only.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.size">
            <summary>
            Sets or retrieves the size of the control.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.src">
            <summary>
            Sets or retrieves a URL to be loaded by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.start">
            <summary>
            Sets or retrieves when a video clip file should begin playing.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.width">
            <summary>
            Sets or retrieves the calculated width of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.status">
            <summary>
            Sets or retrieves the value indicating whether the control is selected.
            Possible values:
            false	Default. Control is not selected.
            true	Control is selected.
            null	Control is not initialized.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.name">
            <summary>
            Sets or retrieves the name of the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.value">
            <summary>
            Retrieves the file name of the input object after the text is set by user input.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.type">
            <summary>
            Retrieves or initially sets the type of input control represented by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextArea.maxLength">
            <summary>
            Sets or retrieves the maximum number of characters that the user can enter in a text control. 
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTextNode">
            <summary>
            Represents a JsString of text as a node in the document hierarchy.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.splitText(SharpKit.JavaScript.JsNumber)">
            <summary>
            Divides a text node at the specified index. 
            </summary>
            <param name="index">A Integer that specifies the index of the JsString that indicates where the separation occurs. If a value is not provided, a new text node with no value is created.</param>
            <returns>This function returns the node containing the text after the offset.
            The text before the offset remains in the original text node.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.splitText">
            <summary>
            Divides a text node at the specified index. 
            </summary>
            <returns>This function returns the node containing the text after the offset.
            The text before the offset remains in the original text node.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.appendData(SharpKit.JavaScript.JsString)">
            <summary>
            Adds a new character JsString to the end of the object.
            </summary>
            <param name="sString"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.deleteData(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Removes a specified range of characters from the object.
            </summary>
            <param name="nOffset">Integer that specifies the offset from which to start.</param>
            <param name="nCount">Integer that specifies the number of characters to remove.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.insertData(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsString)">
            <summary>
            Inserts a new character JsString in the object at a specified offset.
            </summary>
            <param name="nOffset">Integer that specifies the offset from which to start.</param>
            <param name="sString">String that specifies the new character JsString.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.replaceData(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsString)">
            <summary>
            Replaces a specified range of characters in the object with a new character JsString.
            </summary>
            <param name="nOffset">Integer that specifies the offset from which to start.</param>
            <param name="nCount">Integer that specifies the number of characters to replace.</param>
            <param name="sString">String that specifies the new character JsString.</param>
            <remarks>
            f the sum of the nOffset and nCount parameters exceeds the number of characters in the object, then all the characters to the end of the data are replaced.
            </remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextNode.substringData(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Extracts a range of characters from the object.
            </summary>
            <param name="nOffset">Integer that specifies the offset from which to start.</param>
            <param name="nCount">Integer that specifies the number of characters to extract.</param>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextNode.firstChild">
            <summary>
            Retrieves a reference to the first child in the childNodes collection of the object
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextNode.lastChild">
            <summary>
            Retrieves a reference to the last child in the childNodes collection of an object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextNode.length">
            <summary>
            Gets the number of characters in a TextNode object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextNode.data">
            <summary>
            Sets or gets the value of a TextNode object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextNode.wholeText">
            <summary>
            This read-only property is useful if you want to get the entire text at a certain point and don’t want to be bothered by borders between text nodes.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlSelection">
            <summary>
            Represents the active selection, which is a highlighted block of text or other elements in the document that a user or a script can carry out some action on.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlSelection.createRange">
            <summary>
            Creates a TextRange object from the current text selection, or a controlRange collection from a control selection. 
            </summary>
            <returns>Returns the created TextRange object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlSelection.clear">
            <summary>
            Clears the contents of the selection. 
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTextRange">
            <summary>
            Represents text in an HTML element. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.findText(SharpKit.JavaScript.JsString)">
            <summary>
            Searches for text in the document and positions the start and end points of the range to encompass the search JsString.
            </summary>
            <param name="text">String that specifies the text to find.</param>
            <returns>Boolean that returns one of the following values: true The search text was found. false The search text was not found. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.findText(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Searches for text in the document and positions the start and end points of the range to encompass the search JsString.
            </summary>
            <param name="text">String that specifies the text to find.</param>
            <param name="searchScope">Integer that specifies the number of characters to search from the starting point of the range. A positive integer indicates a forward search; a negative integer indicates a backward search. </param>
            <returns>Boolean that returns one of the following values: true The search text was found. false The search text was not found. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.findText(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Searches for text in the document and positions the start and end points of the range to encompass the search JsString.
            </summary>
            <param name="text">String that specifies the text to find.</param>
            <param name="searchScope">Integer that specifies the number of characters to search from the starting point of the range. A positive integer indicates a forward search; a negative integer indicates a backward search. </param>
            <param name="flags">Integer that specifies one or more of the following flags to indicate the type of search: 0 Default. Match partial words. 
            1 Match backwards. 
            2 Match whole words only. 
            4 Match case. 
            131072 Match bytes. 
            536870912 Match diacritical marks. 
            1073741824 Match Kashida character. 
            2147483648 Match AlefHamza character. 
            </param>
            <returns>Boolean that returns one of the following values: true The search text was found. false The search text was not found. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.parentElement">
            <summary>
            Retrieves the parent element for the given text range.
            </summary>
            <returns>Returns the parent element object if successful, or null otherwise.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.select">
            <summary>
            Makes the selection equal to the current object. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.moveToElementText(SharpKit.Html4.HtmlElement)">
            <summary>
            Moves the text range so that the start and end positions of the range encompass the text in the given element.
            </summary>
            <param name="p"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.scrollIntoView(SharpKit.JavaScript.JsBoolean)">
            <summary>
            Causes the object to scroll into view, aligning it either at the top or bottom of the window.
            </summary>
            <param name="bAlignToTop">Boolean that specifies one of the following values:
            													true - Default. Scrolls the object so that top of the object is visible at the top of the window.
            													false - Scrolls the object so that the bottom of the object is visible at the bottom of the window</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.move(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Collapses the given text range and moves the empty range by the given number of units
            </summary>
            <param name="sUnit">Required. String that specifies the units to move, using one of the following values: character, word, sentence, textedit.</param>
            <param name="iCount">Optional. Integer that specifies the number of units to move. This can be positive or negative. The default is 1.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.duplicate">
            <summary>
            Returns a duplicate of the TextRange.
            </summary>
            <returns>Returns a TextRange object.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.setEndPoint(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlTextRange)">
            <summary>
            Sets the endpoint of one range based on the endpoint of another range.
            </summary>
            <param name="sType">Required. String that specifies the endpoint to transfer using one of the following values: startToEnd, startToStart, endToStart, endToEnd</param>
            <param name="oTextRange">Required. TextRange object from which the source endpoint is to be taken.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.pasteHTML(SharpKit.JavaScript.JsString)">
            <summary>
            Pastes HTML text into the given text range, replacing any previous text and HTML elements in the range.
            </summary>
            <param name="sHTMLText">Required. String that specifies the HTML text to paste. The JsString can contain text and any combination of the HTML tags described in HTML Elements.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.moveToPoint(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            Moves the start and end positions of the text range to the given point.
            </summary>
            <param name="x">Required. Integer that specifies the horizontal offset relative to the upper-left corner of the window, in pixels.</param>
            <param name="y">Required. Integer that specifies the vertical offset relative to the upper-left corner of the window, in pixels.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.isEqual(SharpKit.Html4.HtmlTextRange)">
            <summary>
            Returns a value indicating whether the specified range is equal to the current range.
            </summary>
            <param name="oCompareRange">Required. TextRange object to compare with the current TextRange object. </param>
            <returns>Boolean that returns true if oCompareRange is equal to the parent object, otherwise false.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.moveEnd(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Changes the start position of the range.
            </summary>
            <param name="sUnit">Required. String that specifies the units to move, using one of the following values: character, word, sentence, textedit</param>
            <param name="iCount">Optional. Integer that specifies the number of units to move. This can be positive or negative. The default is 1.</param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.moveStart(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Changes the end position of the range.
            </summary>
            <param name="sUnit">Required. String that specifies the units to move, using one of the following values: character, word, sentence, textedit</param>
            <param name="iCount">Optional. Integer that specifies the number of units to move. This can be positive or negative. The default is 1.</param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.collapse(SharpKit.JavaScript.JsBoolean)">
            <summary>
            Moves the insertion point to the beginning or end of the current range. 
            </summary>
            <param name="bStart">Optional. Boolean that specifies one of the following values: 
            <list type="table">
            <item>
            	<term>true</term>
            	<description>Default. Moves the insertion point to the beginning of the text range.</description>
            </item>
            <item>
            	<term>false</term>
            	<description>Moves the insertion point to the end of the text range.</description>
            </item>
            </list>
            </param>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.collapse">
            <summary>
            Moves the insertion point to the beginning or end of the current range. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.inRange(SharpKit.Html4.HtmlTextRange)">
            <summary>
            Returns a value indicating whether one range is contained within another.
            </summary>
            <param name="range2">TextRange object that might be contained</param>
            <returns>Boolean that returns one of the following possible values.
            true oRange is contained within or is equal to the TextRange object on which the method is called. 
            false oRange is not contained within the TextRange object on which the method is called. 
            </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.compareEndPoints(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlTextRange)">
            <summary>
            Compares an end point of a TextRange object with an end point of another range. 
            </summary>
            <param name="type">String that specifies one of the following values: 
            StartToEnd Compare the start of the TextRange object with the end of the oRange parameter. 
            StartToStart Compare the start of the TextRange object with the start of the oRange parameter. 
            EndToStart Compare the end of the TextRange object with the start of the oRange parameter. 
            EndToEnd Compare the end of the TextRange object with the end of the oRange parameter 
            </param>
            <param name="range">TextRange object that specifies the range to compare with the object</param>
            <returns>Returns one of the following possible values:
            -1 The end point of the object is further to the left than the end point of oRange. 
            0 The end point of the object is at the same location as the end point of oRange. 
            1 The end point of the object is further to the right than the end point of oRange.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.getBookmark">
            <summary>
            Retrieves a bookmark (opaque JsString) that can be used with moveToBookmark to return to the same range. 
            </summary>
            <returns>String. Returns the bookmark if successfully retrieved, or null otherwise. </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlTextRange.moveToBookmark(SharpKit.JavaScript.JsString)">
            <summary>
            Moves to a bookmark.
            </summary>
            <param name="bookmark">String that specifies the bookmark to move to. </param>
            <returns>Boolean that returns one of the following possible values:
            true Successfully moved to the bookmark. 
            false Move to the bookmark failed. </returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.boundingLeft">
            <summary>
            Retrieves the distance between the left edge of the rectangle that bounds the TextRange object and the left side of the object that contains the TextRange.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.boundingWidth">
            <summary>
            Retrieves the width of the rectangle that bounds the TextRange object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.boundingTop">
            <summary>
            Retrieves the distance between the top edge of the rectangle that bounds the TextRange object and the top side of the object that contains the TextRange. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.boundingHeight">
            <summary>
            Retrieves the height of the rectangle that bounds the TextRange object. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.offsetTop">
            <summary>
            Retrieves the calculated top position of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.offsetLeft">
            <summary>
            Retrieves the calculated left position of the object relative to the layout or coordinate parent, as specified by the offsetParent property. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.scrollTop">
            <summary>
            Sets or retrieves the distance between the top of the object and the topmost portion of the content currently visible in the window. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.text">
            <summary>
            Sets or retrieves the text contained within the range. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRange.htmlText">
            <summary>
            Retrieves the HTML source as a valid HTML fragment. 
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTextRectangle">
            <summary>
            Represents a rectangle, as returned by the <see cref="M:SharpKit.HtmlModel.HtmlElement.getClientRects"/> method.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTitle">
            <summary>
            Represents the TITLE element of a HTML document
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlUnorderedList">
            <summary>
            Represents an unordered list
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.blur">
            <summary>
            Causes the element to lose focus and fires the onblur event.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.scrollTop">
            <summary>
            Sets or retrieves the distance between the top of the object and the topmost portion of the content currently visible in the window. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.frameElement">
            <summary>
            Retrieves the frame or iframe object that is hosting the window in the parent document.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.document">
            <summary>
            Retrieves the HtmlDocument object that is contained in this window object.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.opener">
            <summary>
            Sets or retrieves a reference to the window that created the current window. 
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.top">
            <summary>
            Retrieves the topmost ancestor window.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.parent">
            <summary>
            Retrieves the parent of the window in the object hierarchy. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.prompt(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Displays a dialog box that prompts the user with a message and an input field.
            </summary>
            <param name="message">Optional. String that specifies the message to display in the dialog box. By default, this parameter is set to "".</param>
            <param name="defaultValue">Optional. String that specifies the default value of the input field. By default, this parameter is set to "undefined".</param>
            <returns>String or Integer. Returns the value typed in by the user.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.prompt(SharpKit.JavaScript.JsString)">
            <summary>
            Displays a dialog box that prompts the user with a message and an input field.
            </summary>
            <param name="message">Optional. String that specifies the message to display in the dialog box. By default, this parameter is set to "".</param>
            <returns>String or Integer. Returns the value typed in by the user.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.prompt">
            <summary>
            Displays a dialog box that prompts the user with a message and an input field.
            </summary>
            <returns>String or Integer. Returns the value typed in by the user.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.setTimeout(SharpKit.JavaScript.JsAction,SharpKit.JavaScript.JsNumber)">
            <summary>
            Invokes a method after a specified number of milliseconds has elapsed. 
            </summary>
            <param name="action">a JsFunction to invoke</param>
            <param name="ms">Delay, in milliseconds, before invoking the method</param>
            <returns>Integer. Returns an identifier that cancels the evaluation with the clearTimeout method.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.setTimeout(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsNumber)">
            <summary>
            Invokes a method after a specified number of milliseconds has elapsed. 
            </summary>
            <param name="code">a JsFunction to invoke</param>
            <param name="ms">Delay, in milliseconds, before invoking the method</param>
            <returns>Integer. Returns an identifier that cancels the evaluation with the clearTimeout method.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.clearTimeout(SharpKit.JavaScript.JsNumber)">
            <summary>
            Cancels a time-out that was set with the setTimeout method. 
            </summary>
            <param name="id">Required. Integer that specifies the time-out setting returned by a previous call to the setTimeout method.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.open">
            <summary>
            Opens a new window and loads the document specified by a given URL.
            </summary>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.open(SharpKit.JavaScript.JsString)">
            <summary>
            Opens a new window and loads the document specified by a given URL.
            </summary>
            <param name="sURL">
            String that specifies the URL of the document to display. 
            If no URL is specified, a new window with about:blank is displayed.
            </param>
            <returns></returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.open(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Opens a new window and loads the document specified by a given URL.
            </summary>
            <param name="sURL">
            String that specifies the URL of the document to display. 
            If no URL is specified, a new window with about:blank is displayed.
            </param>
            <param name="sName">
            Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
            </param>
            <returns>Returns a reference to the new <see cref="T:SharpKit.Web.UI.HtmlMode.HtmlWindow"/> object. Use this reference to access properties and methods on the new window.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.open(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString)">
            <summary>
            Opens a new window and loads the document specified by a given URL.
            </summary>
            <param name="sURL">
            String that specifies the URL of the document to display. 
            If no URL is specified, a new window with about:blank is displayed.
            </param>
            <param name="sName">
            Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
            </param>
            <param name="sFeatures">
            Optional. String that contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). 
            </param>
            <returns>Returns a reference to the new <see cref="T:SharpKit.Web.UI.HtmlMode.HtmlWindow"/> object. Use this reference to access properties and methods on the new window.</returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.open(SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsString,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Opens a new window and loads the document specified by a given URL.
            </summary>
            <param name="sURL">
            String that specifies the URL of the document to display. 
            If no URL is specified, a new window with about:blank is displayed.
            </param>
            <param name="sName">
            Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.
            </param>
            <param name="sFeatures">
            Optional. String that contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). 
            channelmode = { yes | no | 1 | 0 }Specifies whether to display the window in theater mode. The default is no. Internet Explorer 7. channelmode = { yes | 1 } overrides height, width, top, and left values. When active, the Navigation Bar is hidden and the Title Bar is visible. The Channel Band is no longer supported in Internet Explorer 7. Prior to Internet Explorer 7 channelmode = { yes | 1 } displays the Channel Band in theatre mode. 
            directories = { yes | no | 1 | 0 }Specifies whether to add directory buttons. The default is yes. Internet Explorer 7. This feature is no longer supported. 
            fullscreen = { yes | no | 1 | 0 }Specifies whether to display the browser in full-screen mode. The default is no. Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 closes the new window. Internet Explorer 7. A window in full-screen mode does not need to be in theatre mode. Prior to Internet Explorer 7 a window in full-screen mode must also be in theater mode (channelmode).
            height = numberInternet Explorer 7. Sets the height of the window in pixels. The minimum value is 150, and specifies the minimum height of the browser content area. Prior to Internet Explorer 7 the minimum height value is 100. 
            left = numberSpecifies the left position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0. 
            location = { yes | no | 1 | 0 }Internet Explorer 7. Specifies whether to display the navigation bar. The default is yes. Prior to Internet Explorer 7 this feature specifies whether to display the address bar. The Back, Forward, and Stop commands are now located in the Navigation bar. Prior to Internet Explorer 7 navigation commands were located in the toolbar.
            menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. Internet Explorer 7. By default the menu bar is hidden unless revealed by the ALT key. menubar = { no | 0 } prohibits the menubar from appearing even when the Alt key is pressed. The combination of menubar = { no | 0 } and toolbar = { no | 0 } hides the toolbar and disables any additional third-party user interfaces. 
            resizable = { yes | no | 1 | 0 }Specifies whether to display resize handles at the corners of the window. The default is yes. Internet Explorer 7. resizable = { no | 0 } disables tabs in a new window.
            scrollbars = { yes | no | 1 | 0 }Specifies whether to display horizontal and vertical scroll bars. The default is yes.
            status = { yes | no | 1 | 0 }Specifies whether to add a Status Bar at the bottom of the window. The default is yes.
            titlebar = { yes | no | 1 | 0 }Specifies whether to display a Title Bar for the window. The default is yes. Internet Explorer 5.5 and later. This feature is no longer supported. The Title Bar remains visible unless the fullscreen sFeature is active. This parameter is ignored prior to Internet Explorer 5.5. It applies only if the calling application is an HTML Application or a trusted dialog box. 
            toolbar = { yes | no | 1 | 0 }Internet Explorer 7. Specifies whether to display the browser command bar, making buttons such as Favorites Center, Add to Favorites, and Tools available. The default is yes. The combination of menubar = { no | 0 } and toolbar = { no | 0 } turn off the Toolbar and any additional third-party user interfaces. Prior to Internet Explorer 7 the toolbar sFeature specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. 
            top = numberSpecifies the top position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0. 
            width = numberInternet Explorer 7. Sets the width of the window in pixels. The minimum value is 250, and specifies the minimum width of the browsers content area. Prior to Internet Explorer 7 the minimum height value is 100. 
            </param>
            <param name="bReplace">
            Optional. Boolean that specifies whether the sURL creates a new entry or replaces the current entry in the window's history list. This parameter only takes effect if the sURL is loaded into the same window. 
            </param>
            <returns>Returns a reference to the new <see cref="T:SharpKit.Web.UI.HtmlMode.HtmlWindow"/> object. Use this reference to access properties and methods on the new window.</returns>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.closed">
            <summary>
            Retrieves whether the referenced window is closed.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.close">
            <summary>
            Closes the current browser window.
            </summary>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.location">
            <summary>
            Contains information about the current URL. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.alert(System.Object)">
            <summary>
            Displays a dialog box containing an application-defined message. 
            </summary>
            <param name="message">Optional. String that specifies the message to display in the dialog box.</param>
            <remarks>You cannot change the title bar of the Alert dialog box.</remarks>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.confirm(SharpKit.JavaScript.JsString)">
            <summary>
            Displays a confirmation dialog box that contains an optional message as well as OK and Cancel buttons.
            </summary>
            <param name="message">Optional. String that specifies the message to display in the confirmation dialog box. If no value is provided, the dialog box does not contain a message.</param>
            <returns>Boolean. Returns one of the following possible values:
            <list type="table">
            <item>
            	<term>true</term>
            	<description>The user clicked the OK button.</description>
            </item>
            <item>
            	<term>false</term>
            	<description>The user clicked Cancel button.</description>
            </item>
            </list>
            </returns>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.scrollTo(System.Double,System.Double)">
            <summary>
            Scrolls the window to the specified x- and y-offset. 
            </summary>
            <param name="x">Required. Integer that specifies the horizontal scroll offset, in pixels.</param>
            <param name="y">Required. Integer that specifies the vertical scroll offset, in pixels.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.scrollBy(System.Double,System.Double)">
            <summary>
            Causes the window to scroll relative to the current scrolled position by the specified x- and y-pixel offset. 
            </summary>
            <param name="x">Required. Integer that specifies the horizontal scroll offset, in pixels. Positive values scroll the window right, and negative values scroll it left.</param>
            <param name="y">Required. Integer that specifies the vertical scroll offset, in pixels. Positive values scroll the window down, and negative values scroll it up.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.focus">
            <summary>
            Causes the element to receive the focus and executes the code specified by the onfocus event. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.attachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Binds the specified function to an event, so that the function gets called whenever the event fires on the object.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.addEventListener(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Binds the specified function to an event, so that the function gets called whenever the event fires on the object.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
            <param name="useCapture"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.detachEvent(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler)">
            <summary>
            Unbinds the specified function from the event, so that the function stops receiving notifications when the event fires.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.removeEventListener(SharpKit.JavaScript.JsString,SharpKit.Html4.HtmlDomEventHandler,SharpKit.JavaScript.JsBoolean)">
            <summary>
            Unbinds the specified function from the event, so that the function stops receiving notifications when the event fires.
            </summary>
            <param name="eventName"></param>
            <param name="handler"></param>
            <param name="useCapture"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.getComputedStyle(SharpKit.Html4.HtmlElement,SharpKit.JavaScript.JsString)">
            <summary>
            Returns the computed style of an element. Computed style represents the final computed values of all CSS properties for the element.
            </summary>
            <param name="el">an element</param>
            <param name="pseudoElt">a JsString specifying the pseudo-element to match. Must be null for regular elements.</param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.getComputedStyle(SharpKit.Html4.HtmlElement)">
            <summary>
            Returns the computed style of an element. Computed style represents the final computed values of all CSS properties for the element.
            </summary>
            <param name="el">an element</param>
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onafterprint">
            <summary>
            Fires on the object immediately after its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onbeforeprint">
            <summary>
            Fires on the object before its associated document prints or previews for printing.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onbeforeunload">
            <summary>
            Fires prior to a page being unloaded.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onblur">
            <summary>
            Fires when the object loses the input focus.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onerror">
            <summary>
            Fires when an error occurs during object loading.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onfocus">
            <summary>
            Fires when the object receives focus.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onhashchange">
            <summary>
            Raised when there are changes to the portion of a URL that follows the number sign (#).
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onhelp">
            <summary>
            Fires when the user presses the F1 key while the browser is the active window.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onload">
            <summary>
            Fires immediately after the browser loads the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onresize">
            <summary>
            Fires when the size of the object is about to change.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onscroll">
            <summary>
            Fires when the user repositions the scroll box in the scroll bar on the object.
            </summary>		
        </member>
        <member name="F:SharpKit.Html4.HtmlWindow.onunload">
            <summary>
            Fires immediately before the object is unloaded.
            </summary>		
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.moveTo(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            moves a window's left and top edge to the specified coordinates.
            </summary>
            <param name="numX"></param>
            <param name="numY"></param>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindow.moveBy(SharpKit.JavaScript.JsNumber,SharpKit.JavaScript.JsNumber)">
            <summary>
            method moves a window a specified number of pixels relative to its current coordinates.
            </summary>
            <param name="numX"></param>
            <param name="numY"></param>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.screenLeft">
            <summary>
            Retrieves the x-coordinate of the upper left-hand corner of the browser's client area, relative to the upper left-hand corner of the screen. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.screenTop">
            <summary>
            Retrieves the y-coordinate of the top corner of the browser's client area, relative to the top corner of the screen.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.clipboardData">
            <summary>
            Provides access to predefined clipboard formats for use in editing operations.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.screen">
            <summary>
            Contains information about the client's screen and rendering capabilities.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.innerWidth">
            <summary>
            The dimensions of the viewport (interior of the browser window) 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.innerHeight">
            <summary>
            The dimensions of the viewport (interior of the browser window) 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.outerWidth">
            <summary>
            The dimensions of the entire browser window (including taskbars and such) 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.outerHeight">
            <summary>
            The dimensions of the entire browser window (including taskbars and such) 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.pageXOffset">
            <summary>
            The amount of pixels the entire pages has been scrolled 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.pageYOffset">
            <summary>
            The amount of pixels the entire pages has been scrolled 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.screenX">
            <summary>
            The position of the browser window on the screen
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindow.screenY">
            <summary>
            The position of the browser window on the screen
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlWindowLocation">
            <summary>
            Contains information about the current URL. 
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindowLocation.reload">
            <summary>
            reloads the current page.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindowLocation.assign(SharpKit.JavaScript.JsString)">
            <summary>
            Replaces the current document by loading another document at the specified URL.
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlWindowLocation.replace(SharpKit.JavaScript.JsString)">
             <summary>
            Replaces the current document by loading another document at the specified URL.
             </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.href">
            <summary>
            Sets or retrieves the entire URL as a JsString. 
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.hash">
            <summary>
            Sets or retrieves the subsection of the href property that follows the number sign (#).
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.host">
            <summary>
            Sets or retrieves the hostname and port number of the location or URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.hostname">
            <summary>
            Sets or retrieves the host name part of the location or URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.pathname">
            <summary>
            Sets or retrieves the file name or path specified by the object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.port">
            <summary>
            Sets or retrieves the port number associated with a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.protocol">
            <summary>
            Sets or retrieves the protocol portion of a URL.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlWindowLocation.search">
            <summary>
            Sets or retrieves the substring of the href property that follows the question mark.
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlNodeCollection">
            <summary>
            Represents a collection of HtmlNode objects
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlNodeCollection`1">
            <summary>
            Represents a generic collection of HtmlNode objects
            </summary>
        </member>
        <member name="M:SharpKit.Html4.HtmlNodeCollection`1.item(SharpKit.JavaScript.JsNumber)">
            <summary>
            Access an item in an array
            </summary>
            <returns></returns>
        </member>
        <member name="T:SharpKit.Html4.HtmlElementCollection">
            <summary>
            Represents a collection of HtmlElement objects
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlTextRectangleCollection">
            <summary>
            Represents a collection of rectangles, as returned by the <see cref="M:SharpKit.HtmlModel.HtmlElement.getClientRects"/> method.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlTextRectangleCollection.Item(SharpKit.JavaScript.JsNumber)">
            <summary>
            Gets or sets the rectangle at the Nth position
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="T:SharpKit.Html4.HtmlGenericCollection`1">
            <summary>
            Represents a generic collection of HtmlNode objects
            </summary>
        </member>
        <member name="T:SharpKit.Html4.HtmlAttributeCollection">
            <summary>
            A collection of attributes of an object.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAttributeCollection.length">
            <summary>
            Sets or retrieves the number of objects in a collection.
            </summary>
        </member>
        <member name="P:SharpKit.Html4.HtmlAttributeCollection.Item(SharpKit.JavaScript.JsNumber)">
            <summary>
            Gets an attribute for an element from the attributes collection.
            </summary>
            <param name="index">Integer that specifies the attribute. It is the zero-based index of the attribute to be retrieved from the attributes collection.</param>
            <returns>Returns an attribute for an element from the attributes collection</returns>
        </member>
        <member name="P:SharpKit.Html4.HtmlAttributeCollection.Item(SharpKit.JavaScript.JsString)">
            <summary>
            Gets an attribute for an element from the attributes collection.
            </summary>
            <param name="name">String that specifies the attribute. The attribute whose name matches the JsString is retrieved.</param>
            <returns>Returns an attribute for an element from the attributes collection</returns>
        </member>
        <member name="T:SharpKit.Html4.History">
            <summary>
            interface History { readonly attribute long length ; void go (in optional long delta); void back (); void forward (); void pushState (in any data, in DOMString title, in optional DOMString url); void replaceState (in any data, in DOMString title, in optional DOMString url); };
            </summary>
        </member>
    </members>
</doc>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect SharpKit
Israel Israel
Founder of SharpKit

Comments and Discussions