Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2005.09.18;
Скачать: CL | DM;

Вниз

Как записать в *.ini файл свойство шрифта Style?   Найти похожие ветки 

 
Dr. Andrew   (2005-08-24 10:27) [0]

Мастера, подскажите как записать в *.ini файл свойство шрифта Style?
Font.Style в INI?!
Спасибо!


 
Ega23 ©   (2005-08-24 10:31) [1]


function GetFontStyle(const Value: TFontStyles): Integer;
begin
Result:=0;
if (fsBold in Value) then Result:=Result or 1;
if (fsItalic in Value) then Result:=Result or 2;
if (fsUnderline in Value) then Result:=Result or 4;
if (fsStrikeout in Value) then Result:=Result or 8;
end;

//**********************************************************************

function SetFontStyle(const Value: integer): TFontStyles;
begin
Result:=[];
if ((Value shr 0) and 1)=1 then Result:=Result+[fsBold];
if ((Value shr 1) and 1)=1 then Result:=Result+[fsItalic];
if ((Value shr 2) and 1)=1 then Result:=Result+[fsUnderline];
if ((Value shr 3) and 1)=1 then Result:=Result+[fsStrikeout];
end;

//**********************************************************************


И пишешь обычный integer


 
Alexander Panov ©   (2005-08-24 11:04) [2]

Еще метод.

var
 v: TFontStyles;
 n: Byte absolute v;


И работаешь с n как с байтом;)


 
Leonid Troyanovsky ©   (2005-08-24 11:07) [3]


> Ega23 ©   (24.08.05 10:31) [1]

> И пишешь обычный integer


Byte(Style)

--
Regards, LVT


 
Leonid Troyanovsky ©   (2005-08-24 11:08) [4]


> Dr. Andrew   (24.08.05 10:27)  
> Мастера, подскажите как записать в *.ini файл свойство шрифта
> Style?
> Font.Style в INI?!


http://groups.google.com/group/fido7.ru.delphi/msg/eb29fb48626c9a5e

--
Regards, LVT.


 
Dr. Andrew   (2005-08-24 11:23) [5]

Всем спасибо!



Страницы: 1 вся ветка

Текущий архив: 2005.09.18;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.025 c
14-1125054731
geidarka
2005-08-26 15:12
2005.09.18
подключение к MySQL


4-1122317379
Aldaris
2005-07-25 22:49
2005.09.18
Перезагрузка в Win XP


14-1125045509
Ega23
2005-08-26 12:38
2005.09.18
Воистину мудро


8-1115443767
Kode
2005-05-07 09:29
2005.09.18
wav в wp3


1-1124966064
ArtemESC
2005-08-25 14:34
2005.09.18
C++ в Delphi