Interfaces
PropertyEnum
PropertyEnum is a Property with additional enum-specific APIs.
Returns the available enum values
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
valuesvalues() -> EnumValues
local vmi = context:viewModel()
if vmi then
local textAlignment = vmi:getEnum('textAlignment')
if textAlignment then
local values = textAlignment:values()
end
end
Was this page helpful?