DesignerAutoFormatCollection Class

 

Represents a collection of DesignerAutoFormat objects within a control designer. This class cannot be inherited.

Namespace:   System.Web.UI.Design
Assembly:  System.Design (in System.Design.dll)

System::Object
  System.Web.UI.Design::DesignerAutoFormatCollection

public ref class DesignerAutoFormatCollection sealed : IList, 
	ICollection, IEnumerable

NameDescription
System_CAPS_pubmethodDesignerAutoFormatCollection()

Initializes a new instance of the DesignerAutoFormatCollection class.

NameDescription
System_CAPS_pubpropertyCount

Gets the number of DesignerAutoFormat objects in the collection.

System_CAPS_pubpropertyItem[Int32]

Gets or sets a DesignerAutoFormat object at the specified index in the collection.

System_CAPS_pubpropertyPreviewSize

Gets the maximum outer dimensions of the control as it will appear at run time.

System_CAPS_pubpropertySyncRoot

Gets an object that can be used to synchronize access to the DesignerAutoFormatCollection object.

NameDescription
System_CAPS_pubmethodAdd(DesignerAutoFormat^)

Adds the specified DesignerAutoFormat object to the end of the collection.

System_CAPS_pubmethodClear()

Removes all formats from the collection.

System_CAPS_pubmethodContains(DesignerAutoFormat^)

Determines whether the specified format is contained within the collection.

System_CAPS_pubmethodEquals(Object^)

Determines whether the specified object is equal to the current object.(Inherited from Object.)

System_CAPS_pubmethodGetHashCode()

Serves as the default hash function. (Inherited from Object.)

System_CAPS_pubmethodGetType()

Gets the Type of the current instance.(Inherited from Object.)

System_CAPS_pubmethodIndexOf(DesignerAutoFormat^)

Returns the index of the specified DesignerAutoFormat object within the collection.

System_CAPS_pubmethodInsert(Int32, DesignerAutoFormat^)

Inserts a DesignerAutoFormat object into the collection at the specified index.

System_CAPS_pubmethodRemove(DesignerAutoFormat^)

Removes the specified DesignerAutoFormat object from the collection.

System_CAPS_pubmethodRemoveAt(Int32)

Removes the DesignerAutoFormat object at the specified index within the collection.

System_CAPS_pubmethodToString()

Returns a string that represents the current object.(Inherited from Object.)

NameDescription
System_CAPS_pubinterfaceSystem_CAPS_privmethodICollection::CopyTo(Array^, Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. Copies the elements of the collection to an Array object, starting at a particular Array index when the DesignerAutoFormatCollection object is cast to an ICollection interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIEnumerable::GetEnumerator()

This API supports the product infrastructure and is not intended to be used directly from your code. Returns an IEnumerator interface that iterates through the collection when the DesignerAutoFormatCollection object is cast to an IEnumerable interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Add(Object^)

This API supports the product infrastructure and is not intended to be used directly from your code. Adds an item to the collection when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Contains(Object^)

This API supports the product infrastructure and is not intended to be used directly from your code. Determines whether the collection contains a specific value when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::IndexOf(Object^)

This API supports the product infrastructure and is not intended to be used directly from your code. Determines the index of a specific item in the collection when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Insert(Int32, Object^)

This API supports the product infrastructure and is not intended to be used directly from your code. Inserts an item into the collection at the specified index when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::Remove(Object^)

This API supports the product infrastructure and is not intended to be used directly from your code. Removes the first occurrence of a specific object from the collection when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privmethodIList::RemoveAt(Int32)

This API supports the product infrastructure and is not intended to be used directly from your code. Removes the item at the specified index when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection::Count

This API supports the product infrastructure and is not intended to be used directly from your code. Gets the number of elements that are contained in the collection when the DesignerAutoFormatCollection object is cast to an ICollection interface.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyICollection::IsSynchronized

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether access to the collection is synchronized (thread safe) when the DesignerAutoFormatCollection object is cast to an ICollection interface.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::IsFixedSize

This API supports the product infrastructure and is not intended to be used directly from your code. Gets a value that indicates whether the collection has a fixed size when the DesignerAutoFormatCollection object is cast to an IList interface.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::IsReadOnly

This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this method, see IsReadOnly.

System_CAPS_pubinterfaceSystem_CAPS_privpropertyIList::Item[Int32]

This API supports the product infrastructure and is not intended to be used directly from your code. Gets the element at the specified index when the DesignerAutoFormatCollection object is cast to an IList interface.

NameDescription
System_CAPS_pubmethodAsParallel()

Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.)

System_CAPS_pubmethodAsQueryable()

Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.)

System_CAPS_pubmethodCast<TResult>()

Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.)

System_CAPS_pubmethodOfType<TResult>()

Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.)

The ControlDesigner class and any derived class defines the AutoFormats property as a DesignerAutoFormatCollection object. Control developers can override the AutoFormats property in a derived control designer, add custom automatic formatting styles, and return the collection of supported formats to the visual designer.

The collection dynamically increases as objects are added. Indexes in this collection are zero-based. Use the Count property to determine how many automatic style formats are in the collection.

Additionally, use the DesignerAutoFormatCollection methods and properties to provide the following functionality:

  • The Add method to add a single format to the collection.

  • The Insert method to add a format at a particular index within the collection.

  • The Remove method to remove a format.

  • The RemoveAt method to remove the format at a particular index.

  • The Contains method to determine whether a particular format is already in the collection.

  • The IndexOf method to retrieve the index of a format within the collection.

  • The Item property to get or set the format at a particular index, using array notation.

  • The Clear method to remove all formats from the collection.

  • The Count property to determine the number of formats in the collection.

  • The IndexOf method to get the position of a format within the collection.

The following code example demonstrates how to implement the AutoFormats property in a custom control designer. The derived control designer implements the AutoFormats property by adding three instances of a custom automatic format that are derived from the DesignerAutoFormat class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top
Show: