mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-13 06:43:52 +00:00
Adds TextAreaElement type.
This commit is contained in:
committed by
Andreas Rumpf
parent
5fcfc43a20
commit
6b5ad56ab3
@@ -176,6 +176,12 @@ type
|
||||
text*: cstring
|
||||
value*: cstring
|
||||
|
||||
TextAreaElement* = ref object of ElementObj
|
||||
value*: cstring
|
||||
selectionStart*, selectionEnd*: int
|
||||
selectionDirection*: cstring
|
||||
rows*, cols*: int
|
||||
|
||||
FormElement* = ref FormObj
|
||||
FormObj {.importc.} = object of ElementObj
|
||||
action*: cstring
|
||||
@@ -502,7 +508,7 @@ proc removeAttributeNode*(n, attr: Node)
|
||||
proc removeChild*(n, child: Node)
|
||||
proc replaceChild*(n, newNode, oldNode: Node)
|
||||
proc replaceData*(n: Node, start, len: int, text: cstring)
|
||||
proc scrollIntoView*(n: Node)
|
||||
proc scrollIntoView*(n: Node, alignToTop: bool=true)
|
||||
proc setAttribute*(n: Node, name, value: cstring)
|
||||
proc setAttributeNode*(n: Node, attr: Node)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user