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