Kanzi  3.9.6
Kanzi Studio API
PropertyTypeLibrary Interface Reference

Create property types. More...

Inheritance diagram for PropertyTypeLibrary:
[legend]
Collaboration diagram for PropertyTypeLibrary:
[legend]

Public Member Functions

Property CloneProperty (Property source, string name)
 Creates a property type by cloning an existing property type. More...
 
CustomEnumProperty CreateCustomEnumProperty (string name, string displayName, string category, Dictionary< string, int > options)
 Creates a property type of the enumeration data type. More...
 
FloatProperty CreateFloatProperty (string name, string displayName, string category, float? lowerBound, float? upperBound, float? step)
 Creates a property type of the float data type. More...
 
IntProperty CreateIntProperty (string name, string displayName, string category, int? lowerBound, int? upperBound, int? step)
 Creates a property type of the integer data type. More...
 
Property CreateProperty (Type dataType, string name, string displayName, string category)
 Creates a property type of data type you specify. More...
 
TypedProperty< T > CreateProperty< T > (string name, string displayName, string category)
 Creates a property type of data type you specify. More...
 
Vector2DProperty CreateVector2DProperty (string name, string displayName, string category, Vector? lowerBound, Vector? upperBound, Vector? step)
 Creates a property type of the vector 2D data type. More...
 
Vector3DProperty CreateVector3DProperty (string name, string displayName, string category, Vector3D? lowerBound, Vector3D? upperBound, Vector3D? step)
 Creates a property type of the vector 3D data type. More...
 
Vector4DProperty CreateVector4DProperty (string name, string displayName, string category, Quaternion? lowerBound, Quaternion? upperBound, Quaternion? step)
 Creates a property type of the vector 4D data type. More...
 
void DeleteProperty (Property property)
 Deletes a property type from the Property Types library. More...
 
IEnumerable< PropertyEditorGetCompatiblePropertyEditors (Property property)
 Gets the property editors that Kanzi Studio can use to set the value of a property. More...
 
Property GetProperty (string name)
 Gets the property type with the given name. More...
 
- Public Member Functions inherited from ChildContainer
string GenerateUniqueChildName (string defaultName)
 Generates a unique name. More...
 
string GetInvalidityReasonOfNewName (string newName)
 Returns the reason why the passed name is not valid. More...
 

Properties

IEnumerable< PropertyDefaultPropertyTypes [get]
 Gets the default Kanzi property types. More...
 
IEnumerable< PropertyProjectPropertyTypes [get]
 Gets the property types stored in the Property Types library. More...
 
IEnumerable< PropertyEditorPropertyEditors [get]
 

Detailed Description

Create property types.

PropertyTypeLibrary stores the property types declared in the current Kanzi Studio project.

See also
ProjectItem.PropertyTypeLibrary, Property, PropertyEditor

Member Function Documentation

◆ CloneProperty()

Property CloneProperty ( Property  source,
string  name 
)

Creates a property type by cloning an existing property type.

The new property type inherits from the source property all its properties except for the name.

Parameters
sourceSource property type.
nameName of property type. To avoid naming clashes, make sure that you use a unique name.
Returns
The property type.
See also
CreateProperty(Type, string, string, string), CreateProperty<T>(string, string, string), DeleteProperty(Property)

Examples

To clone a property type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create a boolean property type and set:
// - Name to MyPlugin.BooleanPropertyType
// - Name as it is shown in Kanzi Studio to Boolean Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
var boolProperty = propertyTypesLibrary.CreateProperty(
typeof(bool),
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.BooleanPropertyType"),
"Boolean Property Type",
"My Plugin Properties");
// Clone the property type that you created and set the name of the clone to
// MyPlugin.BooleanPropertyType_1.
var clonedProperty = propertyTypesLibrary.CloneProperty(
boolProperty,
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.BooleanPropertyType"));
}

◆ CreateCustomEnumProperty()

