칼럼마다 폰트를 따로 주려면 StringGrid의 OnDrawCell 메소드에 코딩이 필요합니다. 예제를 잘 보세요...
procedure TfrmRestDayI.sgridCalendarDrawCell(Sender: TObject; Col,
Row: Integer; Rect: TRect; State: TGridDrawState);
begin
inherited;
with sgridCalendar.Canvas do
begin
if Col = 6 then
begin
Font.Color:= clBlue;
Font.Style:= [fsBold];
end
else if Col = 0 then
Font.Color:= clRed;
FillRect(Rect);
TextOut(Rect.Left+2,Rect.Top+2,sgridCalendar.Cells[Col,Row]);
end;
end;
입력 할수 있습니다..
컬럼마다 Font를 따루 주는 부분은 모르겠군요...
그럼 이만