SaaS CMS has officially launched! Learn more now.

Class ToolTipElement

Conveys information about a row in a tool tip

Inheritance
System.Object
ToolTipElement
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Shell.Web.Mvc.Html
Assembly: EPiServer.Shell.dll
Version: 10.10.4
Syntax
public class ToolTipElement

Constructors

ToolTipElement()

Constructs an empty tool tip element

Declaration
public ToolTipElement()

ToolTipElement(String, String)

Constructs a tool tip with required values

Declaration
public ToolTipElement(string label, string value)
Parameters
Type Name Description
System.String label

Used for Label

System.String value

Used for Value

Properties

Label

The label portion

Declaration
public string Label { get; set; }
Property Value
Type Description
System.String

Value

The value portion

Declaration
public string Value { get; set; }
Property Value
Type Description
System.String

Methods

ToString()

Returns a System.String on the form [label]: [value].

Declaration
public override string ToString()
Returns
Type Description
System.String

A System.String that represents the current ToolTipElement.

Overrides
System.Object.ToString()

Extension Methods