RepositoryItemPictureEdit.ZoomingOperationMode Property
Gets or sets whether the CTRL modifier key should be pressed to zoom pictures with the mouse wheel.
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraEditors.v25.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
[DefaultValue(ZoomingOperationMode.Default)]
[DXCategory("Behavior")]
public ZoomingOperationMode ZoomingOperationMode { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraEditors.Repository.ZoomingOperationMode | Default | A ZoomingOperationMode enumeration value that specifies how zooming can be performed using the mouse wheel. |
Remarks
The ZoomingOperationMode property allows you to specify how an end-user can zoom the picture displayed in the PictureEdit control using the mouse wheel. The ZoomingOperationMode enumeration provides the following values:
| Value | Description |
|---|---|
| ControlMouseWheel and Default | The CTRL modifier key should be pressed to zoom using the mouse wheel. |
| MouseWheel | Zooming can be performed using the mouse wheel with no modifier keys pressed. |
See Also