コード例 #1
0
ファイル: rect.go プロジェクト: foxundermoon/gform
func (this *Rect) Set(left, top, right, bottom int) {
	w32.SetRect(&this.rect, left, top, right, bottom)
}
コード例 #2
0
ファイル: rect.go プロジェクト: daviddengcn/gform
func (r *Rect) Set(left, top, right, bottom int) {
	w32.SetRect((*w32.RECT)(r), left, top, right, bottom)
}