자유롭게 질의 및 응답을 할 수 있는 게시판입니다. 개발자 여러분의 답변이 큰 도움이 됩니다. 
  • 제품설치/등록 오류 문의: 설치/등록 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 39645
공지 유용한 관련 사이트 관리자2 2014.03.20 79156
552 rest api 사용해서 할때. [4] 종결자 2019.10.03 533
551 [긴급]안녕하세요 컴포넌트 오류에 대하여 질문을 드립니다. [3] file 소선 2019.10.04 554
550 array of byte를 TByte형으로 변환은 어떻게 하나요? [1] 한태수 2019.10.04 1350
549 Delphi5 oracle 18c 호환 [2] file 비니 2019.10.07 675
548 바탕화면 bds 실행 아이콘 이미지가 안보입니다. [1] file 거북선생 2019.10.07 386
547 모바일 Android 앱에서 PC에설치된 Database 서버에 직접연결이 가능한가요?? [1] 트리야 2019.10.08 993
546 Delphi7 횟수재한 [1] 모든길 2019.10.08 343
545 폰트다이얼로그 관련 질문드립니다.. 초보델팡이 2019.10.08 814
544 문자열에 들어있는 &는 표현이 안되나요? [2] 토끼왕 2019.10.09 361
543 C++ Builder에서 리팩토링 file 겨울잠안자는곰 2019.10.09 349
542 Tedit 입력시 입력한 글자에 언더바 그려지는 현상 [4] 희망나라 2019.10.10 668
541 Listview에서 DynamicAppearance를 이용하여 아이템을 만드는데 궁금한점이 있어서요. [4] file 종결자 2019.10.10 821
540 델파이에서 POST방식으로 IE 새창 호출 [1] 델파이PHP초보 2019.10.11 746
539 Delphi 10.2 Pointer, Byte 문의 [1] 엘트 2019.10.11 346
538 listview 에서 런타임에 이미지 넣는부분 [1] 종결자 2019.10.12 484
537 TValue를 어떻게 사용할 수 있는지 문의 드립니다. [2] 한태수 2019.10.14 2564
536 Rio Trial은 tlb 파일 import가 안되나요? [1] 쉬폰 2019.10.15 380
535 NetHTTPClient1 오류 질문입니다. [2] file 델파이안드로이드 2019.10.17 613
534 작일 세미나에서 문의드렸던 FireDac 모니터링 관련. [2] mckim 2019.10.18 545
533 개발자 기술자료 중 Firebase 안드로이드 앱 푸쉬 알림 - 10.3.2에서 FCM 전송 설정 - 실행시 오류 발생 [5] file 비앤케이 2019.10.19 534