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()
}