[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRichText

Interface IRichText

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents the rich text class for a cell.

public interface IRichText : IEnumerable<ITextRun>, IEnumerable
Inherited Members
System.Collections.Generic.IEnumerable<GrapeCity.Documents.Excel.ITextRun>.GetEnumerator()

Properties

Count

Gets the count of ITextRun objects.

int Count { get; }

Property Value

int

PlainText

Gets the plain text that is composed of all ITextRun objects.

string PlainText { get; }

Property Value

string

Methods

Add(string)

Adds a text run into current rich text object.

ITextRun Add(string text)

Parameters

text string

the string text of the text run to be added.

Returns

ITextRun

the ITextRun object that has been successfully added.