Функция _GDIPlus_BrushSetSolidColor

         Описание функции


_GDIPlus_BrushSetSolidColor

Устанавливает цвет объекта Сплошная Кисть

#include <GDIPlus.au3>
_GDIPlus_BrushSetSolidColor($hBrush [, $iARGB = 0xFF000000])

Параметры

$hBrush Дескриптор объекта Кисть
$iARGB [необязательный] Цветовые компоненты кисти: альфа канал, красный, зелёный и синий

Возвращаемое значение

Успех:Возвращает True
Ошибка:Возвращает False

См. также

Искать GdipSetSolidFillColor в библиотеке MSDN

Пример

#include <GUIConstantsEx.au3>
#include <GDIPlus.au3>
#include <WindowsConstants.au3>

_Main()

Func _Main()
    Local $hGUI, $Label1, $label2, $hGraphic, $hBrush1, $iClr1, $iClr2

    ; Создаёт GUI
    $hGUI = GUICreate("GDI+", 345, 150)
    $Label1 = GUICtrlCreateLabel("", 2, 2, 150, 20)
    $label2 = GUICtrlCreateLabel("", 202, 2, 150, 20)
    GUISetState()
    Sleep(100)

    ; Start GDIPlus
    _GDIPlus_Startup()
    $hGraphic = _GDIPlus_GraphicsCreateFromHWND($hGUI)

    ; Create solid brush
    $hBrush1 = _GDIPlus_BrushCreateSolid()

    ; Get solid brush original color
    $iClr1 = _GDIPlus_BrushGetSolidColor($hBrush1)

    ; Draw some graphics with the original brush color
    _GDIPlus_GraphicsFillEllipse($hGraphic, 25, 25, 100, 100, $hBrush1)

    ; Set new brush color (0xFFFF0000 = Red)
    _GDIPlus_BrushSetSolidColor($hBrush1, 0xFFFF0000)

    ; Get solid brush new color
    $iClr2 = _GDIPlus_BrushGetSolidColor($hBrush1)

    ; Draw some graphics with the new brush color
    _GDIPlus_GraphicsFillRect($hGraphic, 220, 25, 100, 100, $hBrush1)

    ; Write original brush color to Label1
    GUICtrlSetData($Label1, "Brush orignal color: " & Hex($iClr1))

    ; Write the new brush color to Label2
    GUICtrlSetData($label2, "Brush new color: " & Hex($iClr2))

    ; Цикл выполняется, пока окно не будет закрыто
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE

    ; Очищает ресурсы
    _GDIPlus_BrushDispose($hBrush1)
    _GDIPlus_GraphicsDispose($hGraphic)
    _GDIPlus_Shutdown()

EndFunc   ;==>_Main