示例#1
0
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)
}