Festlegen und Abrufen des Gerätekontextpinselfarbwerts
Das folgende Beispiel zeigt, wie eine Anwendung die aktuelle DC-Pinselfarbe mithilfe der Funktionen SetDCBrushColor und GetDCBrushColor abrufen kann.
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);