CustomEnumProperty CreateCustomEnumProperty ( string  name,
string  displayName,
string  category,
Dictionary< string, int >  options 
)

Creates a property type of the enumeration data type.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
optionsA set of key value pairs.
Returns
The property type of the enumeration data type.

Examples

To create a property type of the enumeration data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create a variable for the enumeration options of the enumeration property type.
// The enumeration options are a list of items (string) and values (int) to which Kanzi maps the items.
var options = new Dictionary<string, int>();
for (int i = 0; i <= 4; i++)
{
options.Add("Level" + i, i);
}
// Create an enumeration property type in the Property Types library and set:
// - Name to MyPlugin.MyEnumProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Enum Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Enumeration Options to:
// Key | Value
// -------------------
// Level0 | 0
// Level1 | 1
// Level2 | 2
// Level3 | 3
// Level4 | 4
// Kanzi Studio by default sets:
// - Editor to Enumeration dropdown
// - Default Value to the first key in the enumeration options
var myCustomEnumProperty = propertyTypesLibrary.CreateCustomEnumProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyEnumProperty"),
"My Enum Property",
"My Plugin Properties",
options);
// Add to the enumeration options the key value pair Level5 and 5.
myCustomEnumProperty.Options.Add("Level5", 5);
// Print the enumeration options to the Kanzi Studio Log window.
studio.Log(myCustomEnumProperty.Name + " has these enumeration options:");
foreach (KeyValuePair<string, int> kvp in myCustomEnumProperty.Options)
{
studio.Log(kvp.Key + "\t" + kvp.Value);
}
}

◆ CreateFloatProperty()

FloatProperty CreateFloatProperty ( string  name,
string  displayName,
string  category,
float?  lowerBound,
float?  upperBound,
float?  step 
)

Creates a property type of the float data type.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
lowerBoundThe lower value limit of the property. To use the default value of the data type, set to null.
upperBoundThe upper value limit of the property. To use the default value of the data type, set to null.
stepThe minimum amount by which the value of the property can change. To use the default value of the data type, set to null.
Returns
The property type of the float data type.
See also
CreateIntProperty(string, string, string, int?, int?, int?)

Examples

To create a property type of the float data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create a float property type in the Property Types library and set:
// - Name to MyPlugin.MyFloatProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Float Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Lowest value to 0.0
// - Highest value to 100.0
// - The amount by which the property can change to 0.1
var myFloatProperty = propertyTypesLibrary.CreateFloatProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyFloatProperty"),
"My Float Property",
"My Plugin Properties",
0.0f,
100.0f,
0.1f);
}

◆ CreateIntProperty()

IntProperty CreateIntProperty ( string  name,
string  displayName,
string  category,
int?  lowerBound,
int?  upperBound,
int?  step 
)

Creates a property type of the integer data type.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
lowerBoundThe lower value limit of the property. To use the default value of the data type, set to null.
upperBoundThe upper value limit of the property. To use the default value of the data type, set to null.
stepThe minimum amount by which the value of the property can change. To use the default value of the data type, set to null.
Returns
The property type of the integer data type.
See also
CreateFloatProperty(string, string, string, float?, float?, float?)

Examples

To create a property type of the integer data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create an integer property type in the Property Types library and set:
// - Name to MyPlugin.MyIntProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Int Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Lowest value to 0
// - Highest value to 9000
// - The amount by which the property can change to 10
var myIntProperty = propertyTypesLibrary.CreateIntProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyIntProperty"),
"My Int Property",
"My Plugin Properties",
0,
9000,
10);
}

◆ CreateProperty()

Property CreateProperty ( Type  dataType,
string  name,
string  displayName,
string  category 
)

Creates a property type of data type you specify.

The property type you create with this function uses the default values for each new property type. For example, when you create a property type of integer data type, the values for the Lower Bound, Upper Bound, and Step are not defined. Note that to create some property types you need to include the correct using directive. For example, to create a property type of the vector 2D data type you need to include the System.Windows using directive.

