// UnPost the form, removing it from the interface func (f *Form) UnPost() error { err := C.unpost_form(f.form) return ncursesError(syscall.Errno(err)) }
func (form *Form) Unpost() bool { return isOk(C.unpost_form((*C.FORM)(form))) }
func (f *Form) Unpost() error { return geterror(C.unpost_form(f.form)) }