File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
python/core/auto_generated/labeling Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -408,13 +408,17 @@ Returns the QgsExpression for this label settings. May be ``None`` if isExpressi
408
408
Returns the polygon placement flags, which dictate how polygon labels can be placed.
409
409
410
410
.. seealso:: :py:func:`setPolygonPlacementFlags`
411
+
412
+ .. versionadded:: 3.14
411
413
%End
412
414
413
415
void setPolygonPlacementFlags( QgsLabeling::PolygonPlacementFlags flags );
414
416
%Docstring
415
417
Sets the polygon placement ``flags``, which dictate how polygon labels can be placed.
416
418
417
419
.. seealso:: :py:func:`polygonPlacementFlags`
420
+
421
+ .. versionadded:: 3.14
418
422
%End
419
423
420
424
bool centroidWhole;
Original file line number Diff line number Diff line change @@ -322,13 +322,15 @@ class CORE_EXPORT QgsLabelFeature
322
322
* Returns the polygon placement flags, which dictate how polygon labels can be placed.
323
323
*
324
324
* \see setPolygonPlacementFlags()
325
+ * \since QGIS 3.14
325
326
*/
326
327
QgsLabeling::PolygonPlacementFlags polygonPlacementFlags () const { return mPolygonPlacementFlags ; }
327
328
328
329
/* *
329
330
* Sets the polygon placement \a flags, which dictate how polygon labels can be placed.
330
331
*
331
332
* \see polygonPlacementFlags()
333
+ * \since QGIS 3.14
332
334
*/
333
335
void setPolygonPlacementFlags ( QgsLabeling::PolygonPlacementFlags flags ) { mPolygonPlacementFlags = flags; }
334
336
Original file line number Diff line number Diff line change @@ -443,7 +443,7 @@ class CORE_EXPORT QgsPalLayerSettings
443
443
LinePlacementOptions = 99 , // !< Line placement flags
444
444
OverrunDistance = 102 , // !< Distance which labels can extend past either end of linear features
445
445
LabelAllParts = 103 , // !< Whether all parts of multi-part features should be labeled
446
- PolygonLabelOutside = 109 , // !< Whether labels outside a polygon feature are permitted, or should be forced
446
+ PolygonLabelOutside = 109 , // !< Whether labels outside a polygon feature are permitted, or should be forced (since QGIS 3.14)
447
447
448
448
// rendering
449
449
ScaleVisibility = 23 ,
@@ -652,13 +652,15 @@ class CORE_EXPORT QgsPalLayerSettings
652
652
* Returns the polygon placement flags, which dictate how polygon labels can be placed.
653
653
*
654
654
* \see setPolygonPlacementFlags()
655
+ * \since QGIS 3.14
655
656
*/
656
657
QgsLabeling::PolygonPlacementFlags polygonPlacementFlags () const { return mPolygonPlacementFlags ; }
657
658
658
659
/* *
659
660
* Sets the polygon placement \a flags, which dictate how polygon labels can be placed.
660
661
*
661
662
* \see polygonPlacementFlags()
663
+ * \since QGIS 3.14
662
664
*/
663
665
void setPolygonPlacementFlags ( QgsLabeling::PolygonPlacementFlags flags ) { mPolygonPlacementFlags = flags; }
664
666
You can’t perform that action at this time.
0 commit comments