Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RepositoryItemHyperLinkEdit.BrowserWindowStyle Property

Gets or sets the manner in which the window for the process executed by the hyperlink editor should appear on-screen.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v24.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 value, specifying the manner in which the window for the process executed by the hyperlink editor should appear.

#Remarks

When you invoke hyperlink functionality, the editor executes the command specified by the BaseEdit.EditValue property (the command string is obtained from the edit value by calling the ToString method). To execute the command, a new process is created, represented by a Process object. The Process.StartInfo.WindowStyle property is initialized with the value of the BrowserWindowStyle property. It specifies how the window for the process should appear (hidden, maximized, minimized or normal). See the ProcessWindowStyle help topic in MSDN for more information.

Note

In recent operating systems (Windows Vista, Windows Seven), the WindowStyle parameter used to initialize the Process object does not function properly.

See Also