This represents the language tag seen at the top of a language file.
|
LanguageGroup | group [get] |
| The group being loaded. Can be null if we're not in a group context. More...
|
|
virtual bool | IsSelfClosing [get] |
| True if this element is 'self closing' - i.e. the end tag can be omitted. More...
|
|
virtual bool | NonStandard [get] |
| True if this property is non-standard. More...
|
|
virtual float | DragStartDistance [get] |
| The minimum distance this element must be dragged in order to trigger a drag start event. More...
|
|
virtual bool | OkToBeOpenAfterBody [get] |
| True if this element is ok to be open when /body shows up. html is one example. More...
|
|
virtual bool | IsSpecial [get] |
| True if this element has special parsing rules. http://w3c.github.io/html/syntax.html#special More...
|
|
virtual bool | IsParserScope [get] |
| True if this element indicates being 'in scope'. http://w3c.github.io/html/syntax.html#in-scope More...
|
|
virtual bool | IsTableRowContext [get] |
| True if this element is a table row context. More...
|
|
virtual bool | IsTableBodyContext [get] |
| True if this element is a table body context. More...
|
|
virtual bool | IsTableContext [get] |
| True if this element is a table context. More...
|
|
virtual bool | IsTableStructure [get] |
| True if this element is part of table structure, except for td. More...
|
|
virtual ImplicitEndMode | ImplicitEndAllowed [get] |
| The mode used for an implicit end (see http://w3c.github.io/html/syntax.html#generate-implied-end-tags). More...
|
|
override string | textContent [get, set] |
|
string | outerHTML [get, set] |
| The html of this element including the element itself. More...
|
|
virtual string | innerHTML [get, set] |
| Gets or sets the innerHTML of this element. More...
|
|
virtual bool | Internal [get] |
| True if this tag is for internal use only. More...
|
|
string | PropertyString [get] |
| A string built from the properties only. More...
|
|
override string | nodeName [get] |
| The name for this type of node. More...
|
|
string | tagName [get] |
| The lowercase tag name. More...
|
|
override string | localName [get] |
| The local name of this node. More...
|
|
override ushort | nodeType [get] |
| The type of element that this is. More...
|
|
KeyboardEventDelegate | onkeyup [get, set] |
| Called when this element receives a keyup. More...
|
|
KeyboardEventDelegate | onkeydown [get, set] |
| Called when this element receives a keydown. More...
|
|
MouseEventDelegate | onmouseup [get, set] |
| Called when this element receives a mouseup. More...
|
|
MouseEventDelegate | onmouseout [get, set] |
| Called when this element receives a mouseout. More...
|
|
MouseEventDelegate | onmousedown [get, set] |
| Called when this element receives a mousedown. More...
|
|
MouseEventDelegate | onmousemove [get, set] |
| Called when this element receives a mousemove. Note that it must be focused. More...
|
|
MouseEventDelegate | onmouseover [get, set] |
| Called when this element receives a mouseover. More...
|
|
FormEventDelegate | onreset [get, set] |
| Called when a form is reset. More...
|
|
FormEventDelegate | onsubmit [get, set] |
| Called when a form is submitted. More...
|
|
UIEventDelegate | onload [get, set] |
| Called when this element receives a load event (e.g. iframe). More...
|
|
FocusEventDelegate | onfocus [get, set] |
| Called when this element gets focused. More...
|
|
FocusEventDelegate | onfocusin [get, set] |
| Called just before this element is focused. More...
|
|
FocusEventDelegate | onfocusout [get, set] |
| Called just before this element is blurred. More...
|
|
FocusEventDelegate | onblur [get, set] |
| Called when this element is unfocused (blurred). More...
|
|
MouseEventDelegate | onclick [get, set] |
| Called when this element receives a full click. More...
|
|
DomEventDelegate | onchange [get, set] |
| Used by e.g. input, select etc. Called when its value changes. More...
|
|
ContextMenus.ContextEventDelegate | oncontextmenu [get, set] |
| Called when this element receives a contextmenu request. More...
|
|
virtual Css.ElementStyle | style [get] |
| This elements style. More...
|
|
HtmlElement | htmlParentNode [get] |
| The parent as a HtmlElement (convenience method). More...
|
|
HtmlDocument | htmlDocument [get] |
| The ownerDocument as a Html document. More...
|
|
string | this[string property] [get, set] |
| Gets or sets the named attribute of this tag. An attribute is e.g. style="display:none;". More...
|
|
virtual bool | ClearBackground [get] |
| True if this node should clear the background state of the renderer. The background state essentially declares if this nodes background-color or background-image represents the viewports background. In HTML, both the body tag and root html tag can represent the background, so the root HTML node doesn't clear the state to allow body to set it if needed. So, only the root html element overrides this (and this is better than checking for .Tag=="html"). More...
|
|
override EventTarget | eventTargetParentNode [get] |
| The parent node as used by EventTarget during capture. Can be null. More...
|
|
Document | document [get] |
| The document that this node belongs to. More...
|
|
virtual string | nodeName [get] |
| The name for this type of node. More...
|
|
virtual string | nodeValue [get, set] |
| The value of this node. More...
|
|
virtual ushort | nodeType [get] |
| The type of element that this is. More...
|
|
Node | firstChild [get] |
| The first child of this element. More...
|
|
Node | lastChild [get] |
| The last child of this element. More...
|
|
Node | previousSibling [get] |
| The sibling before this one under this elements parent. Null if this is the first child. More...
|
|
Node | nextSibling [get] |
| The sibling following this one under this elements parent. Null if this is the last child. More...
|
|
Element | previousElementSibling [get] |
| The next non-text node sibling. More...
|
|
Element | nextElementSibling [get] |
| The next non-text node sibling. More...
|
|
virtual Document | ownerDocument [get] |
| The owner document. More...
|
|
virtual string | localName [get] |
| The local name of this node. More...
|
|
virtual string | baseURI [get] |
| The base URI. More...
|
|
string | namespaceURI [get] |
| The namespace this node is in. More...
|
|
string | innerText [get, set] |
| Gets or sets the text content of this element (i.e. the content without any html.). Setting this is good for preventing any html injection as it will be taken literally. More...
|
|
bool | isRooted [get] |
| True if this element is in any document and is rooted. More...
|
|
string | outerText [get, set] |
| Gets or sets the text content of this element (i.e. the content without any html.). Setting this is good for preventing any html injection as it will be taken literally. More...
|
|
virtual string | textContent [get, set] |
| Gets or sets the text content of this element (i.e. the content without any html.). Setting this is good for preventing any html injection as it will be taken literally. More...
|
|
Element | parentElement [get] |
| Gets the parent html element of this element. More...
|
|
string | prefix [get] |
| The prefix (namespace). More...
|
|
Node | rootNode [get] |
| The root node. More...
|
|
NodeList | childNodes [get] |
| The set of children of this element. More...
|
|
HTMLCollection | children [get] |
| The set of children elements. More...
|
|
int | sameNameIndex [get] |
| Gets the index of this element in it's parents childNodes in terms of child elements that have the same name (tag) as this one. More...
|
|
int | childIndex [get] |
| Gets the index of this element in it's parents childNodes. More...
|
|
int | childElementCount [get] |
| The number of child elements of this element. More...
|
|
int | childCount [get] |
| The number of children of this element. More...
|
|
Element | firstElementChild [get] |
| The first non-text child of this element. More...
|
|
Element | lastElementChild [get] |
| The last non-text child of this element. More...
|
|
string | id [get, set] |
| The ID of this element. Won't ever be null. More...
|
|
string | className [get, set] |
| The css class attribute of this element. Won't ever be null. Note that it can potentially hold multiple names, e.g. "red button". Use classList for those. More...
|
|
Node | parentNode [get] |
| This nodes parent node. More...
|
|
DOMTokenList | classList [get] |
| The set of class names. More...
|
|
static DispatchStack | dispatchStackRef [get] |
| The active dispatch stack. Use event.deepPath to access it (available during dispatch only). More...
|
|
virtual EventTarget | eventTargetParentNode [get] |
| The parent node as used by EventTarget during capture. Can be null. More...
|
|
virtual NodeList | eventTargetChildren [get] |
| The childNode set as used by EventTarget during capture. Can be null. More...
|
|
NodeList | childNodes [get] |
| The kids of this node. More...
|
|
Node | parentNode [get] |
| The parent node. More...
|
|
Element | parentElement [get] |
| The parent element. More...
|
|
int | childCount [get] |
| The number of kids of this node. More...
|
|
int | childElementCount [get] |
| The number of child elements of this parent. More...
|
|
HTMLCollection | children [get] |
| The kids of this node. More...
|
|
Element | firstElementChild [get] |
| The first element child of this node. More...
|
|
Element | lastElementChild [get] |
| The last element child of this node. More...
|
|
|
virtual void | OnChildrenLoaded () |
| Called when this elements children are fully loaded. More...
|
|
virtual void | OnTagLoaded () |
| Called when the tag is instanced and the element plus its attributes and kids have been fully parsed. More...
|
|
Element | GetParentByTagName (string tag) |
| Gets a parent element by tag name. More...
|
|
virtual bool | OnDrag (PowerUI.DragEvent e) |
| Called repeatedly when this element is being dragged. More...
|
|
virtual int | SetLexerMode (bool last, HtmlLexer lexer) |
| When the given lexer resets, this is called. More...
|
|
override Node | cloneNode (bool deep) |
| Clones this node. More...
|
|
virtual bool | OnLexerCloseNode (HtmlLexer lexer, int mode) |
| Called when a close tag of this element has been created and is being added to the given lexer. Note that this method must not use 'this'. It is most often called as if it was a static method. It's not a static method so it can use inheritence and, as a result, be easily used on the element objects on the current open element stack. More...
|
|
void | before (Node node) |
| Inserts a node before this element. More...
|
|
void | after (Node node) |
| Inserts an element after this element. More...
|
|
void | before (string html) |
| Inserts html before this element. More...
|
|
void | after (string html) |
| Inserts html after this element. More...
|
|
override string | ToString () |
|
void | insertAdjacentHTML (string positionName, string html) |
| Inserts HTML at the given position name. More...
|
|
void | appendTextContent (string text) |
| Appends the given literal text to the content of this element. This is good for preventing html injection as the text will be taken literally. More...
|
|
void | append (string html) |
| Appends the given html text to the content of this element. More...
|
|
void | append (Element child) |
| Appends the given child element to the content of this element. More...
|
|
void | appendInnerHTML (string text) |
| Appends the given html text to the content of this element. More...
|
|
void | insertInnerHTML (int index, string text) |
| Inserts HTML into this element at the given index. Pushes any elements at the given index over. More...
|
|
void | prepend (Element child) |
| Prepends the given child element to the content of this element, adding it as the first child. More...
|
|
void | prepend (string text) |
| Prepends the given html text to the content of this element, adding it as the first child. More...
|
|
void | prependInnerHTML (string text) |
| Prepends the given html text to the content of this element, adding it as the first child. More...
|
|
override bool | isEqualNode (Node other) |
| Tests whether two nodes are the same by attribute comparison. More...
|
|
void | GetPropertyString (System.Text.StringBuilder result) |
| A string built from the properties only. More...
|
|
override void | ToString (System.Text.StringBuilder result) |
| Gets a string representation of this element. More...
|
|
bool | isChild (Node childElement) |
| Checks if the given element is a child of this element. More...
|
|
void | AddToAttributeLookups () |
| Adds this element to all fast lookups. More...
|
|
void | AddToAttributeLookup (string attrib, AttributeLookup lookup) |
| Adds this element to the given attribute lookup. More...
|
|
AttributeNode | getAttributeNodeNS (string ns, string name) |
| Get the value of an attribute by name. Generally element[name] is better. More...
|
|
void | setAttributeNodeNS (AttributeNode node) |
| Set the named attribute. element[name] is generally better. More...
|
|
AttributeNode | getAttributeNode (string name) |
| Get the value of an attribute by name. Generally element[name] is better. More...
|
|
bool | hasAttributeNode (AttributeNode node) |
| Does this element have the named attribute? element[name] is generally better. More...
|
|
void | setAttributeNode (AttributeNode node) |
| Set the named attribute. element[name] is generally better. More...
|
|
void | removeAttributeNode (AttributeNode node) |
| Remove the named attribute. element[name] is generally better. More...
|
|
string | getAttributeNS (string ns, string name) |
| Get the value of an attribute by name. Generally element[name] is better. More...
|
|
bool | hasAttributeNS (string ns, string name) |
| Does this element have the named attribute? element[name] is generally better. More...
|
|
void | setAttributeNS (string ns, string name, string value) |
| Set the named attribute. element[name] is generally better. More...
|
|
void | removeAttributeNS (string ns, string name) |
| Remove the named attribute. element[name] is generally better. More...
|
|
string | getAttribute (string name) |
| Get the value of an attribute by name. Generally element[name] is better. More...
|
|
bool | hasAttribute (string name) |
| Does this element have the named attribute? element[name] is generally better. More...
|
|
void | setAttribute (string name, string value) |
| Set the named attribute. element[name] is generally better. More...
|
|
void | removeAttribute (string name) |
| Remove the named attribute. element[name] is generally better. More...
|
|
void | cue () |
| Cues the element to advance any paused PowerSlide slides. More...
|
|
bool | matches (string selectorText) |
| True if this element matches the given selector. More...
|
|
static bool | PropertiesEqual (Dictionary< string, string > a, Dictionary< string, string > b) |
| True if two args sets are equal. More...
|
|
string | Tag |
| The raw tag as a string. e.g. "div","span" etc in html. More...
|
|
Node | ParentNode |
| Internal use only. The parent of this element. Use PowerUI.HtmlElement.parentNode instead. More...
|
|
bool | IsRebuildingChildren |
| This is true if the childNodes are being rebuilt. True for a tiny amount of time, but prevents collisions with the renderer thread. More...
|
|
T | GetFirstDelegate< T > (string name) |
| Gets the first delegate event handler for the given event name. More...
|
|
virtual bool | HandleLocalEvent (Event e, bool bubblePhase) |
| Handles triggering event handlers here. Elements can (and in PowerUI's case, do) override this. PowerUI overrides it to handle e.g. onclick="" attributes too. More...
|
|
bool | GetBoolAttribute (string name) |
| Gets an attribute as a boolean value. More...
|
|
void | SetBoolAttribute (string name, bool value) |
| Sets an attribute as a boolean value. More...
|
|
bool | SelfClosing |
| True if this tag closes itself and doesn't need an end ("/div" for example) tag. More...
|
|
static DispatchStack | PooledStack |
| The current head of the pooled dispatched stacks. More...
|
|