PageSettings (1) 썸네일형 리스트형 System.Drawing.Printing.PageSettings 의 PrintableArea 프로퍼티에 대한 문제 별도의 출력을 만들때 System.Drawing.Printing.PageSettings 객체를 통해서 이것저것 사용할 때가 있다. 문제는 그안에 PrintableArea 라는 RectangleF 를 반환하는 프로퍼티가 있다. 해당 값을 통해서 출력 가능영역을 계산할 수 있는데..... 대충 예를 들어서 이런식으로 쓴다고..하면 System.Drawing.Printing.PageSettings PageSettings = new System.Drawing.Printing.PageSettings();... float y = PrintableArea.Height;float x = PrintableArea.Width;float v1 = PrintableArea.Height - PrintableArea.Y;floa.. 이전 1 다음