Parameters
dataTypeThe data type of the property type.
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
Returns
The property type of data type you create.
See also
CreateProperty<T>(string, string, string), CloneProperty(Property, string), DeleteProperty(Property)

Examples

To create property types of different data types:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Define a string that consists of the name of your plugin followed by a dot.
// To create a property type to a property namespace named after your plugin,
// prefix this string to the name of the property type.
string pluginNamespace = "MyPlugin.";
// Create a boolean property type and set:
// - Name to MyPlugin.BooleanPropertyType
// - Name as it is shown in Kanzi Studio to Boolean Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
propertyTypesLibrary.CreateProperty(
typeof(bool),
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "BooleanPropertyType"),
"Boolean Property Type",
"My Plugin Properties");
// Create a float property type with these property values:
// - Name to MyPlugin.FloatPropertyType
// - Name as it is shown in Kanzi Studio to Float Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
propertyTypesLibrary.CreateProperty(
typeof(float),
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "FloatPropertyType"),
"Float Property Type",
"My Plugin Properties");
// Create an integer property type with these property values:
// - Name to MyPlugin.IntegerPropertyType
// - Name as it is shown in Kanzi Studio to Integer Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
propertyTypesLibrary.CreateProperty(
typeof(int),
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "IntegerPropertyType"),
"Integer Property Type",
"My Plugin Properties");
// Create a string property type with these property values:
// - Name to MyPlugin.StringPropertyType
// - Name as it is shown in Kanzi Studio to String Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
propertyTypesLibrary.CreateProperty(
typeof(string),
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "StringPropertyType"),
"String Property Type",
"My Plugin Properties");
// Create a vector 2D property type with these property values:
// - Name to MyPlugin.Vector2DPropertyType
// - Name as it is shown in Kanzi Studio to Vector 2D Property Type
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
propertyTypesLibrary.CreateProperty(
typeof(System.Windows.Vector),
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "Vector2DPropertyType"),
"Vector 2D Property Type",
"My Plugin Properties");
}

◆ CreateProperty< T >()

TypedProperty<T> CreateProperty< T > ( string  name,
string  displayName,
string  category 
)

Creates a property type of data type you specify.

The property type you create with this function uses the default values for each new property type. For example, when you create a property type of integer data type, the values for the Lower Bound, Upper Bound, and Step are not defined. Note that to create some property types you need to include the correct using directive. For example, to create a property type of the vector 2D data type you need to include the System.Windows using directive.

Template Parameters
TThe data type of the property type.
Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
Returns
The property type of the data type that you specify.
See also
CreateProperty(Type, string, string, string), CloneProperty(Property, string), DeleteProperty(Property)

Examples

To create property types of different data types:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Define a string that consists of the name of your plugin followed by a dot.
// To create a property type to a property namespace named after your plugin,
// prefix this string to the name of the property type.
string pluginNamespace = "MyPlugin.";
// Create a Boolean property type named Boolean property type in My Plugin Properties category.
propertyTypesLibrary.CreateProperty<bool>(
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "BooleanPropertyType"),
"Boolean property type",
"My Plugin Properties");
// Create a float property type named Float property type in My Plugin Properties category.
propertyTypesLibrary.CreateProperty<float>(
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "FloatPropertyType"),
"Float property type",
"My Plugin Properties");
// Create an integer property type named Integer property type in My Plugin Properties category.
propertyTypesLibrary.CreateProperty<int>(
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "IntegerPropertyType"),
"Integer property type",
"My Plugin Properties");
// Create a string property type named String property type in My Plugin Properties category.
propertyTypesLibrary.CreateProperty<string>(
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "StringPropertyType"),
"String property type",
"My Plugin Properties");
// Create a vector 2D property type named Vector 2D property type in My Plugin Properties category.
propertyTypesLibrary.CreateProperty<System.Windows.Vector>(
propertyTypesLibrary.GenerateUniqueChildName(pluginNamespace + "Vector2DPropertyType"),
"Vector 2D property type",
"My Plugin Properties");
}

