TAdvColumnGrid 팁
1. AdvColumnGrid 컬럼 타입 체크 형식으로 변경
AdvColumnGrid.AddCheckBoxColumn(colindex);
2. AdvColumnGrid Footer 생성
AdvColumnGrid.FloatingFooter.ColumnCalc[0] := acCount;
AdvColumnGrid.FloatingFooter.ColumnCalc[1] := acCUSTOM;
AdvColumnGrid.FloatingFooter.ColumnCalc[2] := acCUSTOM;
AdvColumnGrid.FloatingFooter.ColumnCalc[3] := acSUM;
AdvColumnGrid.FloatingFooter.ColumnCalc[4] := acNONE;
3.AdvColumnGrid Footerformat 형식 변경
그리드 Properies에 FlatFormat 에 %.0n 입력한다. 그럼 숫자 세번자리 쉼표가 나온다.
4.AdvColumnGrid 체크컬럼 전체 체크 방법
advCGridDrug.CheckAll(4);
5.AdvColumnGrid 체크선택된것만 불러오기
var i : integer;
State : Boolean;
begin
for I := AdvColumnGrid.FixedRows to AdvColumnGrid.RowCount-1 do
begin
if AdvColumnGrid.GetCheckboxState(4,I,State) then
if State then
ShowMessage(AdvColumnGrid.Cells[2,i]);
end;
'Delphi Tip > 컴포넌트' 카테고리의 다른 글
델파이 DSPack MP4 (0) | 2021.11.11 |
---|---|
델파이 콤보박스 key 값 설정 (0) | 2021.11.10 |
델파이 XE10.2에 SAPI 컴포넌트 등록 방법 (0) | 2021.11.08 |
델파이 TChart 마커 이동하기 (0) | 2021.11.04 |
델파이 TChart 설명 (0) | 2021.11.03 |
댓글