Documentation > Services API > ServicesInput > ShowHyperLink(String,ShowHyperLinkParams,String)
ShowHyperLink
Creates a set of fields for managing a common HyperLink with options such as internal/external, target type, a text or image title, etc. Update to 2 levels of navigation.
public System.Void ShowHyperLink(String,ShowHyperLinkParams,String)
Parameters
Name | Description | Type |
---|---|---|
fieldName | Name that is to be used as a prefix for the fields. Note: If used in a list panel, the fieldName of the list panel must match this one. | System.String |
linkParams | ShowHyperLinkParams object. | CrownPeak.CMSAPI.Services.ServicesInput+ShowHyperLinkParams |
browsePath | Optional: Default browsing path for selecting assets. | System.String |
Code Example
C#
Sample:
ServicesInput.ShowHyperLinkParams linkParams = new ServicesInput.ShowHyperLinkParams(); while(Input.NextPanel("Hyperlink")) { ServicesInput.ShowHyperLink("Hyperlink", linkParams); }