SecureBlackbox 2020 Qt Edition

Questions / Feedback?

FormatElement Event

Reports the XML element that is currently being processed.

Syntax

class SOAPQuickSignerFormatElementEventParams {
public:
  const QString &StartTagWhitespace();
  void SetStartTagWhitespace(const QString &qsStartTagWhitespace);
  const QString &EndTagWhitespace();
  void SetEndTagWhitespace(const QString &qsEndTagWhitespace);
  int Level();
  const QString &Path();
  bool HasChildElements();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void FormatElement(SOAPQuickSignerFormatElementEventParams *e);
// Or, subclass SOAPQuickSigner and override this emitter function. virtual int FireFormatElement(SOAPQuickSignerFormatElementEventParams *e) {...}

Remarks

Path and Level specify the path to the XML element being processed and its nesting level, respectively.

HasChildElements specify if processed XML element has child elements.

Among other purposes, this event may be used to add whitespace formatting before or after a particular element in the signature.

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