The object of the CENPyOlpWM_AttribInitOperator class is passed to the PostWmInitAttributes callback as a parameter.
It can be used to obtain the required operators within the scope of the PostWmInitAttributes callback in the %WORK_METHOD%.py script file, located in the folder of the plugin.
[Example]
def PostWmInitAttributes(WmAttribInitOperator):
pass
[Example]
attribCreator = WmAttribInitOperator.GetAttribCreator()
[Example]
attribGetter = WmAttribInitOperator.GetAttribGetter()
[Example]
attribSetter = WmAttribInitOperator.GetAttribSetter()
[Example]
logOperator = WmAttribInitOperator.GetLoggerOperator()
|