inflectVerb
Returns the inflected form of a verb.
Parameters
WORD (string)
The verb to inflect.
COUNT (string or number)
Optional. The verb's number. Specify singular or plural, or enter a number.
Default: singular
PERSON (number)
Optional. The verb's person. Enter 1 (first person), 2 (second person), or 3 (third person).
Default: 3
TENSE (string)
Optional. The verb's tense. Specify past, present, or future.
Default: present
IS PERFECT (Boolean)
Optional. Whether the verb’s aspect is perfective.
Default: false
IS PROGRESSIVE (Boolean)
Optional. Whether the verb’s aspect is progressive.
Default: false
Examples
ATL in Script | Result |
---|---|
| strike |
| strikes |
| struck |
| will strike |
To make the verb's aspect perfective, set the fifth parameter to true.
ATL in Script | Result |
---|---|
| have struck |
| has struck |
| had struck |
| will have struck |
To make the verb's aspect progressive, set the sixth parameter to true.
ATL in Script | Result |
---|---|
| am striking |
| are striking |
| is striking |
| will be striking |
| was striking |
| were striking |
| have been striking |
| has been striking |
| will have been striking |
| had been striking |