string HelpUrl { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The HelpUrl property of the InspectorHeader class in the Editor namespace is a public instance property that holds a URL string. This URL typically points to a help or documentation page related to the content or functionality represented by the inspector header.

Usage

Use the HelpUrl property to provide users with a direct link to additional information or documentation. This can be particularly useful for complex components or settings where users might need further guidance.

To set the HelpUrl, simply assign a valid URL string to it. To retrieve the current help URL, access the property directly.

Example

// Example of setting the HelpUrl property
InspectorHeader inspectorHeader = new InspectorHeader();
inspectorHeader.HelpUrl = "https://example.com/documentation";

// Example of getting the HelpUrl property
string helpUrl = inspectorHeader.HelpUrl;
// Use helpUrl as needed, e.g., open in a web browser