DisplayFormat.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.
Gets a Characters object that represents a range of characters within the text of the associated Range object as it is displayed in the current user interface.
public:
property Microsoft::Office::Interop::Excel::Characters ^ Characters[System::Object ^, System::Object ^] { Microsoft::Office::Interop::Excel::Characters ^ get(System::Object ^ Start, System::Object ^ Length); };
public Microsoft.Office.Interop.Excel.Characters Characters[object Start, object Length] { get; }
Public ReadOnly Property Characters(Optional Start As Object, Optional Length As Object) As Characters
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
A Characters object that represents a range of characters within the text of the associated Range object as it is displayed in the current user interface.