Simple abstract base class of an ILabelStyleRenderer that can be used to conveniently create custom label style implementations.

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

Syntax

C#
[ObfuscationAttribute(ApplyToMembers = true, Exclude = true, StripAfterObfuscation = false)]
public abstract class AbstractLabelStyleRenderer<TStyle> : AbstractStyleRenderer<ILabel, ILabelStyle, TStyle>, 
	ILabelStyleRenderer, IStyleRenderer<ILabel, ILabelStyle>
where TStyle : class, ILabelStyle
Visual Basic
<ObfuscationAttribute(ApplyToMembers := True, Exclude := True,  _
	StripAfterObfuscation := False)> _
Public MustInherit Class AbstractLabelStyleRenderer(Of TStyle As {Class, ILabelStyle}) _
	Inherits AbstractStyleRenderer(Of ILabel, ILabelStyle, TStyle) _
	Implements ILabelStyleRenderer, IStyleRenderer(Of ILabel, ILabelStyle)

Type Parameters

TStyle
The exact type of the style to use for the label style.

Inheritance Hierarchy

System..::..Object
  yWorks.yFiles.UI.Drawing..::..AbstractStyleRenderer<(Of <(<'ILabel, ILabelStyle, TStyle>)>)>
    yWorks.yFiles.UI.Drawing..::..AbstractLabelStyleRenderer<(Of <(<'TStyle>)>)>
      yWorks.yFiles.UI.Drawing..::..SimpleLabelStyleRenderer

See Also