Click or drag to resize

AttributeDefinitionDictionary Class

Represents a dictionary of AttributeDefinitions.
Inheritance Hierarchy
SystemObject
  DXFReaderNET.CollectionsAttributeDefinitionDictionary

Namespace:  DXFReaderNET.Collections
Assembly:  DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax
public sealed class AttributeDefinitionDictionary : IDictionary<string, AttributeDefinition>, 
	ICollection<KeyValuePair<string, AttributeDefinition>>, IEnumerable<KeyValuePair<string, AttributeDefinition>>, 
	IEnumerable

The AttributeDefinitionDictionary type exposes the following members.

Constructors
  NameDescription
Public methodAttributeDefinitionDictionary
Initializes a new instance of AttributeDefinitionDictionary.
Public methodAttributeDefinitionDictionary(Int32)
Initializes a new instance of AttributeDefinitionDictionary and has the specified initial capacity.
Top
Properties
  NameDescription
Public propertyCount
Gets the number of attribute definition contained in the current dictionary.
Public propertyIsReadOnly
Gets a value indicating whether the actual dictionary is read-only.
Public propertyItem
Gets or sets the attribute definition with the specified tag.
Public propertyTags
Gets an ICollection containing the tags of the current dictionary.
Public propertyValues
Gets an ICollection containing the attribute definition list of the current dictionary.
Top
Methods
  NameDescription
Public methodAdd
Adds an attribute definition to the dictionary.
Public methodAddRange
Adds an attribute definition list to the dictionary.
Public methodClear
Removes all attribute definition from the current dictionary.
Public methodContainsTag
Determines whether current dictionary contains an attribute definition with the specified tag.
Public methodContainsValue
Determines whether current dictionary contains a specified attribute definition.
Public methodGetEnumerator
Returns an enumerator that iterates through the dictionary.
Public methodRemove
Removes an attribute definition with the specified tag from the current dictionary.
Public methodTryGetValue
Gets the attribute definition associated with the specified tag.
Top
See Also