mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
11 lines
234 B
C++
11 lines
234 B
C++
#include "Examples.h"
|
|
|
|
void TextFillSolid(Painter& sw)
|
|
{
|
|
sw.Text(100, 100, "Hello world!", Roman(120).Italic().Bold())
|
|
.Fill(LtBlue());
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Filling text with solid color", TextFillSolid);
|
|
}
|