Hi @cobo
- Info down pipeline
To transfer information for a filter to the next filter,use the “KEYS_TO_COPY” information key:
It will not go through the whole pipeline though.
It is possible to have keys copy themselves over and over but you need to create your own key class implementing CopyDefaultInformation
(or use a existing one like vtkInformationDataObjectMetaDataKey
)
- Info from server to client
Use Information Properties to send information from the server to the client. You can take a look at Examples/Plugins/PropertyWidgets/Plugin/PropertyWidgetsFilter.xml
and it’s information_only
property.