Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread.Renderer Namespace / HyperLinkRenderer Class / Target Property


In This Topic
    Target Property (HyperLinkRenderer)
    In This Topic
    Gets or sets the target window or frame to display when the hyperlink is clicked.
    Syntax
    'Declaration
     
    
    Public Property Target As String
    'Usage
     
    
    Dim instance As HyperLinkRenderer
    Dim value As String
     
    instance.Target = value
     
    value = instance.Target
    public string Target {get; set;}

    Property Value

    String containing the target
    Remarks

    When the hyperlink is clicked, the target web page is displayed.

    Valid values must begin with an upper- or lower-case letter (A - Z). You can also use the following special values.

    _blank Displays the content in a new window without frames
    _parent Displays the content in the immediate frameset parent
    _self Displays the content in the frame with focus
    _top Displays the content in the full window without frames
    See Also