◆ CreateVector2DProperty()

Vector2DProperty CreateVector2DProperty ( string  name,
string  displayName,
string  category,
Vector?  lowerBound,
Vector?  upperBound,
Vector?  step 
)

Creates a property type of the vector 2D data type.

Note that to create a vector 2D data type you need to add the using directive for the System.Windows namespace.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
lowerBoundThe lower value limit of the property. To use the default value of the data type, set to null.
upperBoundThe upper value limit of the property. To use the default value of the data type, set to null.
stepThe minimum amount by which the value of the property can change. To use the default value of the data type, set to null.
Returns
The property type of the Vector2D data type.
See also
CreateVector3DProperty(string, string, string, Vector3D?, Vector3D?, Vector3D?), CreateVector4DProperty(string, string, string, Quaternion?, Quaternion?, Quaternion?)

Examples

To create a property type of the Vector2D data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create variables for the parameters which set the lowest and highest possible values,
// and the minimum amount by which the value of the property can change.
Vector lowerBoundaries = new Vector(0, 0);
Vector upperBoundaries = new Vector(100, 100);
Vector step = new Vector(1, 1);
// Create a Vector2D property type in the Property Types library and set:
// - Name to MyPlugin.MyVector2DProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Vector2D Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Lowest value to 0, 0
// - Highest value to 100, 100
// - The amount by which each field in the property can change to 1
var myVector2DProperty = propertyTypesLibrary.CreateVector2DProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyVector2DProperty"),
"My Vector2D Property",
"My Plugin Properties",
lowerBoundaries,
upperBoundaries,
step);
}

◆ CreateVector3DProperty()

Vector3DProperty CreateVector3DProperty ( string  name,
string  displayName,
string  category,
Vector3D?  lowerBound,
Vector3D?  upperBound,
Vector3D?  step 
)

Creates a property type of the vector 3D data type.

Note that to create a vector 3D data type you need to add the using directive for the System.Windows.Media.Media3D namespace.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
lowerBoundThe lower value limit of the property. To use the default value of the data type, set to null.
upperBoundThe upper value limit of the property. To use the default value of the data type, set to null.
stepThe minimum amount by which the value of the property can change. To use the default value of the data type, set to null.
Returns
The property type of the Vector3D data type.
See also
CreateVector2DProperty(string, string, string, Vector?, Vector?, Vector?), CreateVector4DProperty(string, string, string, Quaternion?, Quaternion?, Quaternion?)

Examples

To create a property type of the Vector3D data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create variables for the parameters which set the lowest and highest possible values,
// and the minimum amount by which the value of the property can change.
Vector3D lowerBoundaries = new Vector3D(0, 0, 0);
Vector3D upperBoundaries = new Vector3D(10, 10, 10);
Vector3D step = new Vector3D(1, 1, 1);
// Create a Vector3D property type in the Property Types library and set:
// - Name to MyPlugin.MyVector3DProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Vector3D Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Lowest value to 0, 0, 0
// - Highest value to 10, 10, 10
// - The amount by which each field in the property can change to 1
var myVector3DProperty = propertyTypesLibrary.CreateVector3DProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyVector3DProperty"),
"My Vector3D Property",
"My Plugin Properties",
lowerBoundaries,
upperBoundaries,
step);
}

◆ CreateVector4DProperty()

Vector4DProperty CreateVector4DProperty ( string  name,
string  displayName,
string  category,
Quaternion?  lowerBound,
Quaternion?  upperBound,
Quaternion?  step 
)

Creates a property type of the vector 4D data type.

Note that to create a vector 4D data type you need to add the using directive for the System.Windows.Media.Media3D namespace.

