Skip to content

Using Phonetics

Francois Botha edited this page Feb 26, 2018 · 3 revisions

UsingPhonetics.jpg

Phonetics are implemented as part of the Rich Text functionality. For more information see Using Rich Text

var wb = new XLWorkbook();
var ws = wb.Worksheets.Add("Using Phonetics");

var cell = ws.Cell(1, 1);

// First we add the text.
cell.RichText.AddText("みんなさんはお元気ですか。").SetFontSize(16);

// And then we add the phonetics
cell.RichText.Phonetics.SetFontSize(8);
cell.RichText.Phonetics.Add("げん", 7, 1);
cell.RichText.Phonetics.Add("き", 8, 1);

wb.SaveAs("UsingPhonetics.xlsx");

FAQ

Examples

Real world scenarios

Time Savers

Performance and Memory

Misc

Inserting Data/Tables

Styles

Ranges

Rows

Columns

Page Setup (Print Options)

AutoFilters

Comments

Dev docs

Clone this wiki locally