smartinspectpython.siinfoeventargs

@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: 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.