GeoBlazor Pro

dymaptic.GeoBlazor.Pro

dymaptic.GeoBlazor.Pro.Events

SelectionChangeEventInfo Class

This information is returned as `toolEventInfo` parameter for the update event while the user is selecting or deselecting graphics using `Shift+Left-click`. ArcGIS Maps SDK for JavaScript

public record SelectionChangeEventInfo : dymaptic.GeoBlazor.Pro.Events.ToolEventInfo, dymaptic.GeoBlazor.Core.Interfaces.IUpdateToolEventInfo, System.IEquatable<dymaptic.GeoBlazor.Pro.Events.SelectionChangeEventInfo>

Inheritance System.Object 🡒 ToolEventInfo 🡒 SelectionChangeEventInfo

Implements IUpdateToolEventInfo, System.IEquatable<SelectionChangeEventInfo>

Constructors

SelectionChangeEventInfo(IReadOnlyCollection, IReadOnlyCollection) Constructor

This information is returned as `toolEventInfo` parameter for the update event while the user is selecting or deselecting graphics using `Shift+Left-click`. ArcGIS Maps SDK for JavaScript

public SelectionChangeEventInfo(System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.Graphic>? Added=null, System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.Graphic>? Removed=null);

Parameters

Added System.Collections.Generic.IReadOnlyCollection<Graphic>

An array of graphics representing the latest graphic selected. ArcGIS Maps SDK for JavaScript

Removed System.Collections.Generic.IReadOnlyCollection<Graphic>

An array of graphics representing the latest graphic deselected. ArcGIS Maps SDK for JavaScript

Properties

SelectionChangeEventInfo.Added Property

An array of graphics representing the latest graphic selected. ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.Graphic>? Added { get; init; }

Property Value

System.Collections.Generic.IReadOnlyCollection<Graphic>

SelectionChangeEventInfo.InfoType Property

The type of the ToolEventInfo

public override string InfoType { get; }

Property Value

System.String

SelectionChangeEventInfo.Removed Property

An array of graphics representing the latest graphic deselected. ArcGIS Maps SDK for JavaScript

public System.Collections.Generic.IReadOnlyCollection<dymaptic.GeoBlazor.Core.Components.Graphic>? Removed { get; init; }

Property Value

System.Collections.Generic.IReadOnlyCollection<Graphic>