Returns the next logical campaign element given the current index. if there is no logical campaign element, then a value of NULL is returned.
Returns the next logical campaign element given the current index. if there is no logical campaign element, then a value of NULL is returned.
[Visual Basic] Function NextCampaignElement(ByVal Integer) As ICampaignElement
[C#] ICampaignElement NextCampaignElement(int);
[C++] ICampaignElement* NextCampaignElement(int);
[JScript] function NextCampaignElement(int): ICampaignElement;
Returns the next logical element in this campaign relative to the given index. The index takes the form "1.2.3.4" where each '.' in the index is a level in the 'nested' hierarchy of elements. Typically the returned element will be a form reference that can be used to get the actual IFormModel to be displayed next.
[Visual Basic] Function NextCampaignElement(ByVal String) As ICampaignElement
[C#] ICampaignElement NextCampaignElement(string);
[C++] ICampaignElement* NextCampaignElement(String*);
[JScript] function NextCampaignElement(String): ICampaignElement;
ICampaignElementContainer Interface | Portrate.Interview.Model Namespace