How to get font size/color/name in each run based on Net C#

Hi, Support:

Would you please provide me a full demo to achieve this purpose by Aspose.Words.dll for based on Net C#?
Thanks!

@ducaisoft You can use code like this following to get properties of each Run:

Document doc = new Document(@"C:\Temp\in.docx");

// Get all run nodes
NodeCollection runs = doc.GetChildNodes(NodeType.Run, true);
foreach (Run r in runs)
    Console.WriteLine($"Size: {r.Font.Size}\tColor: {r.Font.Color}\tFont Name: {r.Font.Name}");