summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sheet
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/sheet')
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl22
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl2
-rw-r--r--offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl4
-rw-r--r--offapi/com/sun/star/sheet/DataPilotSourceDimension.idl4
-rw-r--r--offapi/com/sun/star/sheet/DatabaseRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/FunctionAccess.idl6
-rw-r--r--offapi/com/sun/star/sheet/RangeSelectionArguments.idl6
-rw-r--r--offapi/com/sun/star/sheet/SheetCell.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellRange.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetCellRanges.idl2
-rw-r--r--offapi/com/sun/star/sheet/SheetFilterDescriptor.idl4
-rw-r--r--offapi/com/sun/star/sheet/SheetSortDescriptor.idl4
-rw-r--r--offapi/com/sun/star/sheet/SheetSortDescriptor2.idl4
-rw-r--r--offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl6
-rw-r--r--offapi/com/sun/star/sheet/SubTotalDescriptor.idl4
-rw-r--r--offapi/com/sun/star/sheet/TableAutoFormatField.idl10
-rw-r--r--offapi/com/sun/star/sheet/TablePageBreakData.idl2
-rw-r--r--offapi/com/sun/star/sheet/TablePageStyle.idl4
-rw-r--r--offapi/com/sun/star/sheet/TableValidation.idl10
-rw-r--r--offapi/com/sun/star/sheet/XCalculatable.idl4
-rw-r--r--offapi/com/sun/star/sheet/XCompatibilityNames.idl2
-rw-r--r--offapi/com/sun/star/sheet/XConsolidatable.idl2
-rw-r--r--offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl16
-rw-r--r--offapi/com/sun/star/sheet/XFormulaQuery.idl8
-rw-r--r--offapi/com/sun/star/sheet/XPrintAreas.idl4
-rw-r--r--offapi/com/sun/star/sheet/XScenario.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSheetFilterable.idl4
-rw-r--r--offapi/com/sun/star/sheet/XSolver.idl2
-rw-r--r--offapi/com/sun/star/sheet/XSubTotalCalculatable.idl6
-rw-r--r--offapi/com/sun/star/sheet/XUsedAreaCursor.idl8
-rw-r--r--offapi/com/sun/star/sheet/XViewFreezable.idl4
-rw-r--r--offapi/com/sun/star/sheet/XViewSplitable.idl4
32 files changed, 83 insertions, 83 deletions
diff --git a/offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl b/offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl
index 7f0ac23fc0ee..6ed967dd3527 100644
--- a/offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl
+++ b/offapi/com/sun/star/sheet/DataPilotFieldGroupInfo.idl
@@ -36,9 +36,9 @@ published struct DataPilotFieldGroupInfo
automatically from the minimum of the item values.
<p><ul>
- <li>If <FALSE/> is set, the value from #Start will be
+ <li>If `FALSE` is set, the value from #Start will be
used as start value for the grouping.</li>
- <li>If <TRUE/> is set, the start value for the grouping will be
+ <li>If `TRUE` is set, the start value for the grouping will be
calculated automatically from the minimum of all member values of the
DataPilot field.</li>
</ul></p>
@@ -50,9 +50,9 @@ published struct DataPilotFieldGroupInfo
automatically from the maximum of the item values.
<p><ul>
- <li>If <FALSE/> is set, the value from #End will be
+ <li>If `FALSE` is set, the value from #End will be
used as end value for the grouping.</li>
- <li>If <TRUE/> is set, the end value for the grouping will be
+ <li>If `TRUE` is set, the end value for the grouping will be
calculated automatically from the maximum of all member values of the
DataPilot field.</li>
</ul></p>
@@ -63,12 +63,12 @@ published struct DataPilotFieldGroupInfo
/** specifies whether date values are grouped by ranges of days.
<p><ul>
- <li>If <FALSE/> is set, and #GroupBy contains zero,
+ <li>If `FALSE` is set, and #GroupBy contains zero,
grouping is performed inplace on the item values.</li>
- <li>If <FALSE/> is set, and #GroupBy contains one or
+ <li>If `FALSE` is set, and #GroupBy contains one or
more flags from DataPilotFieldGroupBy, grouping is
performed on date or time.</li>
- <li>If <TRUE/> is set, #Step contains a value greater
+ <li>If `TRUE` is set, #Step contains a value greater
than or equal to 1, and #GroupBy set to <const>
DataPilotFieldGroupBy::DAYS</const>, grouping is performed on ranges
of days (see descriptions for <member>
@@ -80,20 +80,20 @@ published struct DataPilotFieldGroupInfo
/** specifies the start value for the grouping if <member>HasAutoStart
- </member> is set to <FALSE/>.
+ </member> is set to `FALSE`.
*/
double Start;
/** specifies the end value for the grouping if <member>HasAutoEnd
- </member> is set to <FALSE/>.
+ </member> is set to `FALSE`.
*/
double End;
/** specifies the size of the ranges for numeric or day grouping.
- <p>Example: With #HasAutoStart set to <FALSE/>,
+ <p>Example: With #HasAutoStart set to `FALSE`,
#Start set to 2, and #Step set to 3,
the first group will contain all values greater than or equal to 2 and
less than 5. The second group will contain all values greater than or
@@ -110,7 +110,7 @@ published struct DataPilotFieldGroupInfo
/** contains the source DataPilot field grouping is based on. Will be
- <NULL/> if this field is not grouped or contains numeric grouping.
+ `NULL` if this field is not grouped or contains numeric grouping.
@see DataPilotField
*/
diff --git a/offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl b/offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl
index 3ddc67df6a5b..5e84303d4f46 100644
--- a/offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl
+++ b/offapi/com/sun/star/sheet/DataPilotFieldLayoutInfo.idl
@@ -38,7 +38,7 @@ published struct DataPilotFieldLayoutInfo
long LayoutMode;
- /** If <TRUE/>, an empty row is inserted in the DataPilotTable
+ /** If `TRUE`, an empty row is inserted in the DataPilotTable
result table after the data
(including the subtotals) for each item of the field.
*/
diff --git a/offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl b/offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl
index a277bec75fc2..70fc9443aef9 100644
--- a/offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl
+++ b/offapi/com/sun/star/sheet/DataPilotFieldSortInfo.idl
@@ -35,8 +35,8 @@ published struct DataPilotFieldSortInfo
string Field;
- /** <TRUE/> if data are sorted in ascending order,
- <FALSE/> if in descending order.
+ /** `TRUE` if data are sorted in ascending order,
+ `FALSE` if in descending order.
*/
boolean IsAscending;
diff --git a/offapi/com/sun/star/sheet/DataPilotSourceDimension.idl b/offapi/com/sun/star/sheet/DataPilotSourceDimension.idl
index f26c4219cea8..2309d172e9ef 100644
--- a/offapi/com/sun/star/sheet/DataPilotSourceDimension.idl
+++ b/offapi/com/sun/star/sheet/DataPilotSourceDimension.idl
@@ -78,12 +78,12 @@ service DataPilotSourceDimension
/** returns the name of the dimension from which this dimension was
- cloned, or <NULL/> if it was not cloned.
+ cloned, or `NULL` if it was not cloned.
*/
[readonly, property] com::sun::star::container::XNamed Original;
- /** contains <TRUE/> if this is the dimension used to layout the
+ /** contains `TRUE` if this is the dimension used to layout the
different data dimensions.
*/
[readonly, property] boolean IsDataLayoutDimension;
diff --git a/offapi/com/sun/star/sheet/DatabaseRange.idl b/offapi/com/sun/star/sheet/DatabaseRange.idl
index fd1716a28bb3..77fc61fe6f5b 100644
--- a/offapi/com/sun/star/sheet/DatabaseRange.idl
+++ b/offapi/com/sun/star/sheet/DatabaseRange.idl
@@ -78,7 +78,7 @@ published service DatabaseRange
/** specifies the range where the filter can find the filter criteria.
- <p>This is only used if SheetFilterDescriptor::UseFilterCriteriaSource is <TRUE/>.</p>
+ <p>This is only used if SheetFilterDescriptor::UseFilterCriteriaSource is `TRUE`.</p>
@since OOo 1.1.2
*/
diff --git a/offapi/com/sun/star/sheet/FunctionAccess.idl b/offapi/com/sun/star/sheet/FunctionAccess.idl
index 0b039f5e2a19..9b26c286ef59 100644
--- a/offapi/com/sun/star/sheet/FunctionAccess.idl
+++ b/offapi/com/sun/star/sheet/FunctionAccess.idl
@@ -46,7 +46,7 @@ published service FunctionAccess
/** specifies whether the function call is performed as array function
call.
- <p>If set to <TRUE/>, the result of the function call will be
+ <p>If set to `TRUE`, the result of the function call will be
calculated similar to array formulas in a spreadsheet document. The
return value of the function call will usually be a sequence of
sequences containing the values of the resulting array. Example: If the
@@ -54,14 +54,14 @@ published service FunctionAccess
array containing the absolute values of the numbers contained in the
specified cell range.</p>
- <p>If set to <FALSE/>, the result of the function call will be
+ <p>If set to `FALSE`, the result of the function call will be
calculated similar to simple cell formulas in a spreadsheet document.
The return value of the function call will usually be a single value.
Of course, some functions always return an array, for example the
MUNIT function.</p>
<p>For compatibility with older versions, the default value of this
- property is <TRUE/>.</p>
+ property is `TRUE`.</p>
@since OOo 3.3
*/
diff --git a/offapi/com/sun/star/sheet/RangeSelectionArguments.idl b/offapi/com/sun/star/sheet/RangeSelectionArguments.idl
index 49292205cbe0..92fd5e513303 100644
--- a/offapi/com/sun/star/sheet/RangeSelectionArguments.idl
+++ b/offapi/com/sun/star/sheet/RangeSelectionArguments.idl
@@ -45,9 +45,9 @@ published service RangeSelectionArguments
/** specifies if the range selection is limited to a single
cell only.
- <p>If <TRUE/>, the selection is restricted to a
- single cell. If <FALSE/>, multiple adjoining cells can be
- selected. The default value is <FALSE/>.</p>
+ <p>If `TRUE`, the selection is restricted to a
+ single cell. If `FALSE`, multiple adjoining cells can be
+ selected. The default value is `FALSE`.</p>
@since OOo 2.0.3
*/
diff --git a/offapi/com/sun/star/sheet/SheetCell.idl b/offapi/com/sun/star/sheet/SheetCell.idl
index e010ac715f92..17c5c917fbbf 100644
--- a/offapi/com/sun/star/sheet/SheetCell.idl
+++ b/offapi/com/sun/star/sheet/SheetCell.idl
@@ -114,7 +114,7 @@ published service SheetCell
<p>The property
com::sun::star::util::SearchDescriptor::SearchWords
- has a different meaning in spreadsheets: If set to <TRUE/>, the
+ has a different meaning in spreadsheets: If set to `TRUE`, the
spreadsheet searches for cells containing the search text only.</p>
*/
interface com::sun::star::util::XReplaceable;
diff --git a/offapi/com/sun/star/sheet/SheetCellRange.idl b/offapi/com/sun/star/sheet/SheetCellRange.idl
index d1d2ed1adc8d..0361a1af4ef1 100644
--- a/offapi/com/sun/star/sheet/SheetCellRange.idl
+++ b/offapi/com/sun/star/sheet/SheetCellRange.idl
@@ -105,7 +105,7 @@ published service SheetCellRange
<p>The property
com::sun::star::util::SearchDescriptor::SearchWords
- has a different meaning in spreadsheets: If set to <TRUE/>, the
+ has a different meaning in spreadsheets: If set to `TRUE`, the
spreadsheet searches for cells containing the search text only.</p>
*/
interface com::sun::star::util::XReplaceable;
diff --git a/offapi/com/sun/star/sheet/SheetCellRanges.idl b/offapi/com/sun/star/sheet/SheetCellRanges.idl
index 87bdf08a65c5..a0f98cdd5aa0 100644
--- a/offapi/com/sun/star/sheet/SheetCellRanges.idl
+++ b/offapi/com/sun/star/sheet/SheetCellRanges.idl
@@ -86,7 +86,7 @@ published service SheetCellRanges
<p>The property
com::sun::star::util::SearchDescriptor::SearchWords
- has a different meaning in spreadsheets: If set to <TRUE/>, the
+ has a different meaning in spreadsheets: If set to `TRUE`, the
spreadsheet searches for cells containing the search text only.</p>
*/
interface com::sun::star::util::XReplaceable;
diff --git a/offapi/com/sun/star/sheet/SheetFilterDescriptor.idl b/offapi/com/sun/star/sheet/SheetFilterDescriptor.idl
index ea27bbc8de8b..5fc6cbcfd948 100644
--- a/offapi/com/sun/star/sheet/SheetFilterDescriptor.idl
+++ b/offapi/com/sun/star/sheet/SheetFilterDescriptor.idl
@@ -82,7 +82,7 @@ published service SheetFilterDescriptor
position is saved for future calls.
<p>This is only used if
- SheetFilterDescriptor::CopyOutputData is <TRUE/>.</p>
+ SheetFilterDescriptor::CopyOutputData is `TRUE`.</p>
*/
[property] boolean SaveOutputPosition;
@@ -107,7 +107,7 @@ published service SheetFilterDescriptor
/** specifies the position where filtered data are to be copied.
<p>This is only used if
- SheetFilterDescriptor::CopyOutputData is <TRUE/>.</p>
+ SheetFilterDescriptor::CopyOutputData is `TRUE`.</p>
*/
[property] com::sun::star::table::CellAddress OutputPosition;
diff --git a/offapi/com/sun/star/sheet/SheetSortDescriptor.idl b/offapi/com/sun/star/sheet/SheetSortDescriptor.idl
index 44f0e49f7a09..1a3a7955bd50 100644
--- a/offapi/com/sun/star/sheet/SheetSortDescriptor.idl
+++ b/offapi/com/sun/star/sheet/SheetSortDescriptor.idl
@@ -53,7 +53,7 @@ published service SheetSortDescriptor
/** specifies which user defined sorting list is used.
<p>This property is only used, if
- SheetSortDescriptor::IsUserListEnabled is <TRUE/>.</p>
+ SheetSortDescriptor::IsUserListEnabled is `TRUE`.</p>
*/
[property] long UserListIndex;
@@ -67,7 +67,7 @@ published service SheetSortDescriptor
/** specifies the position where sorted data are to be copied.
<p>This property is only used, if
- SheetSortDescriptor::CopyOutputData is <TRUE/>.</p>
+ SheetSortDescriptor::CopyOutputData is `TRUE`.</p>
*/
[property] com::sun::star::table::CellAddress OutputPosition;
diff --git a/offapi/com/sun/star/sheet/SheetSortDescriptor2.idl b/offapi/com/sun/star/sheet/SheetSortDescriptor2.idl
index 589deb989314..5f1e25f69879 100644
--- a/offapi/com/sun/star/sheet/SheetSortDescriptor2.idl
+++ b/offapi/com/sun/star/sheet/SheetSortDescriptor2.idl
@@ -60,7 +60,7 @@ published service SheetSortDescriptor2
/** specifies which user defined sorting list is used.
<p>This property is only used, if
- SheetSortDescriptor::IsUserListEnabled is <TRUE/>.</p>
+ SheetSortDescriptor::IsUserListEnabled is `TRUE`.</p>
*/
[property] long UserListIndex;
@@ -74,7 +74,7 @@ published service SheetSortDescriptor2
/** specifies the position where sorted data are to be copied.
<p>This property is only used, if
- SheetSortDescriptor::CopyOutputData is <TRUE/>.</p>
+ SheetSortDescriptor::CopyOutputData is `TRUE`.</p>
*/
[property] com::sun::star::table::CellAddress OutputPosition;
diff --git a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
index 8267d684bc12..8b0d301987e0 100644
--- a/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
+++ b/offapi/com/sun/star/sheet/SpreadsheetDocumentSettings.idl
@@ -95,8 +95,8 @@ published service SpreadsheetDocumentSettings
/** specifies whether calculations are performed with the rounded
- values displayed in cells (set to <TRUE/>) instead of the
- internal values (set to <FALSE/>).
+ values displayed in cells (set to `TRUE`) instead of the
+ internal values (set to `FALSE`).
*/
[property] boolean CalcAsShown;
@@ -115,7 +115,7 @@ published service SpreadsheetDocumentSettings
anywhere on the sheet.
<p>Explicitly defined label ranges are used even if this property
- is set to <FALSE/>.</p>
+ is set to `FALSE`.</p>
@see com::sun::star::sheet::LabelRanges
*/
diff --git a/offapi/com/sun/star/sheet/SubTotalDescriptor.idl b/offapi/com/sun/star/sheet/SubTotalDescriptor.idl
index 4bb1d6cd19fd..1811a6f04789 100644
--- a/offapi/com/sun/star/sheet/SubTotalDescriptor.idl
+++ b/offapi/com/sun/star/sheet/SubTotalDescriptor.idl
@@ -79,7 +79,7 @@ published service SubTotalDescriptor
<p>This property is only used if
SubTotalDescriptor::EnableUserSortList
- is <TRUE/>.</p>
+ is `TRUE`.</p>
*/
[property] long UserSortListIndex;
@@ -96,7 +96,7 @@ published service SubTotalDescriptor
/** specifies the sorting order if
- SubTotalDescriptor::EnableSort is set to <TRUE/>.
+ SubTotalDescriptor::EnableSort is set to `TRUE`.
*/
[property] boolean SortAscending;
diff --git a/offapi/com/sun/star/sheet/TableAutoFormatField.idl b/offapi/com/sun/star/sheet/TableAutoFormatField.idl
index 29fcd9c22135..f93c9abfd5d0 100644
--- a/offapi/com/sun/star/sheet/TableAutoFormatField.idl
+++ b/offapi/com/sun/star/sheet/TableAutoFormatField.idl
@@ -156,17 +156,17 @@ published service TableAutoFormatField
[property] short CharUnderline;
- /** is <TRUE/> if the characters are crossed out.
+ /** is `TRUE` if the characters are crossed out.
*/
[property] boolean CharCrossedOut;
- /** is <TRUE/> if the characters are contoured.
+ /** is `TRUE` if the characters are contoured.
*/
[property] boolean CharContoured;
- /** is <TRUE/> if the characters are shadowed.
+ /** is `TRUE` if the characters are shadowed.
*/
[property] boolean CharShadowed;
@@ -181,7 +181,7 @@ published service TableAutoFormatField
[property] com::sun::star::util::Color CellBackColor;
- /** is <TRUE/> if the cell background is transparent.
+ /** is `TRUE` if the cell background is transparent.
<p>In this case the TableAutoFormatField::CellBackColor
value is not used.</p>
@@ -208,7 +208,7 @@ published service TableAutoFormatField
[optional, property] long VertJustify;
- /** is <TRUE/> if text breaks automatically at cell borders.
+ /** is `TRUE` if text breaks automatically at cell borders.
*/
[optional, property] boolean IsTextWrapped;
diff --git a/offapi/com/sun/star/sheet/TablePageBreakData.idl b/offapi/com/sun/star/sheet/TablePageBreakData.idl
index 85cdaee66ae0..cd0ae3bfe11f 100644
--- a/offapi/com/sun/star/sheet/TablePageBreakData.idl
+++ b/offapi/com/sun/star/sheet/TablePageBreakData.idl
@@ -36,7 +36,7 @@ published struct TablePageBreakData
long Position;
- /** is <TRUE/> for a manual page break, <FALSE/> for an automatic one.
+ /** is `TRUE` for a manual page break, `FALSE` for an automatic one.
*/
boolean ManualBreak;
diff --git a/offapi/com/sun/star/sheet/TablePageStyle.idl b/offapi/com/sun/star/sheet/TablePageStyle.idl
index da1b940fd967..a4ecc9bdbba9 100644
--- a/offapi/com/sun/star/sheet/TablePageStyle.idl
+++ b/offapi/com/sun/star/sheet/TablePageStyle.idl
@@ -93,9 +93,9 @@ published service TablePageStyle
/** specifies the print order for the pages within each sheet.
- <p>If <TRUE/>, the order for printing pages begins with
+ <p>If `TRUE`, the order for printing pages begins with
top-to-bottom, then continues with the next set of cell columns
- to the right. If <FALSE/>, the order for printing pages begins
+ to the right. If `FALSE`, the order for printing pages begins
with left-to-right, then continues with the next set of cell
rows to the bottom.</p>
*/
diff --git a/offapi/com/sun/star/sheet/TableValidation.idl b/offapi/com/sun/star/sheet/TableValidation.idl
index 4e3c1b9a4066..6a2943f32e39 100644
--- a/offapi/com/sun/star/sheet/TableValidation.idl
+++ b/offapi/com/sun/star/sheet/TableValidation.idl
@@ -53,7 +53,7 @@ published service TableValidation
/** specifies the title of the window showing the input message.
<p>This is only used if TableValidation::ShowInputMessage
- is set to <TRUE/>.</p>
+ is set to `TRUE`.</p>
*/
[property] string InputTitle;
@@ -61,7 +61,7 @@ published service TableValidation
/** specifies the text of the input message.
<p>This is only used if TableValidation::ShowInputMessage
- is set to <TRUE/>.</p>
+ is set to `TRUE`.</p>
*/
[property] string InputMessage;
@@ -75,7 +75,7 @@ published service TableValidation
/** specifies the title of the window showing the error message.
<p>This is only used if TableValidation::ShowErrorMessage
- is set to <TRUE/>.</p>
+ is set to `TRUE`.</p>
*/
[property] string ErrorTitle;
@@ -83,7 +83,7 @@ published service TableValidation
/** specifies the text of the error message.
<p>This is only used if TableValidation::ShowErrorMessage
- is set to <TRUE/>.</p>
+ is set to `TRUE`.</p>
*/
[property] string ErrorMessage;
@@ -96,7 +96,7 @@ published service TableValidation
/** specifies the style of the error message.
<p>This is used only if TableValidation::ShowErrorMessage
- is set to <TRUE/>.</p>
+ is set to `TRUE`.</p>
*/
[property] com::sun::star::sheet::ValidationAlertStyle ErrorAlertStyle;
diff --git a/offapi/com/sun/star/sheet/XCalculatable.idl b/offapi/com/sun/star/sheet/XCalculatable.idl
index 47fe689e5d74..6fc192ae9c47 100644
--- a/offapi/com/sun/star/sheet/XCalculatable.idl
+++ b/offapi/com/sun/star/sheet/XCalculatable.idl
@@ -52,7 +52,7 @@ published interface XCalculatable: com::sun::star::uno::XInterface
calculation.</p>
@returns
- <TRUE/>, if automatic calculation is enabled.
+ `TRUE`, if automatic calculation is enabled.
*/
boolean isAutomaticCalculationEnabled();
@@ -65,7 +65,7 @@ published interface XCalculatable: com::sun::star::uno::XInterface
calculation.</p>
@param bEnabled
- <TRUE/> to enable automatic calculation, <FALSE/> to disable.
+ `TRUE` to enable automatic calculation, `FALSE` to disable.
*/
void enableAutomaticCalculation( [in] boolean bEnabled );
diff --git a/offapi/com/sun/star/sheet/XCompatibilityNames.idl b/offapi/com/sun/star/sheet/XCompatibilityNames.idl
index 281e2145730b..cf8e37388e4e 100644
--- a/offapi/com/sun/star/sheet/XCompatibilityNames.idl
+++ b/offapi/com/sun/star/sheet/XCompatibilityNames.idl
@@ -53,7 +53,7 @@ published interface XCompatibilityNames: com::sun::star::uno::XInterface
<p>If a locale is not present in the sequence of compatibility names,
the first entry of the sequence is used. So the method should return
a sequence which contains first the entry representing the current
- locale.<TRUE/></p>
+ locale.`TRUE`</p>
@param aProgrammaticName
is the exact name of a method within its interface.
diff --git a/offapi/com/sun/star/sheet/XConsolidatable.idl b/offapi/com/sun/star/sheet/XConsolidatable.idl
index f2fda21e06e5..493ddffbd1cb 100644
--- a/offapi/com/sun/star/sheet/XConsolidatable.idl
+++ b/offapi/com/sun/star/sheet/XConsolidatable.idl
@@ -40,7 +40,7 @@ published interface XConsolidatable: com::sun::star::uno::XInterface
/** creates a consolidation descriptor.
@param bEmpty
- <TRUE/> leaves the descriptor empty, <FALSE/> fills it with
+ `TRUE` leaves the descriptor empty, `FALSE` fills it with
the settings from the last consolidation action.
@see com::sun::star::sheet::ConsolidationDescriptor
diff --git a/offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl b/offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl
index e76a61f1403b..b8d03f90e4b3 100644
--- a/offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl
+++ b/offapi/com/sun/star/sheet/XDataPilotFieldGrouping.idl
@@ -56,7 +56,7 @@ published interface XDataPilotFieldGrouping: com::sun::star::uno::XInterface
@returns
the new created field if there is one created on the first call of
- this method. <NULL/> is returned on subsequent calls.
+ this method. `NULL` is returned on subsequent calls.
@see DataPilotField
@see DataPilotFieldGroupInfo
@@ -80,29 +80,29 @@ published interface XDataPilotFieldGrouping: com::sun::star::uno::XInterface
<ul>
<li>If the member <member>DataPilotFieldGroupInfo::HasAutoStart
- </member> is set to <FALSE/>, then the value of <member>
+ </member> is set to `FALSE`, then the value of <member>
DataPilotFieldGroupInfo::Start</member> must be a floating-point
value representing a valid date/time value (if <member>
- DataPilotFieldGroupInfo::HasAutoStart</member> is set to <TRUE/>,
+ DataPilotFieldGroupInfo::HasAutoStart</member> is set to `TRUE`,
the value of DataPilotFieldGroupInfo::Start will
be ignored).</li>
<li>If the member <member>DataPilotFieldGroupInfo::HasAutoEnd
- </member> is set to <FALSE/>, then the value of <member>
+ </member> is set to `FALSE`, then the value of <member>
DataPilotFieldGroupInfo::End</member> must be a floating-point
value representing a valid date/time value( if <member>
- DataPilotFieldGroupInfo::HasAutoEnd</member> is set to <TRUE/>,
+ DataPilotFieldGroupInfo::HasAutoEnd</member> is set to `TRUE`,
the value of DataPilotFieldGroupInfo::End will be
ignored).</li>
<li>If the members <member>DataPilotFieldGroupInfo::HasAutoStart
</member> and DataPilotFieldGroupInfo::HasAutoEnd
- are set to <FALSE/> both, then the value of <member>
+ are set to `FALSE` both, then the value of <member>
DataPilotFieldGroupInfo::Start</member> must be less than or equal
to the value of DataPilotFieldGroupInfo::End.</li>
<li>The member DataPilotFieldGroupInfo::HasDateValues
- must be set to <TRUE/>.</li>
+ must be set to `TRUE`.</li>
<li>The member DataPilotFieldGroupInfo::Step must
be zero, unless ranges of days have to be grouped (see the
@@ -131,7 +131,7 @@ published interface XDataPilotFieldGrouping: com::sun::star::uno::XInterface
</ul>
@returns
- the new created field if there is one created. <NULL/> is returned,
+ the new created field if there is one created. `NULL` is returned,
if date grouping is performed inside this field (i.e. this field
was not grouped by dates before).
diff --git a/offapi/com/sun/star/sheet/XFormulaQuery.idl b/offapi/com/sun/star/sheet/XFormulaQuery.idl
index c15b699065ae..0101ce1016ea 100644
--- a/offapi/com/sun/star/sheet/XFormulaQuery.idl
+++ b/offapi/com/sun/star/sheet/XFormulaQuery.idl
@@ -44,8 +44,8 @@ published interface XFormulaQuery: com::sun::star::uno::XInterface
the original cell.</p>
@param bRecursive
- <FALSE/> = queries cells dependent from the original range(s),
- <TRUE/> = repeats query with all found cells
+ `FALSE` = queries cells dependent from the original range(s),
+ `TRUE` = repeats query with all found cells
(finds dependents of dependents, and so on).
@return
@@ -62,8 +62,8 @@ published interface XFormulaQuery: com::sun::star::uno::XInterface
cell.</p>
@param bRecursive
- <FALSE/> = queries precedent cells of the original range(s),
- <TRUE/> = repeats query with all found cells
+ `FALSE` = queries precedent cells of the original range(s),
+ `TRUE` = repeats query with all found cells
(finds precedents of precedents, and so on).
@return
diff --git a/offapi/com/sun/star/sheet/XPrintAreas.idl b/offapi/com/sun/star/sheet/XPrintAreas.idl
index 26306ddc4704..814462c62f3e 100644
--- a/offapi/com/sun/star/sheet/XPrintAreas.idl
+++ b/offapi/com/sun/star/sheet/XPrintAreas.idl
@@ -59,7 +59,7 @@ published interface XPrintAreas: com::sun::star::uno::XInterface
print pages to the right.
@param bPrintTitleColumns
- if <TRUE/>, title columns are repeated on each page.
+ if `TRUE`, title columns are repeated on each page.
*/
void setPrintTitleColumns( [in] boolean bPrintTitleColumns );
@@ -100,7 +100,7 @@ published interface XPrintAreas: com::sun::star::uno::XInterface
print pages to the bottom.
@param bPrintTitleRows
- if <TRUE/>, title rows are repeated on each page.
+ if `TRUE`, title rows are repeated on each page.
*/
void setPrintTitleRows( [in] boolean bPrintTitleRows );
diff --git a/offapi/com/sun/star/sheet/XScenario.idl b/offapi/com/sun/star/sheet/XScenario.idl
index b0c30b718239..9a02c9cb700b 100644
--- a/offapi/com/sun/star/sheet/XScenario.idl
+++ b/offapi/com/sun/star/sheet/XScenario.idl
@@ -34,7 +34,7 @@ module com { module sun { module star { module sheet {
published interface XScenario: com::sun::star::uno::XInterface
{
- /** returns <TRUE/> if the current object is a scenario.
+ /** returns `TRUE` if the current object is a scenario.
*/
boolean getIsScenario();
diff --git a/offapi/com/sun/star/sheet/XSheetFilterable.idl b/offapi/com/sun/star/sheet/XSheetFilterable.idl
index 124c7b1b8410..94e1d5f7995e 100644
--- a/offapi/com/sun/star/sheet/XSheetFilterable.idl
+++ b/offapi/com/sun/star/sheet/XSheetFilterable.idl
@@ -37,8 +37,8 @@ published interface XSheetFilterable: com::sun::star::uno::XInterface
/** creates a filter descriptor.
@param bEmpty
- if set to <TRUE/>, creates an empty filter descriptor. If set to
- <FALSE/>, fills the filter descriptor with previous settings of
+ if set to `TRUE`, creates an empty filter descriptor. If set to
+ `FALSE`, fills the filter descriptor with previous settings of
the current object (i.e. a database range).
*/
com::sun::star::sheet::XSheetFilterDescriptor
diff --git a/offapi/com/sun/star/sheet/XSolver.idl b/offapi/com/sun/star/sheet/XSolver.idl
index cab98844a59d..29b9ba011077 100644
--- a/offapi/com/sun/star/sheet/XSolver.idl
+++ b/offapi/com/sun/star/sheet/XSolver.idl
@@ -49,7 +49,7 @@ interface XSolver: com::sun::star::uno::XInterface
/// executes the calculation and tries to find a solution.
void solve();
- /// contains <TRUE/> if a solution was found.
+ /// contains `TRUE` if a solution was found.
[attribute, readonly] boolean Success;
/// contains the objective value for the solution, if a solution was found.
diff --git a/offapi/com/sun/star/sheet/XSubTotalCalculatable.idl b/offapi/com/sun/star/sheet/XSubTotalCalculatable.idl
index 9002bf119546..02ff9a52f72b 100644
--- a/offapi/com/sun/star/sheet/XSubTotalCalculatable.idl
+++ b/offapi/com/sun/star/sheet/XSubTotalCalculatable.idl
@@ -41,8 +41,8 @@ published interface XSubTotalCalculatable: com::sun::star::uno::XInterface
/** creates a subtotal descriptor.
@param bEmpty
- if set to <TRUE/>, creates an empty descriptor. If set to
- <FALSE/>, fills the descriptor with previous settings of the
+ if set to `TRUE`, creates an empty descriptor. If set to
+ `FALSE`, fills the descriptor with previous settings of the
current object (i.e. a database range).
*/
com::sun::star::sheet::XSubTotalDescriptor createSubTotalDescriptor(
@@ -56,7 +56,7 @@ published interface XSubTotalCalculatable: com::sun::star::uno::XInterface
operation.
@param bReplace
- if set to <TRUE/>, replaces previous subtotal results.
+ if set to `TRUE`, replaces previous subtotal results.
*/
void applySubTotals(
[in] com::sun::star::sheet::XSubTotalDescriptor xDescriptor,
diff --git a/offapi/com/sun/star/sheet/XUsedAreaCursor.idl b/offapi/com/sun/star/sheet/XUsedAreaCursor.idl
index 0a87fb139310..9038db4c402b 100644
--- a/offapi/com/sun/star/sheet/XUsedAreaCursor.idl
+++ b/offapi/com/sun/star/sheet/XUsedAreaCursor.idl
@@ -40,8 +40,8 @@ published interface XUsedAreaCursor: com::sun::star::uno::XInterface
/** points the cursor to the start of the used area.
@param bExpand
- <TRUE/> = expands the current cursor range,
- <FALSE/> = sets size of the cursor to a single cell.
+ `TRUE` = expands the current cursor range,
+ `FALSE` = sets size of the cursor to a single cell.
*/
void gotoStartOfUsedArea( [in] boolean bExpand );
@@ -49,8 +49,8 @@ published interface XUsedAreaCursor: com::sun::star::uno::XInterface
/** points the cursor to the end of the used area.
@param bExpand
- <TRUE/> = expands the current cursor range,
- <FALSE/> = sets size of the cursor to a single cell.
+ `TRUE` = expands the current cursor range,
+ `FALSE` = sets size of the cursor to a single cell.
*/
void gotoEndOfUsedArea( [in] boolean bExpand );
diff --git a/offapi/com/sun/star/sheet/XViewFreezable.idl b/offapi/com/sun/star/sheet/XViewFreezable.idl
index 897ae915a46c..2815d028d0c4 100644
--- a/offapi/com/sun/star/sheet/XViewFreezable.idl
+++ b/offapi/com/sun/star/sheet/XViewFreezable.idl
@@ -32,12 +32,12 @@
published interface XViewFreezable: com::sun::star::uno::XInterface
{
- /** returns <TRUE/> if the view has frozen panes.
+ /** returns `TRUE` if the view has frozen panes.
<p>Only one of
XViewSplitable::getIsWindowSplit() and
XViewFreezable::hasFrozenPanes()
- can be <TRUE/>.</p>
+ can be `TRUE`.</p>
*/
boolean hasFrozenPanes();
diff --git a/offapi/com/sun/star/sheet/XViewSplitable.idl b/offapi/com/sun/star/sheet/XViewSplitable.idl
index bc833c015bc6..7fe0b799a682 100644
--- a/offapi/com/sun/star/sheet/XViewSplitable.idl
+++ b/offapi/com/sun/star/sheet/XViewSplitable.idl
@@ -33,13 +33,13 @@
published interface XViewSplitable: com::sun::star::uno::XInterface
{
- /** returns <TRUE/> if the view is split
+ /** returns `TRUE` if the view is split
into individual panes.
<p>Only one of
XViewSplitable::getIsWindowSplit() and
XViewFreezable::hasFrozenPanes()
- can be <TRUE/>.</p>
+ can be `TRUE`.</p>
*/
boolean getIsWindowSplit();