The object of the CENPyOlpWM_POAttribOperator class is passed to the PostProcessOperationAttributes callback as a parameter.
It can be used to obtain the required operators within the scope of the PostProcessOperationAttributes callback in %WORK_METHOD%.py script file, located in the folder of the plugin.
[Example]
def PostProcessOperationAttributes(poa):
pass
[Example]
attribGetter = poa.GetAttribGetter()
[Example]
attribSetter = poa.GetAttribSetter()
[Example]
logOperator = poa.GetLoggerOperator()
[Example]
csvParser = poa.GetCsvParserOperator()
[Example]
processGeometryOperator = poa.GetGeometryOperator()
[Example]
olpController = poa.GetController()
|