Hola,
Se podria generar o setear el FONT con un color?
es posible esto?
DEFINE FONT "TAHOMA" ... COLOR CLR_RED
Gracias de antemano por la tención
William Morales
#include "FiveWin.ch"
function Main()
local oWnd, oFont
DEFINE WINDOW oWnd
DEFINE FONT oFont NAME "Verdana" SIZE 0, -20
ACTIVATE WINDOW oWnd ;
ON PAINT oWnd:Say( 2, 2, "Hello world!", CLR_HRED, CLR_WHITE, oFont )
oFont:End()
return nil
Antonio Linares wrote:William,
No. En principio el color es un atributo que no pertenece al font sino al hDC (device context):
- Code: Select all Expand view RUN
#include "FiveWin.ch"
function Main()
local oWnd, oFont
DEFINE WINDOW oWnd
DEFINE FONT oFont NAME "Verdana" SIZE 0, -20
ACTIVATE WINDOW oWnd ;
ON PAINT oWnd:Say( 2, 2, "Hello world!", CLR_HRED, CLR_WHITE, oFont )
oFont:End()
return nil
Return to FiveWin para Harbour/xHarbour
Users browsing this forum: No registered users and 112 guests