ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Core Namespace / EditingOptions Class / GetVertexSymbolOptions Method
The type of vertex symbol to obtain.
Example

In This Topic
    GetVertexSymbolOptions Method
    In This Topic
    Gets the symbol for a vertex while sketching. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Function GetVertexSymbolOptions( _
       ByVal symbolType As VertexSymbolType _
    ) As VertexSymbolOptions
    public VertexSymbolOptions GetVertexSymbolOptions( 
       VertexSymbolType symbolType
    )

    Parameters

    symbolType
    The type of vertex symbol to obtain.

    Return Value

    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Get Sketch Vertex Symbology Options
    {
      var options = ApplicationOptions.EditingOptions;
      await QueuedTask.Run(() =>
      {
        //There are 4 vertex symbol settings - selected, unselected and the
        //current vertex selected and unselected.
        var reg_select = options.GetVertexSymbolOptions(VertexSymbolType.RegularSelected);
        var reg_unsel = options.GetVertexSymbolOptions(VertexSymbolType.RegularUnselected);
        var curr_sel = options.GetVertexSymbolOptions(VertexSymbolType.CurrentSelected);
        var curr_unsel = options.GetVertexSymbolOptions(VertexSymbolType.CurrentUnselected);
    
        //to convert the options to a symbol use
        //GetPointSymbol
        var reg_sel_pt_symbol = reg_select.GetPointSymbol();
        //ditto for reg_unsel, curr_sel, curr_unsel
      });
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also