mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
This enum can be used in the QgsProcessingUtils::mapLayerFromString() and parameterAsPointCloudLayer() calls to control layer loading, e.g. skipping index generation or not applying default style, etc.
6 lines
465 B
Python
6 lines
465 B
Python
# The following has been generated automatically from src/core/processing/qgsprocessing.h
|
|
# monkey patching scoped based enum
|
|
QgsProcessing.LayerOptionsFlag.SkipIndexGeneration.__doc__ = "Do not generate index when creating a layer. Makes sense only for point cloud layers"
|
|
QgsProcessing.LayerOptionsFlag.__doc__ = 'Layer options flags\n\n.. versionadded:: 3.32\n\n' + '* ``SkipIndexGeneration``: ' + QgsProcessing.LayerOptionsFlag.SkipIndexGeneration.__doc__
|
|
# --
|