<< Prev        Next >>

ID : 334

Position

Function

To present Position Type data.

Description

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

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 : 334

<< Prev        Next >>