ASPxRoundPanel.Target Property
Gets or sets the window or frame at which to target the contents of the URL associated with the RoundPanel.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
String | String.Empty | A string which identifies the window or frame at which to target the URL content. |
Remarks
If a specific navigation location is assigned to the ASPxRoundPanel.HeaderNavigateUrl property, the text and image displayed within the panel’s header serve as a link. A click on this link navigates the application to the specified location.
Use the Target property to define the window or frame at which to target the contents of the URL. The available values are listed in the table below:
Member | Description |
---|---|
name | The name of the target window or frame. |
_blank | Loads the linked document into a new blank window. This window is not named. |
_parent | Loads the linked document into the immediate parent of the document the link is in. |
_search | Loads the linked document into the browser search pane. |
_self | Loads the linked document into the window in which the link was clicked (the active window). |
_top | Loads the linked document into the topmost window. |
See Also