■ PictureEdit 클래스의 Properties.ZoomPercent 속성을 사용해 배율을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using DevExpress.XtraEditors; PictureEdit pictureEdit = new PictureEdit(); pictureEdit.Properties.ZoomPercent = 5; // 1 이상 |
■ PictureEdit 클래스의 Properties.ZoomPercent 속성을 사용해 배율을 설정하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 |
using DevExpress.XtraEditors; PictureEdit pictureEdit = new PictureEdit(); pictureEdit.Properties.ZoomPercent = 5; // 1 이상 |