Class 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 use GeoView.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) value
      void setColor​(int color)
      Sets the selection color to an ARGB(alpha, red, green, blue) value.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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