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

452 B

title
unhide()

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

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

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

unhide() example

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