ICustomOperator.Get Method
Gets the next feature.
Get()
Gets the next feature.Syntax
public System.Boolean Get ()
Return Value
True if another feature is returned, False if not more features are returned.
Remarks
This method does the real processing. It should get features from its inputs by calling CustomOperatorContext.ReadNext or CustomOperatorContext.ReadNextFromInput. If the call returns True, the operator could access the feature using CustomOperatorContext.GetFeature. The custom operator then do the processing and returns a feature to the caller, with the CustomOperatorContext.SetFeature method.
This method can also manipulate the presentation of features by modifying the collection of visualizers attached to the feature. Normally, visualizers are added by VisualizationOperator, so if the custom operator should manipulate the presentation, it should be used after a VisualizationOperator in the chain of operators. Remember that a visualizer is a shared object, create a copy and change the copy.
The method should return True if it returns a feature through CustomOperatorContext. If no more objects can be generated it should return False. The method is called repeatedly until it returns False.
Platforms
Windows, Linux, Android