summaryrefslogtreecommitdiffstats
path: root/source/text/sbasic/shared/03/sf_array.xhp
diff options
context:
space:
mode:
Diffstat (limited to 'source/text/sbasic/shared/03/sf_array.xhp')
-rw-r--r--source/text/sbasic/shared/03/sf_array.xhp10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/text/sbasic/shared/03/sf_array.xhp b/source/text/sbasic/shared/03/sf_array.xhp
index 48f53418ba..c17dcc3fd8 100644
--- a/source/text/sbasic/shared/03/sf_array.xhp
+++ b/source/text/sbasic/shared/03/sf_array.xhp
@@ -232,7 +232,7 @@
<bookmark localize="false" branch="index" id="bm_id251582558126024">
<bookmark_value>Array service;Copy</bookmark_value>
</bookmark>
- <h2 id="hd_id991627154151529">Copy</h2>
+ <h2 id="hd_id991627154151529" localize="false">Copy</h2>
<paragraph role="paragraph" id="par_id571627154604275">Creates a copy of a 1D or 2D array.</paragraph>
<embed href="text/sbasic/shared/03/avail_release.xhp#7.2.method"/>
<embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
@@ -661,14 +661,14 @@
<bookmark_value>Array service;PrependRow</bookmark_value>
</bookmark>
<h2 id="hd_id921582643611272" localize="false">PrependRow</h2>
- <paragraph role="paragraph" id="par_id851582643611291">Prepend at the beginning of a two dimension array a new row. The resulting array has the same lower boundaries as the initial two dimension array.</paragraph>
+ <paragraph role="paragraph" id="par_id851582643611291">Prepend a new row at the beginning of a 2-dimensional array. The resulting array has the same lower boundaries as the initial 2-dimensional array.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functsyntax"/>
<paragraph role="paragraph" localize="false" id="par_id791626997749524">
<input>svc.PrependRow(array_2d: any[0..*, 0..*], row: any[0..*]): any[0..*, 0..*]</input>
</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functparameters"/>
- <paragraph role="paragraph" id="par_id991582643611645"><emph>array_2d</emph>: The pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last row of the resulting 2 dimension array.</paragraph>
- <paragraph role="paragraph" id="par_id321582643611415"><emph>row</emph>: A 1-dimensional array containing as many items as there are rows in <literal>array_2d</literal>.</paragraph>
+ <paragraph role="paragraph" id="par_id991582643611645"><emph>array_2d</emph>: The pre-existing array, may be empty. If that array has 1 dimension, it is considered as the last row of the resulting 2-dimensional array.</paragraph>
+ <paragraph role="paragraph" id="par_id321582643611415"><emph>row</emph>: A 1-dimensional array containing as many items as there are columns in <literal>array_2d</literal>.</paragraph>
<embed href="text/sbasic/shared/00000003.xhp#functexample"/>
<bascode>
<paragraph role="bascode" localize="false" id="bas_id611582643611408">Dim a As Variant, b As variant</paragraph>
@@ -913,7 +913,7 @@
<bookmark_value>Array service;Union</bookmark_value>
</bookmark>
<h2 id="hd_id341582653148202" localize="false">Union</h2>
- <paragraph role="paragraph" id="par_id461582653148663">Build a set, as a zero-based array, by applying the union operator on the two input arrays. Resulting items originate from any of both arrays.
+ <paragraph role="paragraph" id="par_id461582653148663">Builds a set, as a zero-based array, by applying the union operator on the two input arrays. Resulting items originate from any of both arrays.
<br/>The resulting array is sorted in ascending order.
<br/>Both input arrays must be filled homogeneously, their items must be scalars of the same type. <literal>Empty</literal> and <literal>Null</literal> items are forbidden.
<br/>Text comparison can be case sensitive or not.</paragraph>