| GameObjectGetPropertyMetadataT Method (Int32) |
Gets the metadata of the property with the given ID.
Namespace: DigitalRune.GameAssembly: DigitalRune.Game (in DigitalRune.Game.dll) Version: 1.4.0.0 (1.4.0.14427)
Syntax public static GamePropertyMetadata<T> GetPropertyMetadata<T>(
int id
)
Public Shared Function GetPropertyMetadata(Of T) (
id As Integer
) As GamePropertyMetadata(Of T)
public:
generic<typename T>
static GamePropertyMetadata<T>^ GetPropertyMetadata(
int id
)
static member GetPropertyMetadata :
id : int -> GamePropertyMetadata<'T>
Parameters
- id
- Type: SystemInt32
The property ID.
Type Parameters
- T
- The type of the property value.
Return Value
Type:
GamePropertyMetadataT
The property metadata, or
if no property with the given
id was defined with
CreatePropertyT(String, String, String, T).
See Also