Class ExtendedPropertySet
Represents set of the extended properties.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class ExtendedPropertySet : Dictionary<string, ExtendedProperty>
Constructors
ExtendedPropertySet()
Initializes a new instance of the ExtendedPropertySet class.
Declaration
public ExtendedPropertySet()
ExtendedPropertySet(SerializationInfo, StreamingContext)
Initializes a new instance of the ExtendedPropertySet class.
Declaration
protected ExtendedPropertySet(SerializationInfo info, StreamingContext context)
Parameters
System. Serialization information. |
System. Streaming context. |
Properties
Item[String]
Gets extended property definition.
Declaration
public ExtendedProperty this[string propertyName] { get; }
Parameters
System. Name of the extended property. |
Property Value
Extended Extended property definition or null. |
Methods
Parse(String)
Converts a String representation of the ExtendedPropertySet into the equivalent ExtendedPropertySet class.
Declaration
public static ExtendedPropertySet Parse(string source)
Parameters
System. The String representation of the ExtendedPropertySet class. |
Returns
Extended The equivalent ExtendedPropertySet class. |
RegisterProperty(String, String, Type, Object)
Register new property.
Declaration
public void RegisterProperty(string propertyName, string displayName, Type propertyType, object defaultValue)
Parameters
System. Name of the property. |
System. Display name of the property. |
System. Type of the property. |
System. Default value. |