BarRecord.Location
Set/Get the Location property
Syntax
strLocation =
barrecord.Location
barrecord.Location = strLocation
Parameters
None
Returns
String. Returns the current value of the Location
property
Example
This example displays the location property of the bar record
Dim strLocation
as String
strLocation = barrecord.Location
MsgBox "Location = " + strLocation
|