IDVBCMExecRecipeInfo::type

Method Signatures

 

C\C++

HRESULT get_Type(

long lWait,

BSTR *bstrType)

VB

Public Property Get Type(

ByVal lWait As Long) As String

This property returns the type of the given recipe.

Return Values

S_OK - success

else - failed

Memory Allocation

The caller is responsible for releasing the memory associated with the returned string.

Visual Basic Usage Example

Private Sub Button1_Click()
    Dim szType As String
    Dim objExecRecipeInfo As DVBCMExecRecipeInfo
    Call GetExecRecipeInfoObject(objExecRecipeInfo)
    szType = objExecRecipeInfo.Type
End Sub

Parameter Name

Purpose

lWait

Optional. Default = 30000. Time to wait for a server resource in milliseconds.

bstrType

The returned string representing the recipe's type.