Click or drag to resize

VisualAddTemporaryProperty(String, Type, Object, String) Method

Create a temporary custom property that won't persistent on disk when saved. The property will also be hidden in the user interface.

Namespace: Demo3D.Visuals
Assembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntax
C#
public CustomProperty AddTemporaryProperty(
	string name,
	Type type,
	Object val,
	string description
)

Parameters

name  String
Name of custom property to create.
type  Type
Type of the custom property value.
val  Object
Initial value of custom property.
description  String
Description of custom property.

Return Value

CustomProperty
The newly created custom property object.
See Also