Package com.esri.arcgisruntime.mapping
Class SelectionProperties
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.SelectionProperties
-
public final class SelectionProperties extends java.lang.Object
Represents selection properties for selecting graphics and features in a GeoView. Allows the selection color to be changed. Default color is cyan, 0xFF00FFFF. To modify the selection properties on a GeoView useGeoView.getSelectionProperties()
.- Since:
- 100.4.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColor()
Gets the selection color as an ARGB(alpha, red, green, blue) valuevoid
setColor(int color)
Sets the selection color to an ARGB(alpha, red, green, blue) value.
-
-
-
Method Detail
-
setColor
public void setColor(int color)
Sets the selection color to an ARGB(alpha, red, green, blue) value.- Parameters:
color
- an integer representing the color property as 0xAARRGGBB- Since:
- 100.4.0
-
getColor
public int getColor()
Gets the selection color as an ARGB(alpha, red, green, blue) value- Returns:
- an integer representing the color property as 0xAARRGGBB
- Since:
- 100.4.0
-
-