Spread ASP.NET 15
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / TagCloudCellType Class / DisplayCount Property
Example


In This Topic
    DisplayCount Property (TagCloudCellType)
    In This Topic
    Gets or sets the number of individual cloud items to display.
    Syntax
    'Declaration
     
    Public Property DisplayCount As Integer
    'Usage
     
    Dim instance As TagCloudCellType
    Dim value As Integer
     
    instance.DisplayCount = value
     
    value = instance.DisplayCount
    public int DisplayCount {get; set;}

    Property Value

    Integer number of items to display
    Example
    This example shows the properties of the tag cloud cell type.
    FarPoint.Web.Spread.TagCloudCellType tagCell = new FarPoint.Web.Spread.TagCloudCellType(new string[] { "SEARCH", "ASP.NET",
    "JAVASCRIPT" }, new string[] { "20", "50", "30" }, new string[] { "http://www.google.com", "http://www.farpointspread.com/",
    "http://www.w3schools.com/js/" });
    tagCell.RankingColors = new string[] { "green", "red", "puple", "yellow", "brown", "black" };
    tagCell.RankingFonts = new string[] { "Arial", "Century", "Georgia", "Onyx", "Times Roman" };
    tagCell.HoverColor = "Orange";
    tagCell.DisplayLimit = FarPoint.Web.Spread.DisplayLimit.MostWeight;
    tagCell.DisplayCount = 2;
    tagCell.SortOrder = FarPoint.Web.Spread.SortOrder.DisplayTextDescending;
    tagCell.BackColor = System.Drawing.Color.Yellow;
    FpSpread1.ActiveSheetView.Cells[1, 0].CellType = tagCell;
    
    Dim tagCell As New FarPoint.Web.Spread.TagCloudCellType(New String() {"SEARCH", "ASP.NET", "JAVASCRIPT"}, New String() {"20",
    "50", "30"}, New String() {"http://www.google.com", "http://www.farpointspread.com/", "http://www.w3schools.com/js/"})
    tagCell.RankingColors = New String() {"green", "red", "puple", "yellow", "brown", "black"}
    tagCell.RankingFonts = New String() {"Arial", "Century", "Georgia", "Onyx", "Times Roman"}
    tagCell.HoverColor = "Orange"
    tagCell.DisplayLimit = FarPoint.Web.Spread.DisplayLimit.MostWeight
    tagCell.DisplayCount = 2
    tagCell.SortOrder = FarPoint.Web.Spread.SortOrder.DisplayTextDescending
    tagCell.BackColor = System.Drawing.Color.Yellow
    FpSpread1.ActiveSheetView.Cells(1, 0).CellType = tagCell
    See Also