View.Select Methods
Selects one or more features or plots in this View and updates affected areas.
Overload List
Name | Description | |
---|---|---|
Public method | Select(Id id) | Selects the feature with the specified identity in this View and updates affected areas. |
Public method | Select(PlotId id) | Selects the plot with the specified identity in this View and updates affected areas. |
Public method | Select(Id id, SelectMode mode) | Selects the feature with the specified identity in this View using the specified SelectMode and then updates affected areas. |
Public method | Select(PlotId id, SelectMode mode) | Selects the plot with the specified identity in this View using the specified SelectMode and then updates affected areas. |
Public method | Select(IdCollection ids, SelectMode mode) | Selects the specified features in this View and updates affected areas. |
Public method | Select(IdCollection ids, PlotIdCollection plotIds, SelectMode mode) | Selects the specified features and plots in this View and updates affected areas. |
Public method | Select(IEnumerable< Id > ids, SelectMode mode) | Selects the specified features in this View and updates affected areas. |
Public method | Select(IEnumerable< Id > ids, IEnumerable< PlotId > plotIds, SelectMode mode) | Selects the specified features and plots in this View and updates affected areas. |
Select(Id id)
Selects the feature with the specified identity in this View and updates affected areas.Syntax
public void Select (
Id id
)
Parameters
The identity of the feature to select.
Remarks
Whether a feature is selected or not is not a property of the feature itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
If any other features or plots were already selected, they will be deselected when this method is called.
Select(PlotId id)
Selects the plot with the specified identity in this View and updates affected areas.Syntax
public void Select (
PlotId id
)
Parameters
The identity of the plot to select.
Remarks
Whether a plot is selected or not is not a property of the plot itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
If any other features or plots were already selected, they will be deselected when this method is called.
Select(Id id, SelectMode mode)
Selects the feature with the specified identity in this View using the specified SelectMode and then updates affected areas.Syntax
public void Select (
Id id,
SelectMode mode
)
Parameters
The identity of the feature to select.
Indicates if other features and plots are deselected.
Remarks
Whether a feature is selected or not is not a property of the feature itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified feature(s) and then updates affected areas.
Select(PlotId id, SelectMode mode)
Selects the plot with the specified identity in this View using the specified SelectMode and then updates affected areas.Syntax
public void Select (
PlotId id,
SelectMode mode
)
Parameters
The identity of the plot to select.
Indicates if other features and plots are deselected.
Remarks
Whether a plot is selected or not is not a property of the plot itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified plot(s) and then updates affected areas.
Select(IdCollection ids, SelectMode mode)
Selects the specified features in this View and updates affected areas.Syntax
public void Select (
IdCollection ids,
SelectMode mode
)
Parameters
A list of identities of features to select.
Indicates if other features and plots are deselected.
Remarks
Whether a feature is selected or not is not a property of the feature itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified feature(s) and then updates affected areas.
Select(IdCollection ids, PlotIdCollection plotIds, SelectMode mode)
Selects the specified features and plots in this View and updates affected areas.Syntax
public void Select (
IdCollection ids,
PlotIdCollection plotIds,
SelectMode mode
)
Parameters
A list of identities of features to select.
A list of identities of plots to select.
Indicates if other features and plots are deselected.
Remarks
Whether a plot is selected or not is not a property of the plot itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified plot(s) and then updates affected areas.
Select(IEnumerable< Id > ids, SelectMode mode)
Selects the specified features in this View and updates affected areas.Syntax
public void Select (
IEnumerable< Id > ids,
SelectMode mode
)
Parameters
A list of identities of features to select.
Indicates if other features and plots are deselected.
Remarks
Whether a feature is selected or not is not a property of the feature itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified feature(s) and then updates affected areas.
Select(IEnumerable< Id > ids, IEnumerable< PlotId > plotIds, SelectMode mode)
Selects the specified features and plots in this View and updates affected areas.Syntax
public void Select (
IEnumerable< Id > ids,
IEnumerable< PlotId > plotIds,
SelectMode mode
)
Parameters
A list of identities of features to select.
A list of identities of plots to select.
Indicates if other features and plots are deselected.
Remarks
Whether a plot is selected or not is not a property of the plot itself. Instead, each view keeps a separate list of features and plots that are selected, in that view only. In other words, it is possible to show the same feature in two different views, but only selected in one of them.
This method optionally clears the selection list of this view, adds the specified plot(s) and then updates affected areas.
Platforms
Windows, Linux, Android