ArcObjects Library Reference (Controls)  

IEngineEditProperties.StreamGroupingCount Property

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

Product Availability

Available with ArcGIS Engine.

Description

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.

Errors Returned

1085 800a043d: The streaming group count needs to be between 1 and 1,000,000

See Also

IEngineEditProperties Interface