ScriptForge (SF_Calc) Typos

Comments needed to be made compliant with code
in relation to Calc sheet limits.

Change-Id: I67962540e484ab1d51bc79f8ee7e7a73f9f25a2b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171872
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
This commit is contained in:
Jean-Pierre Ledure 2024-08-14 17:41:35 +02:00
parent e952204b40
commit fcd18913d5

View file

@ -1683,11 +1683,11 @@ End Function &apos; SFDocuments.SF_Calc.Forms
REM -----------------------------------------------------------------------------
Function GetColumnName(Optional ByVal ColumnNumber As Variant) As String
&apos;&apos;&apos; Convert a column number (range 1, 2,..1024) into its letter counterpart (range &apos;A&apos;, &apos;B&apos;,..&apos;AMJ&apos;).
&apos;&apos;&apos; Convert a column number (range 1, 2,..16384) into its letter counterpart (range &apos;A&apos;, &apos;B&apos;,..&apos;XFD&apos;).
&apos;&apos;&apos; Args:
&apos;&apos;&apos; ColumnNumber: the column number, must be in the interval 1 ... 1024
&apos;&apos;&apos; ColumnNumber: the column number, must be in the interval 1 ... 16384
&apos;&apos;&apos; Returns:
&apos;&apos;&apos; a string representation of the column name, in range &apos;A&apos;..&apos;AMJ&apos;
&apos;&apos;&apos; a string representation of the column name, in range &apos;A&apos;..&apos;XFD&apos;
&apos;&apos;&apos; If ColumnNumber is not in the allowed range, returns a zero-length string
&apos;&apos;&apos; Example:
&apos;&apos;&apos; MsgBox oDoc.GetColumnName(1022) &apos; &quot;AMH&quot;