IDVBCMExecParamInfo::scalelow
Method Signatures |
|
C\C++ |
HRESULT get_ScaleLow( long lWait, float *fScaleLow) |
VB |
Public Property Get ScaleLow( ByVal lWait As Long) As Single |
This property returns the minimum allowable scaled value of the parameter.
Return Values
S_OK - success
else - failed
Memory Allocation
none
Visual Basic Usage Example
Private Sub Button1_Click()
Dim fScaleLow As Single
Dim objExecParamInfo As DVBCMExecParamInfo
Call GetExecParamInfoObject(objExecParamInfo)
fScaleLow = objExecParamInfo.ScaleLow
End Sub
Parameter Name |
Purpose |
|---|---|
lWait |
Optional. Default = 30000. Time to wait for a server resource in milliseconds. |
fScaleLow |
The minimum allowable value for the parameter. |