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

RepositoryItemHyperLinkEdit Class

Represents the class which provides settings specific to a HyperLinkEdit control.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

[ToolboxBitmap(typeof(ToolboxIconsRootNS), "HyperLinkEdit")]
public class RepositoryItemHyperLinkEdit :
    RepositoryItemButtonEdit

The following members return RepositoryItemHyperLinkEdit objects:

Remarks

The RepositoryItemHyperLinkEdit class provides members specific to a hyperlink editor. You can use properties and events of the class to customize the editor’s look & feel and behavior. To access these settings, see the HyperLinkEdit.Properties property.

For instance, you can specify:

hyperLinkEdit1.Properties.StartKey =  new KeyShortcut(Keys.Alt | Keys.Enter);
hyperLinkEdit1.Properties.BrowserWindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized;
hyperLinkEdit1.Properties.Caption = "DevExpress";
hyperLinkEdit1.Text = "www.devexpress.com";
hyperLinkEdit1.Properties.LinkColor = Color.Purple;

You do not need to create repository items manually unless you have to create inplace editors for container controls (such as XtraGrid).

See Also