1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsselectioncontext.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSelectionContext
{
%Docstring(signature="appended")
Encapsulates the context of a layer selection operation.
.. versionadded:: 3.28
%End
%TypeHeaderCode
#include "qgsselectioncontext.h"
%End
public:
double scale() const;
%Docstring
Returns the map scale at which the selection should occur.
The scale value indicates the scale denominator, e.g. 1000.0 for a
1:1000 map.
.. seealso:: :py:func:`setScale`
%End
void setScale( double scale );
%Docstring
Sets the map ``scale`` at which the selection should occur.
The scale value indicates the scale denominator, e.g. 1000.0 for a
1:1000 map.
.. seealso:: :py:func:`scale`
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsselectioncontext.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|