AdvStringGrid의 Event를 보시면 GetCellColor 가 있을 겁니다.
거기다 원하시는 코딩을 하시면 될것 같군요.
procedure TForm1.AdvStringGrid1GetCellColor(Sender: TObject; ARow,
ACol: Integer; AState: TGridDrawState; ABrush: TBrush; AFont: TFont);
begin
if acol = 3 then
begin
abrush.Color := clyellow;
afont.Color := clred;
end;
end;
위와 같이 하며 3 컬럼의 배경색과 글자 색이 노란과 빨간색으로 표시됩니다.
수고하세요.
거기다 원하시는 코딩을 하시면 될것 같군요.
procedure TForm1.AdvStringGrid1GetCellColor(Sender: TObject; ARow,
ACol: Integer; AState: TGridDrawState; ABrush: TBrush; AFont: TFont);
begin
if acol = 3 then
begin
abrush.Color := clyellow;
afont.Color := clred;
end;
end;
위와 같이 하며 3 컬럼의 배경색과 글자 색이 노란과 빨간색으로 표시됩니다.
수고하세요.