TsgcWSPClient_E2EE › Events › OnE2EEGroupCreated
Fired when a new encrypted group is created.
property OnE2EEGroupCreated: TsgcWSE2EEOnGroupCreated;
// TsgcWSE2EEOnGroupCreated = procedure(Sender: TObject; const aGroup: string) of object
—
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.
procedure TForm1.oE2EEE2EEGroupCreated(Sender: TObject; const aGroup: string);
begin
lbxGroups.Items.Add(aGroup);
end;