コード例 #1
0
ファイル: forms.go プロジェクト: mpatraw/gocurse
func (field *Field) Just() int {
	return (int)(C.field_just((*C.FIELD)(field)))
}
コード例 #2
0
ファイル: form.go プロジェクト: repos-go/goncurses-1
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just(f.field))
}
コード例 #3
0
ファイル: form.go プロジェクト: trotha01/goncurses
// Just returns the justification type of the field
func (f *Field) Justification() int {
	return int(C.field_just((*C.FIELD)(f)))
}
コード例 #4
0
ファイル: form.go プロジェクト: zozor/gocurse
func (f *Field) Just() int {
	return int(C.field_just(f.field))
}