## Sector [Property]: property.html ### Properties * `id` **[String][1]** Sector id, eg. `typography` * `name` **[String][1]** Sector name, eg. `Typography` * `open` **[Boolean][2]?** Indicates the open state. * `properties` **[Array][3]<[Object][4]>?** Indicate an array of Property definitions. ### getId Get sector id. Returns **[String][1]** ### getName Get sector name. Returns **[String][1]** ### setName Update sector name. #### Parameters * `value` **[String][1]** New sector name ### isOpen Check if the sector is open Returns **[Boolean][2]** ### setOpen Update Sector open state #### Parameters * `value` **[Boolean][2]** ### isVisible Check if the sector is visible Returns **[Boolean][2]** ### getProperties Get sector properties. #### Parameters * `opts` **[Object][4]** Options (optional, default `{}`) * `opts.withValue` **[Boolean][2]** Get only properties with value (optional, default `false`) * `opts.withParentValue` **[Boolean][2]** Get only properties with parent value (optional, default `false`) Returns **[Array][3]<[Property]>** [1]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String [2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean [3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array [4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object