Class HtmlAttributesGlobal
- Namespace
- Contensive.CPBase.BaseModels
- Assembly
- CPBase.dll
Attributes avalable for all html5 elements
public class HtmlAttributesGlobal
- Inheritance
-
HtmlAttributesGlobal
- Derived
- Inherited Members
Properties
accesskey
Specifies a shortcut key to activate/focus an element
public string accesskey { get; set; }
Property Value
class
Specifies one or more classnames for an element (refers to a class in a style sheet)
public string @class { get; set; }
Property Value
contenteditable
Specifies whether the content of an element is editable or not
public bool contenteditable { get; set; }
Property Value
data
Used to store custom data private to the page or application
public List<KeyValuePair<string, string>> data { get; set; }
Property Value
dir
Specifies the text direction for the content in an element
public string dir { get; set; }
Property Value
draggable
Specifies whether an element is draggable or not
public bool draggable { get; set; }
Property Value
dropzone
Specifies whether the dragged data is copied, moved, or linked, when dropped
public string dropzone { get; set; }
Property Value
hidden
Specifies that an element is not yet, or is no longer, relevant
public bool hidden { get; set; }
Property Value
id
Specifies a unique id for an element
public string id { get; set; }
Property Value
lang
Specifies the language of the element's content
public string lang { get; set; }
Property Value
onabort
public string onabort { get; set; }
Property Value
onafterprint
public string onafterprint { get; set; }
Property Value
onbeforeprint
public string onbeforeprint { get; set; }
Property Value
onbeforeunload
public string onbeforeunload { get; set; }
Property Value
onblur
public string onblur { get; set; }
Property Value
oncanplay
public string oncanplay { get; set; }
Property Value
oncanplaythrough
public string oncanplaythrough { get; set; }
Property Value
onchange
public string onchange { get; set; }
Property Value
onclick
public string onclick { get; set; }
Property Value
oncontextmenu
public string oncontextmenu { get; set; }
Property Value
oncopy
public string oncopy { get; set; }
Property Value
oncuechange
public string oncuechange { get; set; }
Property Value
oncut
public string oncut { get; set; }
Property Value
ondblclick
public string ondblclick { get; set; }
Property Value
ondrag
public string ondrag { get; set; }
Property Value
ondragend
public string ondragend { get; set; }
Property Value
ondragenter
public string ondragenter { get; set; }
Property Value
ondragleave
public string ondragleave { get; set; }
Property Value
ondragover
public string ondragover { get; set; }
Property Value
ondragstart
public string ondragstart { get; set; }
Property Value
ondrop
public string ondrop { get; set; }
Property Value
ondurationchange
public string ondurationchange { get; set; }
Property Value
onemptied
public string onemptied { get; set; }
Property Value
onended
public string onended { get; set; }
Property Value
onerror
public string onerror { get; set; }
Property Value
onfocus
public string onfocus { get; set; }
Property Value
onhashchange
public string onhashchange { get; set; }
Property Value
oninput
public string oninput { get; set; }
Property Value
oninvalid
public string oninvalid { get; set; }
Property Value
onkeydown
public string onkeydown { get; set; }
Property Value
onkeypress
public string onkeypress { get; set; }
Property Value
onkeyup
public string onkeyup { get; set; }
Property Value
onload
public string onload { get; set; }
Property Value
onloadeddata
public string onloadeddata { get; set; }
Property Value
onloadedmetadata
public string onloadedmetadata { get; set; }
Property Value
onloadstart
public string onloadstart { get; set; }
Property Value
onmessage
public string onmessage { get; set; }
Property Value
onmousedown
public string onmousedown { get; set; }
Property Value
onmousemove
public string onmousemove { get; set; }
Property Value
onmouseout
public string onmouseout { get; set; }
Property Value
onmouseover
public string onmouseover { get; set; }
Property Value
onmouseup
public string onmouseup { get; set; }
Property Value
onmousewheel
public string onmousewheel { get; set; }
Property Value
onoffline
public string onoffline { get; set; }
Property Value
ononline
public string ononline { get; set; }
Property Value
onpagehide
public string onpagehide { get; set; }
Property Value
onpageshow
public string onpageshow { get; set; }
Property Value
onpaste
public string onpaste { get; set; }
Property Value
onpause
public string onpause { get; set; }
Property Value
onplay
public string onplay { get; set; }
Property Value
onplaying
public string onplaying { get; set; }
Property Value
onpopstate
public string onpopstate { get; set; }
Property Value
onprogress
public string onprogress { get; set; }
Property Value
onratechange
public string onratechange { get; set; }
Property Value
onreset
public string onreset { get; set; }
Property Value
onresize
public string onresize { get; set; }
Property Value
onscroll
public string onscroll { get; set; }
Property Value
onsearch
public string onsearch { get; set; }
Property Value
onseeked
public string onseeked { get; set; }
Property Value
onseeking
public string onseeking { get; set; }
Property Value
onselect
public string onselect { get; set; }
Property Value
onstalled
public string onstalled { get; set; }
Property Value
onstorage
public string onstorage { get; set; }
Property Value
onsubmit
public string onsubmit { get; set; }
Property Value
onsuspend
public string onsuspend { get; set; }
Property Value
ontimeupdate
public string ontimeupdate { get; set; }
Property Value
onunload
public string onunload { get; set; }
Property Value
onvolumechange
public string onvolumechange { get; set; }
Property Value
onwaiting
public string onwaiting { get; set; }
Property Value
onwheel
public string onwheel { get; set; }
Property Value
spellcheck
Specifies whether the element is to have its spelling and grammar checked or not
public bool spellcheck { get; set; }
Property Value
style
Specifies an inline CSS style for an element
public string style { get; set; }
Property Value
tabindex
Specifies the tabbing order of an element
public string tabindex { get; set; }
Property Value
title
Specifies extra information about an element
public string title { get; set; }
Property Value
translate
Specifies whether the content of an element should be translated or not
public bool translate { get; set; }