AttachmentList Event

Fired when an attachment is retrieved from the server.

Syntax

class Office365AttachmentListEventParams {
public:
  const QString &Id();
  const QString &Name();
  const QString &ContentType();
  const QString &ContentLocation();
  const QByteArray &ContentBytes();
  const QString &ContentId();
  const QString &LastModifiedDateTime();
  bool IsInline();
  int Size();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void AttachmentList(Office365AttachmentListEventParams *e);
// Or, subclass Office365 and override this emitter function. virtual int FireAttachmentList(Office365AttachmentListEventParams *e) {...}

Remarks

The AttachmentList event is fired for each attachment retrieved from the server when ListAttachments is called.

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