This document is archived and information here might be outdated. Recommended version. |
Adds a new value range along the specified dimension associated with the specified variable. To indicate a point (and not an interval) along the dimension, ensure maxDimensionValue equals minDimensionValue.
[Visual Basic .NET]
Public Sub AddDimensionValue ( _
ByVal bsDimensionName As String, _
ByVal bsVariableName As String, _
ByVal minDimensionValue As Double, _
ByVal maxDimensionValue As Double _
)
[C#]
public void AddDimensionValue (
string bsDimensionName,
string bsVariableName,
double minDimensionValue,
double maxDimensionValue
);
[C++]
HRESULT AddDimensionValue(
BSTR bsDimensionName,
BSTR bsVariableName,
double minDimensionValue,
double maxDimensionValue
);
[C++] Parameters bsDimensionName [in]
bsDimensionName is a parameter of type BSTR bsVariableName [in]
bsVariableName is a parameter of type BSTR minDimensionValue [in]
minDimensionValue is a parameter of type double maxDimensionValue [in]
maxDimensionValue is a parameter of type double