MapWinGIS:Vector j
From MapWindow GIS
j
Gets or sets the j component of the vector.
VB.NET Usage
Property j() As Double
Parameters
|
ReturnValue | The j component of the vector. |
Sample Code
Private Sub Vectorj()
Dim vector As New MapWinGIS.Vector()
Dim j As Double
'Set the value of j
j = 100
'Set the j component for the vector
vector.j = j
'Get the j component for the vector
j = vector.j
End Sub
VB 6 Usage
Property j() As Double
Parameters
|
ReturnValue | The j component of the vector. |
Sample Code
Private Sub Vectorj()
Dim vector As New MapWinGIS.vector
Dim j As Double
'Set the value of j
j = 100
'Set the j component for the vector
vector.j = j
'Get the j component for the vector
j = vector.j
End Sub
















