CoreWebView2NewWindowRequestedEventArgs.Name Property

Definition

Gets the name of the new window.

public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

Property Value

Remarks

This window can be created via window.open(url, windowName), where the windowName parameter corresponds to Name property. If no windowName is passed to window.open, then the Name property will be set to an empty string. Additionally, if window is opened through other means, such as <a target="windowName"> or <iframe name="windowName">, then the Name property will be set accordingly. In the case of target=_blank, the Name property will be an empty string. Opening a window via Ctrl+clicking a link would result in the Name property being set to an empty string.

Applies to