mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
12 lines
259 B
C++
12 lines
259 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
int ndx = Font::FindFaceNameIndex("Arial");
|
|
if(ndx >= 0) {
|
|
Font::SetFace(Font::SERIF, "Arial", Font::GetFaceInfo(ndx));
|
|
}
|
|
PromptOK("[A5 Is this Arial?&[R Is this Arial?");
|
|
}
|