diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-03-19 13:28:08 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-03-19 13:29:33 +0100 |
commit | cd360473ae2618c24f4d3b83382fde9f1c7b175d (patch) | |
tree | b189b691439321b9e511433320b0d2ec07dd521e /offapi | |
parent | 3b2cbfaa5623ea8443ce1084ece642139de7539d (diff) |
offapi: reformat SetExpression.idl
Change-Id: I6119582d0809c12a273b15ea021758f8d3a6e196
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/text/textfield/SetExpression.idl | 41 |
1 files changed, 27 insertions, 14 deletions
diff --git a/offapi/com/sun/star/text/textfield/SetExpression.idl b/offapi/com/sun/star/text/textfield/SetExpression.idl index cb79b8b50583..d68c2c900ce5 100644 --- a/offapi/com/sun/star/text/textfield/SetExpression.idl +++ b/offapi/com/sun/star/text/textfield/SetExpression.idl @@ -35,48 +35,61 @@ published service SetExpression /** contains the textual content of the field. */ - [property]string Content; + [property] string Content; + /** contains the current content of the text field. - <p> This property is especially useful for import/export purposes. </p> + <p>This property is especially useful for import/export purposes.</p> */ - [property]string CurrentPresentation; + [property] string CurrentPresentation; /** this is the number format for this field. @see com::sun::star::util::NumberFormatter */ - [property]long NumberFormat; + [property] long NumberFormat; + /** specifies the type of the numbering as <type scope="com::sun::star::style">NumberingType</type> */ - [property]short NumberingType; + [property] short NumberingType; + /** determines whether the content is displayed or evaluated. */ - [property]boolean IsShowFormula; + [property] boolean IsShowFormula; + /** contains an informational text that is displayed at the user interface if it's an input field. */ - [property]string Hint; + [property] string Hint; + /** determines whether this field is an input field. */ - [property]boolean IsInput; + [property] boolean IsInput; + /** determines whether the field is visible. */ - [property]boolean IsVisible; + [property] boolean IsVisible; + /** contains the sequence value when this field is used as sequence field. */ - [property]short SequenceValue; + [property] short SequenceValue; + /** determines the type of the variable as described in <type scope="com::sun::star::text">SetVariableType</type> */ - [property]short SubType; + [property] short SubType; + /** contains the numerical value of the field. */ [property]double Value; - /** contains the name of the set expression field master this field is connected to. + + /** contains the name of the set expression field master this field is + connected to. */ [property, readonly] string VariableName; - /** determines whether changes in language attributes at the position the text field - is located also change the number format as appropriate for this language. + + /** determines whether changes in language attributes at the position + the text field is located also change the number format as appropriate + for this language. @since OOo 1.1.2 */ |