Skip to main content

WinExplorerViewStyleOptions Class

Provides access to a specific WinExplorerView Style’s advanced settings.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v25.1.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public class WinExplorerViewStyleOptions :
    ViewBaseOptions,
    ISupportDxHtmlContent,
    IDxHtmlDesignerDataProvider

Remarks

Use the WinExplorerView.OptionsViewStyles property to access all properties that store WinExplorerViewStyleOptions objects. These objects store advanced settings for each WinExplorerView Style.

WinForms Data Grid - WinExplorerView Styles, DevExpress

Note

The WinExplorerViewStyle.Content View Style is the only Style that does not store its advanced properties within a WinExplorerViewStyleOptions object, but within a WinExplorerViewContentStyleOptions object.

// Specify item width for the Large view style
this.winExplorerView1.OptionsViewStyles.Large.ItemWidth = 200;
// Specify the indent between text and images for the Small view style
this.winExplorerView1.OptionsViewStyles.Small.ImageToTextIndent = 50;
See Also