ArcGIS Explorer Component Help |
MapDisplay..::.TrackPolyline Method (Color) |
MapDisplay Class See Also |
A synchronous (blocking) call returning a new Polyline at the location of a series of mouse clicks on the display, using the specified
line color while tracking.
Namespace:
ESRI.ArcGISExplorer.MappingAssembly: ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)
Syntax
C# |
---|
public Polyline TrackPolyline( Color color ) |
Visual Basic (Declaration) |
---|
Public Function TrackPolyline ( _ color As Color _ ) As Polyline |
Parameters
- color
- Type: System.Drawing..::.Color
The color of the partially completed line shown during the tracking operation.
Return Value
A new Polyline defined by a series of mouse clicks on the display.Remarks
This method returns a user-clicked Polyline on the map, using the specified line color while tracking.
This method will block the user interface (UI) thread until the user has completed tracking the Polyline. The method can be cancelled if the ESC key is pressed after the method has been called or the CancelTracking()()() method is called; in this case the method will return nullNothingnullptra null reference (Nothing in Visual Basic).
Alternatively you may wish to use an asynchronous equivalent, see the BeginTrackPolyline methods.