Hi Volvick,
You can show subscripts and superscripts in a NMaster description by using the appropriate Unicode characters. The following is a simple example:
======================================================================
// Create a library document
NLibraryDocument libDoc = new NLibraryDocument();
// Create a master and use a superscript 2 in its description
NMaster a = new NMaster(new NRectangleShape(0, 0, 2, 2), NMeterMetricUnit.Meter, "Square", "Square with area of 4 m\u00B2");
libDoc.AddChild(a);
// Create a library view
NLibraryView libView = new NLibraryView();
libView.Document = libDoc;
libView.Dock = DockStyle.Fill;
// Create a simple form to host the library view
Form form = new Form();
form.Controls.Add(libView);
form.Text = "Library";
form.FormBorderStyle = FormBorderStyle.FixedToolWindow;
form.TopMost = true;
// Show the form
form.Show();
======================================================================
This code will produce the following form:
Best Regards,
Nevron Support Team