MinLabel Property
Sets/gets the lat/lon minutes label.
Syntax
Visual Basic
object.MinLabel [ = value ]
Visual C++
object.GetMinLabel()
object.SetMinLabel(value)
| Part
| Description |
| object |
An object expression that evaluates to a GPS ToolKit object. |
| value |
A string indicating the label for lat/lon minutes.
|
Example
Visual Basic
'Set minutes label
myGPSToolKit.MinLabel = "min"
'Get minutes label
Dim minutesLabel As String
minutesLabel = myGPSToolKit.MinLabel
Visual C++
// Set minutes label
_variant_t vtMinLabel("min");
m_myGPSToolKit.SetMinLabel(vtMinLabel);
// Get minutes label
vtMinLabel = m_myGPSToolKit.GetMinLabel();
_bstr_t convBSTR = (_bstr_t)vtMinLabel;
CString strMinLabel = (LPCSTR)convBSTR;
Remarks
This property affects the minutes label of the Latitude and the
Longitude property, as well as the latitude and longitude data supplied by the
FixUpdate event.
Default
'
Returns
A VARIANT (type VT_BSTR/BSTR/VB String) containing the lat/lon minutes label.
Errors
None
See Also
DegLabel property, SecLabel property, Latitude property, Longitude property, FixUpdate
|