Skip to main content

RecentHyperlinkItem.BrowserWindowStyle Property

Gets or sets the style of the window for the process executed by this RecentHyperlinkItem.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(ProcessWindowStyle.Normal)]
[DXCategory("Appearance")]
public virtual ProcessWindowStyle BrowserWindowStyle { get; set; }

Property Value

Type Default Description
ProcessWindowStyle Normal

A ProcessWindowStyle enumerator value that is the style of the window for the process executed by this RecentHyperlinkItem.

Remarks

The RecentHyperlinkItem object’s functionality is provided by the RecentHyperlinkItem.Link property: its value is converted to a command string (by calling the ToString method) and passed to a new Process object. The BrowserWindowStyle property value is passed to the StartInfo.WindowStyle property of this newly created process. This property specifies how the window for the process should appear (hidden, maximized, minimized or normal). See the System.Diagnostics.ProcessWindowStyle help topic in MSDN for more information.

Important

The process’ WindowStyle property is just a recommendation passed to the application and can be ignored by it. Thus, the BrowserWindowStyle property does not guarantee that your window will be styled based on your set value.

See Also