This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Controls > ESRI ArcGIS Controls > Interfaces > IE > IEngineEditProperties Interface > IEngineEditProperties.StreamGroupingCount Property (ArcObjects .NET 10.5 SDK) |
Controls the number of points to group together when streaming.
[Visual Basic .NET] Public Property StreamGroupingCount As Integer
[C#] public int StreamGroupingCount {get; set;}
[C++]
HRESULT get_StreamGroupingCount(
long* tol
);
[C++]
HRESULT put_StreamGroupingCount(
long tol
);
[C++]
Parameters tol [out, retval] tol is a parameter of type long tol [in] tol is a parameter of type long
The StreamGroupingCount property controls how many grouped points are added to the undo stack by the ControlsEditingSketchTool when in stream mode. By default StreamGroupingCount is 50.
If StreamGroupingCount is 1 each streamed point added will be undoable and redoable. If the streaming tolerance is low, however, you may wish to make the grouping larger so that groups of added points can be undone or redone by the user with only one undo or redo.
Use the ControlsEditingSketchStreamingCommand to set the ControlsEditingSketchTool in stream mode.
1085 800a043d: The streaming group count needs to be between 1 and 1,000,000