IDVBCMExecParamInfo::type
Method Signatures |
|
C\C++ |
HRESULT get_Type( long lWait, DVBCMRECIPEPARAMTYPE *dvbcmRecipeParamType) |
VB |
Public Property Get Type( ByVal lWait As Long) As DVBCMRECIPEPARAMTYPE |
This property returns the type of the parameter. Valid types are:
dvbcmRecipeParamTypeInteger
dvbcmRecipeParamTypeReal
dvbcmRecipeParamTypeString
dvbcmRecipeParamTypeNamedSet
dvbcmRecipeParamTypeUnknown
Return Values
S_OK - success
else - failed
Memory Allocation
none
Visual Basic Usage Example
Private Sub Button1_Click()
Dim paramType As DVBCMRECIPEPARAMTYPE
Dim objExecParamInfo As DVBCMExecParamInfo
Call GetExecParamInfoObject(objExecParamInfo)
paramType = objExecParamInfo.Type
End Sub
Parameter Name |
Purpose |
|---|---|
lWait |
Optional. Default = 30000. Time to wait for a server resource in milliseconds. |
dvbcmRecipeParamType |
The returned type of the parameter. |