ID : 9092
String
Function
To present 字符串型 data.
Attention
-
Example
'!TITLE "Declaration of String Type Data"
' Assign a string to declared variable and display it on the message output window
Sub Sample_String
' Declare a variable named aaa in string type data
Dim aaa As String
aaa = "Denso Corporation"
' Display "Denso Corporation" on the message output window
PrintDbg aaa
End Sub
ID : 9092