Parameters
nameThe name of the property that you use with the Kanzi Engine API. The name must be unique among the property types and must not contain spaces.
displayNameThe name of the property as it is shown in Kanzi Studio.
categoryThe category in which Kanzi Studio shows this property type.
lowerBoundThe lower value limit of the property. To use the default value of the data type, set to null.
upperBoundThe upper value limit of the property. To use the default value of the data type, set to null.
stepThe minimum amount by which the value of the property can change. To use the default value of the data type, set to null.
Returns
The property type of the Vector4D data type.
See also
CreateVector2DProperty(string, string, string, Vector?, Vector?, Vector?), CreateVector3DProperty(string, string, string, Vector3D?, Vector3D?, Vector3D?)

Examples

To create a property type of the Vector4D data type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Create variables for the parameters which set the lowest and highest possible values,
// and the minimum amount by which the value of the property can change.
Quaternion lowerBoundaries = new Quaternion(0, 0, 0, 0);
Quaternion upperBoundaries = new Quaternion(10, 10, 10, 10);
Quaternion step = new Quaternion(1, 1, 1, 1);
// Create a Vector4D property type in the Property Types library and set:
// - Name to MyPlugin.MyVector4DProperty
// Use the name of your plugin as the property type namespace to avoid naming conflicts
// with other property types in the Kanzi Studio project that use the project name as
// the default property type namespace.
// - Name as it is shown in Kanzi Studio to My Vector4D Property
// - Category in which Kanzi Studio shows the property type to My Plugin Properties
// - Lowest value to 0, 0, 0, 0
// - Highest value to 10, 10, 10, 10
// - The amount by which each field in the property can change to 1
var myVector4DProperty = propertyTypesLibrary.CreateVector4DProperty(
propertyTypesLibrary.GenerateUniqueChildName("MyPlugin.MyVector4DProperty"),
"My Vector4D Property",
"My Plugin Properties",
lowerBoundaries,
upperBoundaries,
step);
}

◆ DeleteProperty()

void DeleteProperty ( Property  property)

Deletes a property type from the Property Types library.

Note that you cannot delete Kanzi default property types or property types provided by a plugin.

Parameters
propertyThe property type you want to delete.
See also
ProjectItem.PropertyTypeLibrary

Examples

To delete a property type:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library in the project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Get all property types stored in the Property Types library and delete them.
foreach (Property property in propertyTypesLibrary.ProjectPropertyTypes.ToList())
{
propertyTypesLibrary.DeleteProperty(property);
}
}

◆ GetCompatiblePropertyEditors()

IEnumerable<PropertyEditor> GetCompatiblePropertyEditors ( Property  property)

Gets the property editors that Kanzi Studio can use to set the value of a property.

Parameters
propertyThe property.
Returns
List of the property editors that Kanzi Studio can use to set the value of the property.

◆ GetProperty()

Property GetProperty ( string  name)

Gets the property type with the given name.

The property type can be either:

  • Property type stored in the Property Types library of the current Kanzi Studio project
  • Kanzi default property type
Parameters
nameName of the property.
See also
DefaultPropertyTypes, ProjectPropertyTypes

Property Documentation

◆ DefaultPropertyTypes

IEnumerable<Property> DefaultPropertyTypes
get

Gets the default Kanzi property types.

Lists also the property types provided by Kanzi Engine plugins.

Examples

To get all default Kanzi property types:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Get all default Kanzi property types.
foreach (Property property in propertyTypesLibrary.DefaultPropertyTypes)
{
// Print the names of all default property types to the Kanzi Studio Log window.
studio.Log(property.Name);
}
}

◆ ProjectPropertyTypes

IEnumerable<Property> ProjectPropertyTypes
get

Gets the property types stored in the Property Types library.

Examples

To get all property types in the Property Types library:

public void Execute(PluginCommandParameter parameter)
{
// Get the Property Types library which stores all property types you create in a Kanzi Studio project.
var propertyTypesLibrary = studio.ActiveProject.PropertyTypeLibrary;
// Get all property types stored in the Property Types library.
foreach (Property property in propertyTypesLibrary.ProjectPropertyTypes)
{
// Print the names of all property types stored in the Property Types library to the Kanzi Studio Log window.
studio.Log(property.Name);
}
}