Class NumberList

Class NumberList

Namn på plats: Aspose.Note Sammanfattning: Aspose.Note.dll (25.4.0)

Representerar den numrerade eller bulleted listan.

public class NumberList

Inheritance

object NumberList

Arvsmedlemmar

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

Visa hur man lägger in en ny lista med kinesisk numrering.

string dataDir = RunExamples.GetDataDir_Text();

                                                               // Initialize OneNote document
                                                               Aspose.Note.Document doc = new Aspose.Note.Document();

                                                               // Initialize OneNote page
                                                               Aspose.Note.Page page = new Aspose.Note.Page(doc);
                                                               Outline outline = new Outline(doc);

                                                               // Apply text style settings
                                                               ParagraphStyle defaultStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };

                                                               // Numbers in the same outline are automatically incremented.
                                                               OutlineElement outlineElem1 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
                                                               RichText text1 = new RichText(doc) { Text = "First", ParagraphStyle = defaultStyle };
                                                               outlineElem1.AppendChildLast(text1);

                                                               //------------------------
                                                               OutlineElement outlineElem2 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
                                                               RichText text2 = new RichText(doc) { Text = "Second", ParagraphStyle = defaultStyle };
                                                               outlineElem2.AppendChildLast(text2);

                                                               //------------------------
                                                               OutlineElement outlineElem3 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
                                                               RichText text3 = new RichText(doc) { Text = "Third", ParagraphStyle = defaultStyle };
                                                               outlineElem3.AppendChildLast(text3);

                                                               //------------------------
                                                               outline.AppendChildLast(outlineElem1);
                                                               outline.AppendChildLast(outlineElem2);
                                                               outline.AppendChildLast(outlineElem3);
                                                               page.AppendChildLast(outline);
                                                               doc.AppendChildLast(page);

                                                               // Save OneNote document
                                                               dataDir = dataDir + "InsertChineseNumberList_out.one"; 
                                                               doc.Save(dataDir);

Visa hur man lägger in en ny lista med numrering.

string dataDir = RunExamples.GetDataDir_Text();

                                                       // Create an object of the Document class
                                                       Document doc = new Document();

                                                       // Initialize Page class object
                                                       Aspose.Note.Page page = new Aspose.Note.Page(doc);

                                                       // Initialize Outline class object
                                                       Outline outline = new Outline(doc);

                                                       // Initialize TextStyle class object and set formatting properties
                                                       ParagraphStyle defaultStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };

                                                       // Initialize OutlineElement class objects and apply numbering
                                                       // Numbers in the same outline are automatically incremented.
                                                       OutlineElement outlineElem1 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
                                                       RichText text1 = new RichText(doc) { Text = "First", ParagraphStyle = defaultStyle };
                                                       outlineElem1.AppendChildLast(text1);

                                                       OutlineElement outlineElem2 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
                                                       RichText text2 = new RichText(doc) { Text = "Second", ParagraphStyle = defaultStyle };
                                                       outlineElem2.AppendChildLast(text2);

                                                       OutlineElement outlineElem3 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
                                                       RichText text3 = new RichText(doc) { Text = "Third", ParagraphStyle = defaultStyle };
                                                       outlineElem3.AppendChildLast(text3);

                                                       // Add outline elements
                                                       outline.AppendChildLast(outlineElem1);
                                                       outline.AppendChildLast(outlineElem2);
                                                       outline.AppendChildLast(outlineElem3);

                                                       // Add Outline node
                                                       page.AppendChildLast(outline);

                                                       // Add Page node
                                                       doc.AppendChildLast(page);

                                                       // Save OneNote document
                                                       dataDir = dataDir + "ApplyNumberingOnText_out.one"; 
                                                       doc.Save(dataDir);

Constructors

NumberList(String, string och int)

Initialiserar en ny instans av Aspose.Note.NumberList klass.Denna instans representerar en bulleted lista.

public NumberList(string bulletedSymbol, string font, int fontSize)

Parameters

bulletedSymbol string

En symbol som representerar en kul.

font string

Ett tecken för bullet.

fontSize int

En fontstorlek för bullet.

