[]
Creates a new item in the tag cloud with default values.
public TagCloudItem()
Public Sub New()
Creates a new item in the tag cloud with specified text and weight.
public TagCloudItem(string text, double weight)
Public Sub New(text As String, weight As Double)
Type | Name | Description |
---|---|---|
string | text | Text of the item |
double | weight | Weight of the item |
Creates a new item in the tag cloud with specified text, weight, and anchor.
public TagCloudItem(string text, double weight, string href)
Public Sub New(text As String, weight As Double, href As String)
Type | Name | Description |
---|---|---|
string | text | Text of the item |
double | weight | Weight of the item |
string | href | Address of the HTML anchor |
Creates a new item in the tag cloud with the specified parameters.
public TagCloudItem(string text, double weight, string href, string title)
Public Sub New(text As String, weight As Double, href As String, title As String)
Type | Name | Description |
---|---|---|
string | text | Text of the item |
double | weight | Weight of the item |
string | href | Address of the HTML anchor |
string | title | String of the title of the HTML anchor |
Creates a new item in the tag cloud with the specified parameters and data.
public TagCloudItem(string text, double weight, string href, string title, object itemData)
Public Sub New(text As String, weight As Double, href As String, title As String, itemData As Object)
Type | Name | Description |
---|---|---|
string | text | Text of the item |
double | weight | Weight of the item |
string | href | Address of the HTML anchor |
string | title | String of the title of the HTML anchor |
object | itemData | Data of the item |
Creates a new item in the tag cloud with the specified parameters, data, and display text.
public TagCloudItem(string text, double weight, string href, string title, object itemData, string displayText)
Public Sub New(text As String, weight As Double, href As String, title As String, itemData As Object, displayText As String)
Type | Name | Description |
---|---|---|
string | text | Text of the item |
double | weight | Weight of the item |
string | href | Address of the HTML anchor |
string | title | String of the title of the HTML anchor |
object | itemData | Data of the item |
string | displayText | String of the text to display |