본문 바로가기
Winform

Devexpress Grid print

by 캡틴노랑이 2016. 5. 12.
반응형


Devexpress grid 프린트 하기 
Devexpress Grid에서 프린트기능을 제공한다. 
preview도 제공하며, preview에서 제목 열편집, 출력용지 가로 세로 출력되 조정이 된다. 

코드 상에서도  GridView.OptionsPrint 옵션을 사용하면, 여러가지 설정을 할 수 있다.

그리드 출력시에도 컬럼의 출력 여부또한 설정이 가능한다. 




//option
gvList.OptionsPrint.EnableAppearanceEvenRow = true;  //형 색상 넣기
gvList.OptionsPrint.PrintFooter = true;              //풋터 사용유무 
gvList.OptionsPrint.RtfPageFooter = "test";          //풋터 이름등 

//그리드 프린트시 해당 설정으로 출력 여부를 설정할 수 있다. 
colName.OptionsColumn.Printable 속성 
 grdList.ShowPrintPreview(); 

/프리뷰
grdList.ShowPrintPreview();
//리본형식 프리뷰
grdList.ShowRibbonPrintPreview();
devexpress 참고 사이트 https://documentation.devexpress.com/#WindowsForms/CustomDocument3230


반응형

'Winform' 카테고리의 다른 글

Devexpress Grid Drag & drop  (2) 2016.07.01
라벨 멀티라인(Label MultiLIne)  (4) 2016.07.01
Devexpress Grid에서 자주 사용하는 코드  (1) 2016.05.03
Devexpress Grid 행에 색상 넣기  (5) 2016.05.03
DevExpress Repository Item DateEdit  (251) 2016.04.21

댓글