1
0
Fork 0
freesewing/markdown/dev/reference/config/options/list/en.md
2021-10-17 18:26:00 +02:00

483 B

title
list

Use a list option when you want to offer an array of choices.

Your list option should be an object with these properties:

  • dflt : The default for this option
  • list : An array of available values options
options: {
  cuffStyle: { 
    dflt: "angledBarrelCuff",
    list: [
      "roundedBarrelCuff",
      "angledBarrelCuff"
      "straightBarrelCuff"
      "roundedFrenchCuff"
      "angledFrenchCuff"
      "straightFrenchCuff"
    ]
  }
}