1
0
Fork 0
freesewing/markdown/dev/reference/api/part/draft/hide/en.md
2022-09-21 12:28:58 +02:00

442 B

title
hide()

Calling hide() in a part's draft method will mark the part as hidden.

This method returns the part object, so it's chainable

The unhide and setHidden methods also control a part's visibility

hide() example

cont part = {
  name: 'examples.hide',
  draft: ({ hide, part }) =>  part.hide()
}