update dev300-m58
[ooovba.git] / offapi / com / sun / star / text / XFormField.idl
blob772d7ebdae8b3ed524a447f98f5f4bbd32d05100
1 #ifndef __com_sun_star_text_XFormField_idl__
2 #define __com_sun_star_text_XFormField_idl__
4 #ifndef __com_sun_star_uno_XInterface_idl__
5 #include <com/sun/star/uno/XInterface.idl>
6 #endif
8 module com { module sun { module star { module text {
10 /** @deprecated
12 interface XFormField: com::sun::star::uno::XInterface
14 string getFieldType();
15 void setFieldType([in] string fieldType);
17 short getParamCount();
18 string getParamName([in] short i);
19 string getParamValue([in] short i);
20 void addParam([in] string name, [in] string value, [in] boolean replaceExisting);
23 }; }; }; };
25 #endif