summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text/XFormField.idl
blob: 462839c1594e75ad9aceb99e62099599663856f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#ifndef __com_sun_star_text_XFormField_idl__
#define __com_sun_star_text_XFormField_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/container/XNameContainer.idl>

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

    /** @deprecated
     */
    interface XFormField : com::sun::star::uno::XInterface
    {
        string getFieldType();
        void setFieldType([in] string fieldType);
        com::sun::star::container::XNameContainer getParameters();
    };

}; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */