smartinspectpython.siinfoeventargs

Module: siinfoeventargs.py

Revision History

Date Version Description
2023/05/30 3.0.0.0 Initial Version.

@export
class SIInfoEventArgs:

Arguments passed to the SmartInspect.InfoEvent event.

It has only one public class property named Message.

Threadsafety:

This class is fully thread-safe.

SIInfoEventArgs(message: str)

Initializes a new instance of the class.

Arguments:
  • message (str): Informational message to convey.
Message: str

Informational message to convey.

@export
class SIInfoEventHandler:

Event handler type for the SmartInspect.InfoEvent event.

SIInfoEventHandler( sender: object, e: smartinspectpython.siinfoeventargs.SIInfoEventArgs)

Initializes a new instance of the class.

Arguments:
  • sender (object): The object which fired the event.
  • e (SIInfoEventArgs): Arguments that contain detailed information related to the event.