summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XFormField.idl
blob: f1f2d1bab9b99484e0006cb5c869259b6f8f2369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 #ifndef __com_sun_star_text_XFormField_idl__
 #define __com_sun_star_text_XFormField_idl__

 #ifndef __com_sun_star_uno_XInterface_idl__
 #include <com/sun/star/uno/XInterface.idl>
 #endif

 module com {  module sun {  module star {  module text {

/** @deprecated
 */
 interface XFormField: com::sun::star::uno::XInterface
 {
     short getType();
     short getRes();
     string getDescription( );

     void setType([in] short fieldType );
     void setRes([in] short res );
     void setDescription([in] string description );

 };

 }; }; }; };

 #endif