1
0
Fork 0
freesewing/markdown/dev/reference/api/part/unhide/en.md

536 B

title
Part.unhide()

The Part.unhide() method will mark the part as not hidden. This method returns the part object, so it's chainable.

This method can be destructured as `inhide` in [a part's draft method](/reference/api/part/draft).

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

Part.unhide() example

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