TsgcWSPClient_E2EEEvents › OnE2EEGroupCreated

OnE2EEGroupCreated Event

Fired when a new encrypted group is created.

Syntax

property OnE2EEGroupCreated: TsgcWSE2EEOnGroupCreated;
// TsgcWSE2EEOnGroupCreated = procedure(Sender: TObject; const aGroup: string) of object

Default Value

Remarks

Notifies that a new group named aGroup has been created on the server. The event fires on the creator after a successful CreateGroup call and on any other client that is interested in the new group. Use it to refresh the group list in the UI.

Example

procedure TForm1.oE2EEE2EEGroupCreated(Sender: TObject; const aGroup: string);
begin
  lbxGroups.Items.Add(aGroup);
end;

Back to Events