NumberList(string, NumberFormat, sträng, int)

Initialiserar en ny instans av Aspose.Note.NumberList klass.Denna instans representerar en numrerad lista.

public NumberList(string format, NumberFormat numberFormat, string font, int fontSize)

Parameters

format string

Formatet för den numrerade header.

numberFormat NumberFormat

Formatet för siffran i header.

font string

Ett tecken för den numrerade header.

fontSize int

En fontstorlek för den numrerade header.

Properties

Font

Få eller ange namnet på teckensnittet.

public string Font { get; set; }

Fastighetsvärde

string

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

FontColor

Få eller ställa in teckensnittet färg.

public Color FontColor { get; set; }

Fastighetsvärde

Color

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

FontSize

Få eller ange fontstorleken.

public int FontSize { get; set; }

Fastighetsvärde

int

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

Format

Få eller ställa in formatet för linjehuvudet. För bulleted listor representerar en bulltsymbol.

public string Format { get; set; }

Fastighetsvärde

string

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

IsBold

Få eller ange ett värde som indikerar om textstilen är modig.

public bool IsBold { get; set; }

Fastighetsvärde

bool

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

IsItalic

Få eller ange ett värde som anger om textstilen är italiensk.

public bool IsItalic { get; set; }

Fastighetsvärde

bool

Examples

Visa hur man hämtar information om listans formatering.

string dataDir = RunExamples.GetDataDir_Text();

                                                                     // Load the document into Aspose.Note.
                                                                     Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");

                                                                     // Retrieve a collection nodes of the outline element
                                                                     IList<outlineelement> nodes = oneFile.GetChildNodes<outlineelement>();

                                                                     // Iterate through each node
                                                                     foreach (OutlineElement node in nodes)
                                                                     {
                                                                         if (node.NumberList != null)
                                                                         {
                                                                             NumberList list = node.NumberList;

                                                                             // Retrieve font name
                                                                             Console.WriteLine("Font Name: " + list.Font);

                                                                             // Retrieve font length
                                                                             Console.WriteLine("Font Length: " + list.Font.Length);

                                                                             // Retrieve font size
                                                                             Console.WriteLine("Font Size: " + list.FontSize);

                                                                             // Retrieve font color
                                                                             Console.WriteLine("Font Color: " + list.FontColor);

                                                                             // Retrieve format
                                                                             Console.WriteLine("Font format: " + list.Format);

                                                                             // Check bold
                                                                             Console.WriteLine("Is bold: " + list.IsBold);

                                                                             // Check italic
                                                                             Console.WriteLine("Is italic: " + list.IsItalic);
                                                                             Console.WriteLine();
                                                                         }
                                                                     }</outlineelement></outlineelement>

LastModifiedTime

Få eller ställa in den senaste modifierade tiden.

public DateTime LastModifiedTime { get; set; }

Fastighetsvärde

DateTime

NumberFormat

Få eller ställa in numret format som används för en grupp av automatiskt nummererade objekt. bör vara noll för bulleted listor.

public NumberFormat? NumberFormat { get; set; }

Fastighetsvärde

NumberFormat ?

Restart

Få eller ange det numeriska värdet som överstiger automatiskt nummervärdet i listobjektet.

public int Restart { get; set; }

Fastighetsvärde

int

Methods

Equals(Objektet)

Bestämmer om det angivna objektet är lika med det aktuella objektet.

public override bool Equals(object obj)

Parameters

obj object

och föremålet .

Returns

bool

Systemet är boolean.

Equals(NumberList)

Bestämmer om det angivna objektet är lika med det aktuella objektet.

public bool Equals(NumberList other)

Parameters

other NumberList

och föremålet .

Returns

bool

Systemet är boolean.

GetHashCode()

Det fungerar som en hashfunktion för den typen.

public override int GetHashCode()

Returns

int

Det här är System.Int32.

GetNumberedListHeader(int)

Få den numrerade listan header.

public string GetNumberedListHeader(int sequenceNumber)

Parameters

sequenceNumber int

sekvensnummer i den numrerade listan.

Returns

string

En strängrepresentation av det angivna sekvensnumret.

 Svenska