Share via


LowValue property

Returns the minimum value for a DataRange object. Read-only Variant.

Applies to

Objects:  DataRange

Syntax

object.LowValue

Parameters

Part Description
object Required. An expression that returns a DataRange object.

Example

    Sub GetInfoAboutDataMap()
    Dim objApp As New mappoint.Application
    Dim objDataMap As mappoint.DataMap
    Dim objDataSet As mappoint.DataSet

    'Set up application and objects to use     objApp.Visible = True     objApp.UserControl = True
    'Let user create a data map     Set objDataMap = objApp.ActiveMap.DataSets.ShowDataMappingWizard()
    'Get information about the data map     MsgBox "The first range low value is: " & _       objDataMap.DataRanges(1).LowValue   End Sub