New to Telerik UI for WPFStart a free 30-day trial

Represents base for the hyperlink dialog categories.

Definition

Namespace:Telerik.Windows.Controls.Spreadsheet.Dialogs

Assembly:Telerik.Windows.Controls.Spreadsheet.dll

Syntax:

C#
public abstract class HyperlinkDialogCategoryContentBase : ControlBase

Inheritance: objectControlBaseHyperlinkDialogCategoryContentBase

Derived Classes: HyperlinkEmailCategoryContentHyperlinkInDocumentCategoryContentHyperlinkWebPageCategoryContent

Inherited Members ControlBase.GetTemplateChild<T>(string)ControlBase.GetRequiredTemplateChild<T>(string, bool)

Constructors

C#
protected HyperlinkDialogCategoryContentBase()

Properties

Type

HyperlinkType

Gets the type of the link category.

C#
public abstract HyperlinkType Type { get; }
Property Value:

The type of the link category.

Methods

Adds to collection.

C#
protected void AddToCollection(ObservableCollection<string> collection, string item)
Parameters:collectionObservableCollection<string>

The collection.

itemstring

The item.

Adds to used items.

C#
public abstract void AddToUsedItems()

Assigns the properties.

C#
public abstract void AssignProperties(HyperlinkInfo hyperlinkInfo)
Parameters:hyperlinkInfoHyperlinkInfo

The hyperlink info.

Copies the properties to context.

C#
public abstract void CopyPropertiesToContext(HyperlinkDialogCategoryContext context)
Parameters:contextHyperlinkDialogCategoryContext

The context.

Gets the address as string.

C#
public abstract string GetStringAddress()
Returns:

string

The address as string.

Called when the state is changed.

C#
protected void OnStateChanged()

Sets the default values.

C#
public abstract void SetDefaultValues()

Events

Occurs when the state is changed.

C#
public event EventHandler<HyperlinkDialogStateChangedEventArgs> StateChanged