| RenderContextData Property |
Gets a generic collection of name/value pairs which can be used to store custom data.
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public Dictionary<string, Object> Data { get; }
Public ReadOnly Property Data As Dictionary(Of String, Object)
Get
public:
property Dictionary<String^, Object^>^ Data {
Dictionary<String^, Object^>^ get ();
}
member Data : Dictionary<string, Object> with get
Property Value
Type:
DictionaryString,
Object
A generic collection of name/value pairs which can be used to store custom data.
Remarks UserData can be used to store user-defined data with the render context.
Additionally,
Data can be used to store more custom data that can be
accessed using a string key.
See Also