IXRSetterBaseCollection (Compact 2013)

3/28/2014

This class represents a collection of objects that inherit from IXRSetterBase.

Syntax

class IXRSetterBaseCollection : public IXRDependencyObject

Inheritance Hierarchy

IXRDependencyObject

IXRSetterBaseCollection

Methods

Method

Description

IXRSetterBaseCollection::Add

Adds an item to the end of this collection and retrieves the index of where it was added.

IXRSetterBaseCollection::Clear

Removes all items from this collection.

IXRSetterBaseCollection::Contains

Determines whether an item is in this collection.

IXRSetterBaseCollection::GetCount

Retrieves the number of items in this collection.

IXRSetterBaseCollection::GetIsSealed

Retrieves a value that indicates whether this collection is in a read-only state.

IXRSetterBaseCollection::GetItem

Retrieves the item at the specified index in this collection.

IXRSetterBaseCollection::IndexOf

Searches for the specified item and retrieves the zero-based index of its last occurrence within this collection.

IXRSetterBaseCollection::Insert

Inserts an item into this collection at the location that has the specified index value.

IXRSetterBaseCollection::Remove

Removes a specific item from this collection.

IXRSetterBaseCollection::RemoveAt

Removes the item at the specified index from this collection.

Thread Safety

Members of this class are thread-safe if you previously called IXRApplication::CreateHostFromXaml and supplied it with an XRWindowCreateParams structure that has AllowsMultipleThreadAccess set to true.

Remarks

To obtain an IXRSetterBaseCollection pointer, call IXRStyle::GetSetters. Then, use the methods of this class to add, remove, or retrieve items. To clear the complete collection, call the IXRSetterBaseCollection::Clear method.

When you create a class instance, use an IXRSetterBaseCollectionPtr smart pointer instead of a raw interface pointer. For more information, see XRPtr<Interface>.

You can define a setter base collection in Microsoft Silverlight 3 XAML. For information on the differences between XAML in XAML for Windows Embedded and Silverlight 3, see Differences Between Microsoft Silverlight 3 and XAML for Windows Embedded. For more information about how to define this collection in the source XAML for your application, see the SetterBaseCollection Class on MSDN.

.NET Framework Equivalent

System.Windows.SetterBaseCollection

Requirements

Header

XamlRuntime.h

sysgen

SYSGEN_XAML_RUNTIME

See Also

Reference

Classes for Collection Management
IXRStyle::GetSetters