summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/word/XCheckBox.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/XCheckBox.idl b/oovbaapi/ooo/vba/word/XCheckBox.idl
index 42b7dd8b1f60..f1eb13a19c54 100644
--- a/oovbaapi/ooo/vba/word/XCheckBox.idl
+++ b/oovbaapi/ooo/vba/word/XCheckBox.idl
@@ -22,7 +22,21 @@ module ooo { module vba { module word {
interface XCheckBox
{
interface ooo::vba::XHelperInterface;
+ interface com::sun::star::script::XDefaultProperty;
+ /// Default member: True if the specified form field object is a valid check box form field.
+ [attribute, readonly] boolean Valid;
+
+ /** AutoSize:
+ * True sizes the check box or text frame according to the font size of the surrounding text.
+ * False sizes the check box or text frame according to the Size property.
+ */
+ [attribute] boolean AutoSize;
+ /// Returns or sets the default check box value. True if the default value is checked.
+ [attribute] boolean Default;
+ /// Returns or sets the size of a check box, in points.
+ [attribute] long Size;
+ /// Returns or sets true if the check box is ticked.
[attribute] boolean Value;
};