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