SelectionProperties Class
Defines selection properties for the GeoView. More...
Header: | #include <SelectionProperties> |
Since: | Esri::ArcGISRuntime 100.4 |
Public Functions
SelectionProperties() | |
SelectionProperties(const QColor &color) | |
SelectionProperties(const SelectionProperties &other) | |
SelectionProperties(SelectionProperties &&other) | |
~SelectionProperties() | |
QColor | color() const |
void | setColor(const QColor &color) |
SelectionProperties & | operator=(const SelectionProperties &other) |
SelectionProperties & | operator=(SelectionProperties &&other) |
Detailed Description
Defines selection properties for the GeoView.
Default values are as follows:
- color - Cyan
See also GeoView.
Member Function Documentation
SelectionProperties::SelectionProperties()
Default constructor. Creates a default SelectionProperties instance.
SelectionProperties::SelectionProperties(const QColor &color)
Constructor that takes the color of the selection.
SelectionProperties::SelectionProperties(const SelectionProperties &other)
Copy constructor from other SelectionProperties.
SelectionProperties::SelectionProperties(SelectionProperties &&other)
Move constructor from other SelectionProperties.
SelectionProperties::~SelectionProperties()
Destructor
QColor SelectionProperties::color() const
Returns the color value in the selection properties.
See also setColor().
void SelectionProperties::setColor(const QColor &color)
Sets the color value in the selection properties to color.
See also color().
SelectionProperties &SelectionProperties::operator=(const SelectionProperties &other)
Assignment operator from other SelectionProperties.
SelectionProperties &SelectionProperties::operator=(SelectionProperties &&other)
Move operator from other SelectionProperties.