:: 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

Included Services
Form
(referenced entity's summary:)
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
string
TargetFrame
describes the frame, where to open the document specified by the TargetURL.  
string
TargetURL
specifies the URL, which should be used for submission.  
::com::sun::star::form::FormSubmitMethod
SubmitMethod
specifies the kind of submission.  
::com::sun::star::form::FormSubmitEncoding
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