Discuss this help topic in SecureBlackbox Forum

TElDCBatchMessage.Add

TElDCBatchMessage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Adds a message to the list.

Declaration

[C#]
    int Add(TElDCBaseMessage Message, bool CreateCopy);

[VB.NET]
    Function Add(ByVal Message As TElDCBaseMessage, ByVal CreateCopy As Boolean) As Integer

[Pascal]
    function Add(Message : TElDCBaseMessage; CreateCopy : boolean) : integer;

[C++]
    int32_t Add(TElDCBaseMessage &Message, bool CreateCopy);
    int32_t Add(TElDCBaseMessage *Message, bool CreateCopy);

[PHP]
    integer Add(TElDCBaseMessage $Message, bool $CreateCopy)

[Java]
    int add(TElDCBaseMessage Message, boolean CreateCopy);

Parameters

  • Message - The message to be added.
  • CreateCopy - Set this property to True if the copy of the desired message should be added instead of the original object.

Return value

    Returns the index of the newly added item in the list.

Description

    Use this method to add a message to the list.

See also:     Messages    

Discuss this help topic in SecureBlackbox Forum