| UIRendererOnParseAttributeT Method |
Namespace: DigitalRune.Game.UI.RenderingAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax protected bool OnParseAttribute<T>(
ThemeAttribute attribute,
out T result
)
Protected Function OnParseAttribute(Of T) (
attribute As ThemeAttribute,
<OutAttribute> ByRef result As T
) As Boolean
protected:
generic<typename T>
bool OnParseAttribute(
ThemeAttribute^ attribute,
[OutAttribute] T% result
)
member OnParseAttribute :
attribute : ThemeAttribute *
result : 'T byref -> bool
Parameters
- attribute
- Type: DigitalRune.Game.UI.RenderingThemeAttribute
The attribute. - result
- Type: T
The parsed value.
Type Parameters
- T
- The target type.
Return Value
Type:
Boolean if the
Value could be converted to the
type
T; otherwise,
.
Remarks See Also