LibreOffice 24.8 Help
উল্লেখিত অক্ষর কোড সংশ্লিষ্ট অক্ষর প্রদান করে থাকে।
Chr[$](charcode As Integer) As String
String
charcode: a numeric expression that represents a valid 8-bit ASCII value (0-255) or a 16-bit Unicode value. (To support expressions with a nominally negative argument like Chr(&H8000) in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.)
When VBA compatibility mode is enabled (Option VBASupport 1), charcode is a numeric expression that represents a valid 8-bit ASCII value (0-255) only.
Chr$ ফাংশন ব্যবহার করে একটি মুদ্রণযন্ত্র অথবা অন্য কোন আউটপুট উৎসে বিশেষ কন্ট্রোল ক্রম প্রেরণ করা হয়। একটি স্ট্রিং এক্সপ্রেশনে উদ্ধৃতি চিহ্ন সন্নিবেশ করানোর জন্য এটি ব্যবহার করতে পারেন।
An overflow error will occur when VBA compatibility mode is enabled and the expression value is greater than 255.
Sub ExampleChr
REM এই উদাহরণটির মাধ্যমে একটি স্ট্রিং এ উদ্ধৃতিকরণ চিহ্ন (ASCII মান 34) সন্নিবেশ করানো হয়।
MsgBox "A " + Chr$(34) + "short" + Chr(34) + " trip."
REM ডায়ালগে মূদ্রন: A "short" trip হিসেবে আবির্ভূত হয়।
MsgBox Chr(charcode := 64) ' "@" sign
End Sub