UserList Event

This event fires once for each user returned when ListUsers or GetUserInfo is called.

Syntax

class ShareFileUserListEventParams {
public:
  const QString &Id();
  const QString &FirstName();
  const QString &LastName();
  const QString &Company();
  const QString &Email();
  const QString &CreationDate();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void UserList(ShareFileUserListEventParams *e);
// Or, subclass ShareFile and override this emitter function. virtual int FireUserList(ShareFileUserListEventParams *e) {...}

Remarks

This event fires once for each user returned when ListUsers or GetUserInfo is called. The users cannot be modified from this event. If the user does not have a specified company that parameter will be left as an empty string ("").

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 Qt Edition - Version 20.0 [Build 8265]