<< Prev        Next >>

ID : 9090

Position

Function

To present Position Type data.

Description

This is used together with "Dim" in declaration of Position Type local variables.

Related Terms

Integer, Single, Double, Trans, Joint, String, Variable Type Relation Key Word

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

<< Prev        Next >>