ID : 9090
Position
Function
To present 位置型 data.
Attention
-
Example
'!TITLE "Declaration of Position Type Data"
' Assign a value to declared variable and display it on the message output window
Sub Sample_Position
' Declare a variable named aaa in position type data
Dim aaa As Position
aaa = P( 100, 100, 100, 0, 0, 0, -1 )
' Display P( 100, 100, 100, 0, 0, 0, -1 ) on the message output window
PrintDbg aaa
End Sub
ID : 9090

