DataLabel.Characters Property
Returns a ChartCharacters object that represents a range of characters within the object text. You can use the ChartCharacters object to format characters within a text string.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
ReadOnly Property Characters ( _
Start As Object, _
Length As Object _
) As ChartCharacters
Get
'Usage
Dim instance As DataLabel
Dim Start As Object
Dim Length As Object
Dim value As ChartCharacters
value = instance.Characters(Start, Length)
ChartCharacters this[
Object Start,
Object Length
] { get; }
Parameters
- Start
Type: System.Object
The first character to be returned. If this argument is either 1 or omitted, this property returns a range of characters starting with the first character.
- Length
Type: System.Object
The number of characters to be returned. If this argument is omitted, this property returns the remainder of the string (everything after the Start character).
Property Value
Type: Microsoft.Office.Interop.PowerPoint.ChartCharacters
Remarks
The ChartCharacters object is not a collection.