ClassExtendedPropertySet
Represents set of the extended properties.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
[TypeConverter(typeof(ExtendedPropertySetConverter))]
public class ExtendedPropertySet : Dictionary<string, ExtendedProperty>, IDictionary<string, ExtendedProperty>, ICollection<KeyValuePair<string, ExtendedProperty>>, IDictionary, ICollection, IReadOnlyDictionary<string, ExtendedProperty>, IReadOnlyCollection<KeyValuePair<string, ExtendedProperty>>, IEnumerable<KeyValuePair<string, ExtendedProperty>>, IEnumerable, ISerializable, IDeserializationCallback
Inheritance: objectDictionary<string, ExtendedProperty>ExtendedPropertySet
Implements:
Inherited Members
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
info
Serialization information.
context
Streaming context.
Properties
this[string]
Gets extended property definition.
Declaration
public ExtendedProperty this[string propertyName] { get; }
Parameters
propertyName
Name of the extended property.
Property Value
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
source
The String representation of the ExtendedPropertySet class.
Returns
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
propertyName
Name of the property.
displayName
Display name of the property.
propertyType
Type of the property.
defaultValue
Default value.