QGIS/resources/function_help/json/$currentfeature

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
589 B
Plaintext
Raw Normal View History

{
"name": "$currentfeature",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Record and Attributes"],
"description": "Returns the current feature being evaluated. This can be used with the 'attribute' function to evaluate attribute values from the current feature. <b>WARNING: This function is deprecated. It is recommended to use the replacement @feature variable instead.</b>",
"examples": [{
"expression": "attribute( $currentfeature, 'name' )",
"returns": "value stored in 'name' attribute for the current feature"
}],
"tags": ["evaluated", "attribute", "current", "evaluate"]
}