Вниз
Скачать: 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 вся ветка

Скачать: CL | DM;



Память: 0.46 MB
Время: 0.026 c
4-1122539982
fixer
2005-07-28 12:39
2005.09.18
проблемка с Popupmenu


14-1124569059
ronyn
2005-08-21 00:17
2005.09.18
Кто знает где русская справка по DS Pack и сопутствующему есть


3-1122992673
Kuzmich86
2005-08-02 18:24
2005.09.18
FastReport и Halcyon


3-1123148932
Koralnik
2005-08-04 13:48
2005.09.18
Запрос в базу данных удаленного сервера


8-1115212285
Артём
2005-05-04 17:11
2005.09.18
Как в Listbox сделать нумерацб?




   Наверх