FMX.AddressBook.TCustomAddressBook.RemoveGroup

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure RemoveGroup(const AGroup: TAddressBookGroup); overload;
procedure RemoveGroup(const AID: Integer); overload;

C++

void __fastcall RemoveGroup(TAddressBookGroup* const AGroup)/* overload */;
void __fastcall RemoveGroup(const int AID)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.AddressBook.pas
FMX.AddressBook.hpp
FMX.AddressBook TCustomAddressBook

Description

Removes the specified group from a device Address Book.

Use this method to remove the specified group from Address Book. This method is overloaded:

  • The first overloaded method removes a group by its reference AGroup of the TAddressBookGroup type.
  • The second overloaded method removes a group by the group ID.

For more information and samples, see Mobile Tutorial: Using an Address Book Component (iOS and Android).

See Also