BufferedCharacterItemSet
The BufferedCharacterItemSet class represents a collection of buffered character items and associated character clusters. Each item in the collection is a BufferedCharacterItem object.
Definition
Namespace: Dynamsoft.DLR
class BufferedCharacterItemSet : IEnumerable<BufferedCharacterItem>
Methods
| Method | Description |
|---|---|
GetItemsCount |
Gets the number of items in the buffered item set. |
GetItem |
Gets the BufferedCharacterItem object at the specified index. |
GetItems |
Gets all the BufferedCharacterItem objects. |
GetCharacterClustersCount |
Gets the number of character clusters in the buffered item set. |
GetCharacterCluster |
Gets the character cluster at the specified index. |
GetCharacterClusters |
Gets all the character clusters. |
GetItemsCount
Gets the number of items in the buffered item set.
int GetItemsCount()
Return value
Returns the number of items in the buffered item set.
GetItem
Gets the BufferedCharacterItem object at the specified index.
BufferedCharacterItem GetItem(int index)
Parameters
[in] index The index of the item to retrieve.
Return value
Returns the BufferedCharacterItem object at the specified index.
See Also
GetItems
Gets all the BufferedCharacterItem objects.
BufferedCharacterItem[] GetItems()
Return value
Returns all the BufferedCharacterItem objects.
See Also
GetCharacterClustersCount
Gets the number of character clusters in the buffered item set.
int GetCharacterClustersCount()
Return value
Returns the number of character clusters in the buffered item set.
GetCharacterCluster
Gets the character cluster at the specified index.
CharacterCluster GetCharacterCluster(int index)
Parameters
[in] index The index of the character cluster to retrieve.
Return value
Returns the character cluster at the specified index.
See Also
GetCharacterClusters
Gets all the character clusters.
CharacterCluster[] GetCharacterClusters()
Return value
Returns all the character clusters.
See Also