Q&A

  • TRichEdit 에서 일부 글꼴이 적용되지 않습니다.
var
    FontName : String;
    FontStyle : String;
    FontSize : integer;

begin
    richMessegeList.SelStart := richMessegeList.GetTextLen;
    Attr := richMessegeList.SelAttributes;
    Attr.Color := FontColor;
    Attr.Size := FontSize;
    Attr.Name := FontName;

    richMessegeList.Paragraph.FirstIndent := 10;
    richMessegeList.Lines.Add( Str );
end;

소스는 대충 위와 같습니다.
richMessegeList가 TRichEdit 이구요....

근데 색상이나 글자 크기는 잘 되는데
글꼴은 '굴림', '궁서' 이런건 잘 바뀝니다.
근데 'Verdana' , 'Courier New' 같은건 안먹히고... 그냥 '굴림'으로 나오네요..
글꼴은 있습니다. 같은 글꼴을
그냥 TMemo에 적용해 보면 잘 나오거든요..

이런 현상 경험하신분 계시면 도움 좀 주세요..
0  COMMENTS