MappingCollection Class

PPJoy

A MappingCollection is a specialized collection that can store related Mapping objects together. This provides for ease of handling when many different Mappings must be manipulated as a group. A MappingCollection exposes several sub-collections, from which all Mappings of a particular Type can be retrieved (for instance, all ButtonMappings in the MappingCollection can be retrieved from the ButtonMappings property.

Namespace:  PPJoy
Assembly:  PPJoyWrapper (in PPJoyWrapper.dll)

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
<ClassInterfaceAttribute(ClassInterfaceType.AutoDual)> _
Public NotInheritable Class MappingCollection _
	Implements IList, ICollection, IEnumerable, ICloneable
C#
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType.AutoDual)]
public sealed class MappingCollection : IList, 
	ICollection, IEnumerable, ICloneable
Visual C++
[SerializableAttribute]
[ClassInterfaceAttribute(ClassInterfaceType::AutoDual)]
public ref class MappingCollection sealed : IList, 
	ICollection, IEnumerable, ICloneable

Inheritance Hierarchy

System..::.Object
  PPJoy..::.MappingCollection

See Also