com.aspose.html

Class HTMLTextAreaElement

    • Constructor Detail

      • HTMLTextAreaElement

        public HTMLTextAreaElement(com.aspose.html.dom.DOMName name,
                                   Document doc)

        Initializes a new instance of the HTMLTextAreaElement class.

        Parameters:
        name - The DOM name.
        doc - The document.
    • Method Detail

      • getDefaultValue

        @DOMNameAttribute(name="defaultValue")
        public String getDefaultValue()

        Represents the contents of the element. The value of this attribute does not change if the contents of the corresponding form control, in an interactive user agent, changes.

      • setDefaultValue

        @DOMNameAttribute(name="defaultValue")
        public void setDefaultValue(String value)

        Represents the contents of the element. The value of this attribute does not change if the contents of the corresponding form control, in an interactive user agent, changes.

      • getAccessKey

        @DOMNameAttribute(name="accessKey")
        public String getAccessKey()

        A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.01.

      • setAccessKey

        @DOMNameAttribute(name="accessKey")
        public void setAccessKey(String value)

        A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.01.

      • getCols

        @DOMNameAttribute(name="cols")
        public int getCols()

        Width of control (in characters). See the cols attribute definition in HTML 4.01.

      • setCols

        @DOMNameAttribute(name="cols")
        public void setCols(int value)

        Width of control (in characters). See the cols attribute definition in HTML 4.01.

      • getDisabled

        @DOMNameAttribute(name="disabled")
        public boolean getDisabled()

        The control is unavailable in this context. See the disabled attribute definition in HTML 4.01.

      • setDisabled

        @DOMNameAttribute(name="disabled")
        public void setDisabled(boolean value)

        The control is unavailable in this context. See the disabled attribute definition in HTML 4.01.

      • getName

        @DOMNameAttribute(name="name")
        public String getName()

        Form control or object name when submitted with a form. See the name attribute definition in HTML 4.01.

      • setName

        @DOMNameAttribute(name="name")
        public void setName(String value)

        Form control or object name when submitted with a form. See the name attribute definition in HTML 4.01.

      • getReadOnly

        @DOMNameAttribute(name="readOnly")
        public boolean getReadOnly()

        This control is read-only. See the readonly attribute definition in HTML 4.01.

      • setReadOnly

        @DOMNameAttribute(name="readOnly")
        public void setReadOnly(boolean value)

        This control is read-only. See the readonly attribute definition in HTML 4.01.

      • getRows

        @DOMNameAttribute(name="rows")
        public int getRows()

        Number of text rows. See the rows attribute definition in HTML 4.01.

      • setRows

        @DOMNameAttribute(name="rows")
        public void setRows(int value)

        Number of text rows. See the rows attribute definition in HTML 4.01.

      • getTabIndex

        @DOMNameAttribute(name="tabIndex")
        public int getTabIndex()

        Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.01.

      • setTabIndex

        @DOMNameAttribute(name="tabIndex")
        public void setTabIndex(int value)

        Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.01.

      • getValue

        @DOMNameAttribute(name="value")
        public String getValue()

        Represents the current contents of the corresponding form control, in an interactive user agent. Changing this attribute changes the contents of the form control, but does not change the contents of the element. If the entirety of the data can not fit into a single DOMString, the implementation may truncate the data.

      • setValue

        @DOMNameAttribute(name="value")
        public void setValue(String value)

        Represents the current contents of the corresponding form control, in an interactive user agent. Changing this attribute changes the contents of the form control, but does not change the contents of the element. If the entirety of the data can not fit into a single DOMString, the implementation may truncate the data.