스크롤 바 위치 지정 방법 DevExpress.XtraEditors.VScrollBar vScrollBar = null; DevExpress.XtraEditors.HScrollBar hScrollBar = null; foreach (Control ctrl in pictureEdit1.Controls) { if (ctrl is DevExpress.XtraEditors.VScrollBar) vScrollBar = ctrl as DevExpress.XtraEditors.VScrollBar; if (ctrl is DevExpress.XtraEditors.HScrollBar) hScrollBar = ctrl as DevExpress.XtraEditors.HScrollBar; } //... hScrollBar.Va..