# Skip and *
The skip
and *
properties are used to prevent methods form being called in given rows.
To prevent a method being called either set the skip
property to true
or the *
property to false
For the apperance
method, in addition to skipping the whole method, you can skip individual paint or effect fields.
Skipping methods is particularly useful when the method does not require any properties or for methods that don't have and properties other than the tagSearch
like group
.
It is also useful for preventing default properties being applied to an effect and preventing paint fields being added.
Method | Description |
---|---|
skip | Set to true is you want the method to be skipped in a particular row. Valid Values: true or false |
* | Set to false if you want the method to be skipped in a particular row. Valid Values: true or false |
# Sample Spreadsheets
Using skip
and *
with the group
method.
animals | ||
group | ||
* | skip | comment |
Neither skip or \* have been set the animals will be grouped | ||
TRUE | The animals will be not be grouped | |
FALSE | The animals will be not be grouped |
Using skip
and *
with the appearance
method.
CHANGE THIS TABLE!!!!!!! 👇👇👇👇👇👇👇👇👇👇👇👇👇👇
animals | ||
group | ||
* | skip | comment |
Neither skip or \* have been set the animals will be grouped | ||
TRUE | The animals will be not be grouped | |
FALSE | The animals will be not be grouped |