ChartTitle.Characters[Object, Object] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property Microsoft::Office::Interop::Word::ChartCharacters ^ Characters[System::Object ^, System::Object ^] { Microsoft::Office::Interop::Word::ChartCharacters ^ get(System::Object ^ Start, System::Object ^ Length); };
public Microsoft.Office.Interop.Word.ChartCharacters Characters[object Start, object Length] { get; }
member this.Characters(obj * obj) : Microsoft.Office.Interop.Word.ChartCharacters
Public ReadOnly Property Characters(Optional Start As Object, Optional Length As Object) As ChartCharacters
Parameters
- Start
- 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
- 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
Returns ChartCharacters.
Remarks
The ChartCharacters object isn't a collection.