Skip to main content
A newer version of this page is available. .
Tab

RankPropertiesCollection Class

Represents a collection that maintains rank settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class RankPropertiesCollection :
    Collection<RankProperties>

The following members return RankPropertiesCollection objects:

Remarks

A tag cloud control holds its rank settings within a collection which is represented by an instance of the RankPropertiesCollection class and can be accessed via the ASPxCloudControl.RankProperties property. The properties and methods exposed by the RankPropertiesCollection class can be used to perform common collection operations such as adding new or the deleting the existing ranks. Collection items are represented by the instances of the RankProperties class and can be accessed using indexer notation.

Each collection item contains the appearance settings applied to the items rated by the corresponding rank. The correspondence between a collection item and the rank to which it is applied is based upon the order of items in the RankPropertiesCollection: the first collection item (whose index is 0) defines the appearance of the minimal rank, and so on.

See Also