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

Namespace: yWorks.yFiles.UI.Markup
Assembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.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
  yWorks.Support.Windows..::..MarkupExtension
    yWorks.yFiles.UI.Markup..::..GenericMarkupExtension<(Of <(<'T>)>)>
      yWorks.yFiles.UI.Markup..::..TypefaceExtension

See Also