Product Documentation
Cadence User Interface SKILL Reference
Product Version IC23.1, September 2023

hiGetChoiceStrings

hiGetChoiceStrings(
o_field
)
=> l_string

Description

Returns strings of all choices in a list box, radio button, or cyclic field.

Argument

o_field

Name of a list box, radio button, or cyclic field.

Value Returned

l_string

Strings of all choices.

Examples

Returns a string of all choices in a list box, radio button, or cyclic field.

form->listbox->choices= (list '("layout" "app-layout.png") 
        '("schematic" (25166049 327 360)) "icde" '("icms" "app-icms.png"))
(hiGetChoiceStrings form->listbox) =>  ("layout" "schematic" "icde" "icms")
form->cyclic->choices = list("stringValue"
               '("stringIconPair1" "app-layout.png")
               '("stringIconPair2" (23448 120 32))
               '(2394 120 32 "iconString1")
               '(2345 120 32 iconSymbol1)
               '(23456 120 32)
               '("app-layout.png" 120 32)
               '("app-layout.png" 120 32 "iconString2")
               list("app-layout.png" 120 32 'iconSymbol2)
               )
(hiGetChoiceStrings form->cyclic) 
=>  ("stringValue" "stringIconPair1" "stringIconPair2" "iconString1" "iconSymbol1" nil nil "iconString2" "iconSymbol2")

Related Topics

Form and Field Functions


Return to top
 ⠀
X