設定和擷取裝置內容筆刷色彩值
下列範例示範應用程式如何使用 SetDCBrushColor 和 GetDCBrushColor 函式來擷取目前的 DC 筆刷色彩。
SelectObject(hdc,GetStockObject(DC_BRUSH));
SetDCBrushColor(hdc,RGB(00,0xff,00));
PatBlt(hdc,0,0,200,200,PATCOPY);
SetDCBrushColor(hdc,RGB(00,00,0xff));
PatBlt(hdc,0,0,200,200,PATCOPY);