Abstract base class for a generic MarkupExtension that can be used to write XAML markup.

Namespace: yWorks.yFiles.UI.Markup
Assembly: yWorks.yFilesWPF.Viewer (in yWorks.yFilesWPF.Viewer.dll) Version: 2.2.0.2 (2.2.0.2)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Advanced)]
public abstract class GenericMarkupExtension<T> : MarkupExtension
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Advanced)> _
Public MustInherit Class GenericMarkupExtension(Of T) _
	Inherits MarkupExtension

Type Parameters

T
The type of object this extension can serialize.

Remarks

Method ConvertFrom(T) can be used to initialize this instance before writing.

Inheritance Hierarchy

System..::..Object
  System.Windows.Markup..::..MarkupExtension
    yWorks.yFiles.UI.Markup..::..GenericMarkupExtension<(Of <(<'T>)>)>
      yWorks.yFiles.UI.Markup..::..TypefaceExtension

See Also