Discuss this help topic in SecureBlackbox Forum

TElMailAddressList.DeleteGroup

TElMailAddressList     See also     


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


Deletes address group from the address list.

Declaration

[C#]
    void DeleteGroup(int Index);
    void DeleteGroup(string GroupName);

[VB.NET]
    Sub DeleteGroup(ByVal Index As Integer)
    Sub DeleteGroup(ByVal GroupName As String)

[Pascal]
    procedure DeleteGroup(Index: LongInt);
    procedure DeleteGroup(const GroupName: TString);

[C++]
    void DeleteGroup(int32_t Index);
    void DeleteGroup(const sb_u16string &GroupName);
    void DeleteGroup(const std::wstring &GroupName);

[PHP]
    void DeleteGroup(integer $Index)
    void DeleteGroup(string $GroupName)

[Java]
    void deleteGroup(int Index);
    void deleteGroup(String GroupName);

Parameters

  • Index - index of the group to be deleted in the address list.
  • GroupName - name of the group.

Description

    Use this method to delete a group from the address list.

See also:     AddGroup     DeleteAddress    

Discuss this help topic in SecureBlackbox Forum