IDVBCMBatchEdit/Info::removedfromexecutiveby
Method Signatures |
|
C\C++ |
HRESULT get_RemovedFromExecutiveBy( long lWait, BSTR *bstrRemovedFromExecutiveBy) |
VB |
Public Property Get RemovedFromExecutiveBy( ByVal lWait As Long) As String |
Returns the remove from Batch Executive by user of the batch in the campaign.
Return Values
S_OK - success
else - failed
Memory Allocation
none
Visual Basic Usage Example
Private Sub Button1_Click()
Dim objCampaignInfo As DVBCMCampaignInfo
Dim objBatchInfo As DVBCMBatchInfo
Dim strRemovedFromExecutiveBy As String
Dim strCampaign As String
Dim strBatchID As String
GetCampaignID(strCampaign)
GetBatchIDInCampaign(strCampaign, strBatchID)
GetCampaignInfoObject(objCampaignInfo)
GetBatchInfoObjectInCampaign(objCampaignInfo, objBatchInfo)
strRemovedFromExecutiveBy = objBatchInfo.RemovedFromExecutiveBy
End Sub
Parameter Name |
Purpose |
|---|---|
lWait |
Optional. Default = 30000. Time to wait for a server resource in milliseconds. |
bstrRemovedFromExecutiveBy |
Removed from Batch Executive user of the batch. |