Top   Module   Use   Manual   Index 
 INCLUDED SERVICES | EXPORTED INTERFACES | PROPERTIES' SUMMARY | PROPERTIES' DETAILS 

com :: sun :: star :: document ::

service OfficeDocument

Description
This abstract service specifies a storable and printable document.

All major document-like components should support this service.



Exported Interfaces

com::sun::star::frame::XStorable
Description
offers a simple way to store a component to an URL.
com::sun::star::view::XPrintable
Description
offers printing functionality.
com::sun::star::document::XEventsSupplier
[ OPTIONAL ]
Description
access to bound event handlers. @optional

Properties' Summary

AutomaticControlFocus [ OPTIONAL ]
controls the focus behaviour of the form controls in the document
ApplyFormDesignMode [ OPTIONAL ]
controls the initial (on-load) behavior of the form controls in the document

Properties' Details

AutomaticControlFocus
 
boolean AutomaticControlFocus;
[ OPTIONAL ]
Description
controls the focus behaviour of the form controls in the document

If this flag is set to true , any view belonging to the document should focus the first control in the document.

With this, you may control if your document works primarily as a form document.

ApplyFormDesignMode
 
boolean ApplyFormDesignMode;
[ OPTIONAL ]
Description
controls the initial (on-load) behavior of the form controls in the document

If set to true , upon loading the document, the form controls will be in design mode.
If set to false , they will be alive (i.e., connected to the data source specified for the form they belong to).

With this, you may control if your document works primarily as a form document.


Top of Page