Click or drag to resize

TemporaryPropertyValueT Constructor (Visual, String, T)

Construct a TemporaryPropertyValue for a given visual and custom property name. This will create the custom property if it doesn't exist and ensure the type of the value is T. This temporary custom property will not persist (not be saved to disk).

Namespace:  Demo3D.Native
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public TemporaryPropertyValue(
	Visual v,
	string propertyName,
	T initialValue
)

Parameters

v
Type: Demo3D.VisualsVisual
The visual to find or create the temporary custom property for.
propertyName
Type: SystemString
The name of the temporary custom property.
initialValue
Type: T
The initial value of the temporary custom property.
See Also