- 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
-
-
Property Summary
Properties Type Property Description ObjectProperty<Color>
color
The selection color.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ObjectProperty<Color>
colorProperty()
The selection color.Color
getColor()
Gets the value of the property color.void
setColor(int color)
Deprecated, for removal: This API element is subject to removal in a future version.as of 200.0.0, replaced bysetColor(Color)
void
setColor(Color color)
Sets the value of the property color.
-
-
-
Property Detail
-
color
public ObjectProperty<Color> colorProperty
The selection color.- Since:
- 200.0.0
- See Also:
getColor()
,setColor(Color)
-
-
Method Detail
-
colorProperty
public ObjectProperty<Color> colorProperty()
The selection color.- Since:
- 200.0.0
- See Also:
getColor()
,setColor(Color)
-
getColor
public Color getColor()
Gets the value of the property color.- Property description:
- The selection color.
- Since:
- 200.0.0
-
setColor
public void setColor(Color color)
Sets the value of the property color.- Property description:
- The selection color.
- Since:
- 200.0.0
-
setColor
@Deprecated(since="200.0.0", forRemoval=true) public void setColor(int color)
Deprecated, for removal: This API element is subject to removal in a future version.as of 200.0.0, replaced bysetColor(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
-
-