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:
parent
e952204b40
commit
fcd18913d5
1 changed files with 3 additions and 3 deletions
|
@ -1683,11 +1683,11 @@ End Function ' SFDocuments.SF_Calc.Forms
|
|||
|
||||
REM -----------------------------------------------------------------------------
|
||||
Function GetColumnName(Optional ByVal ColumnNumber As Variant) As String
|
||||
''' Convert a column number (range 1, 2,..1024) into its letter counterpart (range 'A', 'B',..'AMJ').
|
||||
''' Convert a column number (range 1, 2,..16384) into its letter counterpart (range 'A', 'B',..'XFD').
|
||||
''' Args:
|
||||
''' ColumnNumber: the column number, must be in the interval 1 ... 1024
|
||||
''' ColumnNumber: the column number, must be in the interval 1 ... 16384
|
||||
''' Returns:
|
||||
''' a string representation of the column name, in range 'A'..'AMJ'
|
||||
''' a string representation of the column name, in range 'A'..'XFD'
|
||||
''' If ColumnNumber is not in the allowed range, returns a zero-length string
|
||||
''' Example:
|
||||
''' MsgBox oDoc.GetColumnName(1022) ' "AMH"
|
||||
|
|
Loading…
Reference in a new issue