Skip to main content
A newer version of this page is available. .

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.v19.2.dll

Declaration

[DXCategory("Appearance")]
[DefaultValue(ProcessWindowStyle.Normal)]
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