LibreOffice 7.2 Help
གཏན་འཁེལ་གྱི་ཡིག་རྟགས་སམ་རྟེན་གྲངས་ལ་བརྒྱུད་སྐྱེལ་ཕྱ་བའི་ཡིག་རྟགས་ཕྲེང་བའི་མཚོན་ཚུལ་གྱི་ཡིག་རྟགས་དང་པོ་དེས་ཡིག་རྟགས་ཕྲེང་བ་ཞིག་གསར་དུ་འཛུགས།
String (n As Integer, {expression As Integer | character As String})
ཡིག་རྟགས་ཕྲེང་བ་
n: Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648.
Expression ཡིག་རྟགས་ ASCII ཨང་གི་གྲངས་མཚོན་ཚུལ་གྱི་མཚན་འཇོག་ལ་བེད་སྤྱད་པ།
Character ཕྱིར་ལོག་ཡིག་རྟགས་ཕྲེང་བས་སྤྱོད་དགོས་པའི་ཡིག་རྟགས་གང་རུང་འཛུགས་པའམ་ཡང་ན་ཡིག་རྟགས་དང་པོའི་ཡིག་རྟགས་ཕྲེང་བ་གང་རུང་ལ་སྤྱོད་དགོས།
Sub ExampleString
Dim sText As String
sText = String(10,"A")
MsgBox sText
sText = String(10,65)
MsgBox sText
End Sub