:: com :: sun :: star :: form :: component ::

service HTMLForm
Description
This service specifies the special kind of Form s for HTML documents.

An HTMLForm fulfills the specification of forms in HTML. It supplies the possibility of submitting or resetting the contents of a form. For more information on HTML forms, please see the documentation of HTML.

Developers Guide
13.4.1 Forms - Form Components - Basics - Forms
13.4.2 Forms - Form Components - HTML Forms

Included Services
Form
This service specifies a form which is a group of FormComponents.
Exported Interfaces
::com::sun::star::form::XReset
Description
resets the control.
::com::sun::star::form::XSubmit
Description
allows to submit changes.

When a form is submitted, the data contained in the form is sent to the target URL as a series of name/value pairs. The name portion of each pair is the name of a form component as specified by its NAME attribute. In most cases the value portion is the value displayed by the element, for example, the text displayed in a text field.

Properties' Summary
TargetFrame describes the frame, where to open the document specified by the TargetURL.
TargetURL specifies the URL, which should be used for submission.
SubmitMethod specifies the kind of submission.
SubmitEncoding specifies the kind of encoding for submission.
Properties' Details
TargetFrame
string TargetFrame;
Description
describes the frame, where to open the document specified by the TargetURL.
TargetURL
string TargetURL;
Description
specifies the URL, which should be used for submission.
SubmitMethod
::com::sun::star::form::FormSubmitMethod SubmitMethod;
Description
specifies the kind of submission.
SubmitEncoding
::com::sun::star::form::FormSubmitEncoding SubmitEncoding;
Description
specifies the kind of encoding for submission.

 
Top of Page