You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Decorator function used to define a user expression function.
134
139
140
+
:param args: Number of parameters, set to 'auto' to accept a variable length of parameters.
141
+
:param group: The expression group to which this expression should be added.
142
+
:param \**kwargs:
143
+
See below
144
+
145
+
:Keyword Arguments:
146
+
* *referenced_columns* (``list``) --
147
+
An array of field names on which this expression works. Can be set to ``[QgsFeatureRequest.ALL_ATTRIBUTES]``. By default empty.
148
+
* *usesgeometry* (``bool``) --
149
+
Defines if this expression requires the geometry. By default False.
150
+
* *handlesnull* (``bool``) --
151
+
Defines if this expression has custom handling for NULL values. If False, the result will always be NULL as soon as any parameter is NULL. False by default.
0 commit comments