[]
Converts a collection of items to tag cloud items.
public static Collection<TagCloudItem> ConvertToTagCloudItems(string[] text, string[] weight)
Public Shared Function ConvertToTagCloudItems(text As String(), weight As String()) As Collection(Of TagCloudItem)
| Type | Name | Description |
|---|---|---|
| string[] | text | Items for the cloud specified in a string array |
| string[] | weight | Weights for the cloud items specified in a string array |
| Type | Description |
|---|---|
| Collection<TagCloudItem> |
Converts a collection of items to tag cloud items.
public static Collection<TagCloudItem> ConvertToTagCloudItems(string[] text, string[] weight, string[] href)
Public Shared Function ConvertToTagCloudItems(text As String(), weight As String(), href As String()) As Collection(Of TagCloudItem)
| Type | Name | Description |
|---|---|---|
| string[] | text | Items for the cloud specified in a string array |
| string[] | weight | Weights for the cloud items specified in a string array |
| string[] | href | HTML anchors for the cloud items specified in a string array |
| Type | Description |
|---|---|
| Collection<TagCloudItem> |
Converts a collection of items to tag cloud items.
public static Collection<TagCloudItem> ConvertToTagCloudItems(string[] text, string[] weight, string[] href, string[] title)
Public Shared Function ConvertToTagCloudItems(text As String(), weight As String(), href As String(), title As String()) As Collection(Of TagCloudItem)
| Type | Name | Description |
|---|---|---|
| string[] | text | Items for the cloud specified in a string array |
| string[] | weight | Weights for the cloud items specified in a string array |
| string[] | href | HTML anchors for the cloud items specified in a string array |
| string[] | title | Title for the tag cloud |
| Type | Description |
|---|---|
| Collection<TagCloudItem> |
Converts a collection of items to tag cloud items.
public static Collection<TagCloudItem> ConvertToTagCloudItems(string[] text, string[] weight, string[] href, string[] title, string[] displayText)
Public Shared Function ConvertToTagCloudItems(text As String(), weight As String(), href As String(), title As String(), displayText As String()) As Collection(Of TagCloudItem)
| Type | Name | Description |
|---|---|---|
| string[] | text | Items for the cloud specified in a string array |
| string[] | weight | Weights for the cloud items specified in a string array |
| string[] | href | HTML anchors for the cloud items specified in a string array |
| string[] | title | Titles for the cloud items specified in a string array |
| string[] | displayText | Text to display for the cloud items specified in a string array |
| Type | Description |
|---|---|
| Collection<TagCloudItem> |
Converts a collection of items to tag cloud items.
public static Collection<TagCloudItem> ConvertToTagCloudItems(string[] text, string[] weight, string[] href, string[] title, string[] displayText, object[] itemData)
Public Shared Function ConvertToTagCloudItems(text As String(), weight As String(), href As String(), title As String(), displayText As String(), itemData As Object()) As Collection(Of TagCloudItem)
| Type | Name | Description |
|---|---|---|
| string[] | text | Items for the cloud specified in a string array |
| string[] | weight | Weights for the cloud items specified in a string array |
| string[] | href | HTML anchors for the cloud items specified in a string array |
| string[] | title | Titles for the cloud items specified in a string array |
| string[] | displayText | Text to display for the cloud items specified in a string array |
| object[] | itemData | Item data for the cloud items specified in a string array |
| Type | Description |
|---|---|
| Collection<TagCloudItem> |