LinkList Event

This event fires once for each link returned when ListLinks or GetLinkInfo is called.

Syntax

class ShareFileLinkListEventParams {
public:
  const QString &Id();
  const QString &Title();
  const QString &URL();
  int LinkType();
  int AccessLevel();
  const QString &ExpirationDate();
  const QString &CreationDate();
  bool IsViewOnly();
  int MaxDownloads();
  int TotalDownloads();
  bool NotifyOnAccess();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void LinkList(ShareFileLinkListEventParams *e);
// Or, subclass ShareFile and override this emitter function. virtual int FireLinkList(ShareFileLinkListEventParams *e) {...}

Remarks

This event fires once for each link returned when ListLinks or GetLinkInfo is called. The link cannot be modified from this event. This event will not show the items related to the specific link when calling ListLinkItems. Those will be listed using the ItemList event.

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