Kaydet (Commit) 8fd03963 authored tarafından Miklos Vajna's avatar Miklos Vajna

oox: fix doxygen syntax to avoid misleading output in vml::ClientData

üst 04ce0e89
...@@ -139,35 +139,35 @@ protected: ...@@ -139,35 +139,35 @@ protected:
/** Excel specific shape client data (such as cell anchor). */ /** Excel specific shape client data (such as cell anchor). */
struct ClientData struct ClientData
{ {
::rtl::OUString maAnchor; /// Cell anchor as comma-separated string. ::rtl::OUString maAnchor; ///< Cell anchor as comma-separated string.
::rtl::OUString maFmlaMacro; /// Link to macro associated to the control. ::rtl::OUString maFmlaMacro; ///< Link to macro associated to the control.
::rtl::OUString maFmlaPict; /// Target cell range of picture links. ::rtl::OUString maFmlaPict; ///< Target cell range of picture links.
::rtl::OUString maFmlaLink; /// Link to value cell associated to the control. ::rtl::OUString maFmlaLink; ///< Link to value cell associated to the control.
::rtl::OUString maFmlaRange; /// Link to cell range used as data source for the control. ::rtl::OUString maFmlaRange; ///< Link to cell range used as data source for the control.
::rtl::OUString maFmlaGroup; /// Link to value cell associated to a group of option buttons. ::rtl::OUString maFmlaGroup; ///< Link to value cell associated to a group of option buttons.
sal_Int32 mnObjType; /// Type of the shape. sal_Int32 mnObjType; ///< Type of the shape.
sal_Int32 mnTextHAlign; /// Horizontal text alignment. sal_Int32 mnTextHAlign; ///< Horizontal text alignment.
sal_Int32 mnTextVAlign; /// Vertical text alignment. sal_Int32 mnTextVAlign; ///< Vertical text alignment.
sal_Int32 mnCol; /// Column index for spreadsheet cell note. sal_Int32 mnCol; ///< Column index for spreadsheet cell note.
sal_Int32 mnRow; /// Row index for spreadsheet cell note. sal_Int32 mnRow; ///< Row index for spreadsheet cell note.
sal_Int32 mnChecked; /// State for checkboxes and option buttons. sal_Int32 mnChecked; ///< State for checkboxes and option buttons.
sal_Int32 mnDropStyle; /// Drop down box style (read-only or editable). sal_Int32 mnDropStyle; ///< Drop down box style (read-only or editable).
sal_Int32 mnDropLines; /// Number of lines in drop down box. sal_Int32 mnDropLines; ///< Number of lines in drop down box.
sal_Int32 mnVal; /// Current value of spin buttons and scroll bars. sal_Int32 mnVal; ///< Current value of spin buttons and scroll bars.
sal_Int32 mnMin; /// Minimum value of spin buttons and scroll bars. sal_Int32 mnMin; ///< Minimum value of spin buttons and scroll bars.
sal_Int32 mnMax; /// Maximum value of spin buttons and scroll bars. sal_Int32 mnMax; ///< Maximum value of spin buttons and scroll bars.
sal_Int32 mnInc; /// Small increment of spin buttons and scroll bars. sal_Int32 mnInc; ///< Small increment of spin buttons and scroll bars.
sal_Int32 mnPage; /// Large increment of spin buttons and scroll bars. sal_Int32 mnPage; ///< Large increment of spin buttons and scroll bars.
sal_Int32 mnSelType; /// Listbox selection type. sal_Int32 mnSelType; ///< Listbox selection type.
sal_Int32 mnVTEdit; /// Data type of the textbox. sal_Int32 mnVTEdit; ///< Data type of the textbox.
bool mbPrintObject; /// True = print the object. bool mbPrintObject; ///< True = print the object.
bool mbVisible; /// True = cell note is visible. bool mbVisible; ///< True = cell note is visible.
bool mbDde; /// True = object is linked through DDE. bool mbDde; ///< True = object is linked through DDE.
bool mbNo3D; /// True = flat style, false = 3D style. bool mbNo3D; ///< True = flat style, false = 3D style.
bool mbNo3D2; /// True = flat style, false = 3D style (listboxes and dropdowns). bool mbNo3D2; ///< True = flat style, false = 3D style (listboxes and dropdowns).
bool mbMultiLine; /// True = textbox allows line breaks. bool mbMultiLine; ///< True = textbox allows line breaks.
bool mbVScroll; /// True = textbox has a vertical scrollbar. bool mbVScroll; ///< True = textbox has a vertical scrollbar.
bool mbSecretEdit; /// True = textbox is a password edit field. bool mbSecretEdit; ///< True = textbox is a password edit field.
explicit ClientData(); explicit ClientData();
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment