자유롭게 질의 및 응답을 할 수 있는 게시판입니다. 개발자 여러분의 답변이 큰 도움이 됩니다. 
  • 제품설치/등록 오류 문의: 설치/등록 Q&A 이용 (제품 구매 고객 한정)

procedure TForm1.StringGrid1DrawColumnCell(Sender: TObject;
  const Canvas: TCanvas; const Column: TColumn; const Bounds: TRectF;
  const Row: Integer; const Value: TValue; const State: TGridDrawStates);
const
  HorzTextMargin = 2;
  VertTextMargin = 1;
var
  TextLayout : TTextLayout;
  TextRect: TRectF;
begin
  if Column = StringColumn1 then
  begin
    TextRect := Bounds;
    TextRect.Inflate(-HorzTextMargin, -VertTextMargin);
    Canvas.FillRect(Bounds, 0, 0, AllCorners, 1);
    TextLayout := TTextLayoutManager.DefaultTextLayout.Create;
    try
      TextLayout.BeginUpdate;
      try
        TextLayout.WordWrap := False;
        TextLayout.Opacity := Column.AbsoluteOpacity;
        TextLayout.HorizontalAlign := StringGrid1.TextSettings.HorzAlign.tacenter;
        TextLayout.VerticalAlign := StringGrid1.TextSettings.VertAlign;
        TextLayout.Trimming := TTextTrimming.Character;
        TextLayout.TopLeft := TextRect.TopLeft;
        TextLayout.Text    := Value.ToString;
        TextLayout.MaxSize := PointF(TextRect.Width, TextRect.Height);
//        TextLayout.Font.Family := 'Times New Roman';
//        TextLayout.Font.Style := [ TFontStyle.fsBold ];
//        TextLayout.Font.Size := 14;
        TextLayout.Color := TAlphaColors.Red;
      finally
        TextLayout.EndUpdate;
      end;
      TextLayout.RenderLayout(Canvas);
    finally
      TextLayout.Free;
    end;
  end;
end;


해당컬럼의 색을 변하지 않게 하는 방법이 없나요 ??


번호 제목 글쓴이 날짜 조회 수
공지 [프로그래밍 강의] 2021.6~2021.12 관리자 2015.01.22 15769
공지 유용한 관련 사이트 관리자2 2014.03.20 54588
공지 본 게시판은 개발자 여러분들의 질문과 답변을 공유하는 공간입니다. 관리자 2012.01.10 98011
599 firemonkey mobile application에서 버튼 드래그 앤 드롭 작동 문제 [1] superman 2014.11.02 1642
» [XE6] StringGrid의 정렬에 대한 자료를 찾았는데 컬럼의 색이 변합니다. 어려워 2014.11.18 1644
597 애플 앱스토어에 앱등록시 Application Loader에러 [3] file 김태윤 2016.11.02 1651
596 BMP파일를 리딩하면 잘려서 보입니다. file barcode0 2014.08.06 1652
595 Client 에서 REST Request 시, server certificate 체크 질문드립니다. [2] Joon 2018.09.11 1654
594 [XE6] Baas 컴포넌트로 인해 앱기본용량이 40메가가 되는 현상 [2] 가을이다 2014.08.23 1657
593 Delphi OpenCV 에 관하여... 아크나톤 2019.04.11 1662
592 [질문] 안드로이드 Target에 장치가 로딩되지 않습니다. [1] 이대희 2014.11.27 1664
591 SQLConnection 컴포넌트 관련하여 다시 질문드립니다. [3] 총이 2014.12.17 1664
590 MS-SQL에서 데이터 처리에 대한 오류.. 이노베이션 2015.02.18 1674
589 DataSnap 문의입니다. [3] 최민철 2014.10.08 1681
588 fdQuery numeric 필드 displayformat [2] file sm2 2014.08.27 1689
587 프로젝트 메뉴 > Option > Application 에서 Orientaion 탭이 안나와요. [2] file 어려워 2014.08.14 1704
586 RX Lib와 RealGrid 컴포넌트를 XE7에서 사용하는 방법 [2] Humphery 2014.11.17 1710
585 DBExpress 사용 프로그램 배포시 문제 해결 요청드립니다. [1] file 쌈장곰 2014.11.03 1711
584 델파이 부호관련질문입니다. [2] modong2 2014.04.14 1711
583 groupbox 및 checkbox 등의 font color 변경 안되는 사항 [2] goinma 2018.05.03 1712
582 윈도우 10, XE8 환경에서 한글 글자크기가 작습니다. [4] file benp 2016.10.18 1714
581 안드로이드 calendar에 요일 밑에 text 추가 할수 있나요? [1] 델마당쇠 2020.01.28 1718
580 android기기에서 kinvey push event문의 [2] 뭉게구름 2014.08.09 1721