[태그:] DrawFooterCell
DevExpress QuantumGrid의 footer에 내용을 그리거나 입력하기.
Published Date: 2009년 10월 3일
퀀텀을 사용하다보면 Footer에 값을 넣거나 또는 Footer의 내용을 내가 원하는 대로 그려야할 필요가 있습니다. 이런경우 아래와 같이 사용합니다. 직접 그리는 경우
Delphi/Pascal
1 2 3 4 5 6 7 8 9 10 11 12 13 |
procedure TFRM_Main.cxGrid3DBTableView1CustomDrawFooterCell( Sender: TcxGridTableView; ACanvas: TcxCanvas; AViewInfo: TcxGridColumnHeaderViewInfo; var ADone: Boolean); begin if AViewInfo.Index = 2 then // <-- 요값은 헤더의 위치를 나타냅니다. // footer의 위치가 아님.. begin ADone := True; ACanvas.FillRect( AViewInfo.Bounds, ACanvas.Brush.Color ); ACanvas.DrawTexT( '몰라', AViewInfo.Bounds, cxAlignCenter ); end; end; |
계산이 모두 끝나고 마지막에…
최신 댓글