NumberList.FontColor
NumberList.FontColor property
फ़ॉन्ट रंग प्राप्त या सेट करता है।
public Color FontColor { get; set; }
उदाहरण
दिखाता है कि सूची के स्वरूपण के बारे में जानकारी कैसे प्राप्त करें।
string dataDir = RunExamples.GetDataDir_Text();
// दस्तावेज़ को Aspose.Note में लोड करें।
Document oneFile = new Document(dataDir + "ApplyNumberingOnText.one");
// रूपरेखा तत्व के संग्रह नोड्स को पुनः प्राप्त करें
IList<OutlineElement> nodes = oneFile.GetChildNodes<OutlineElement>();
// प्रत्येक नोड के माध्यम से दोहराएं
foreach (OutlineElement node in nodes)
{
if (node.NumberList != null)
{
NumberList list = node.NumberList;
// फ़ॉन्ट नाम पुनर्प्राप्त करें
Console.WriteLine("Font Name: " + list.Font);
// फ़ॉन्ट लंबाई पुनर्प्राप्त करें
Console.WriteLine("Font Length: " + list.Font.Length);
// फ़ॉन्ट आकार पुनर्प्राप्त करें
Console.WriteLine("Font Size: " + list.FontSize);
// फ़ॉन्ट रंग पुनर्प्राप्त करें
Console.WriteLine("Font Color: " + list.FontColor);
// स्वरूप प्राप्त करें
Console.WriteLine("Font format: " + list.Format);
// बोल्ड चेक करें
Console.WriteLine("Is bold: " + list.IsBold);
// इटैलिक चेक करें
Console.WriteLine("Is italic: " + list.IsItalic);
Console.WriteLine();
}
}
यह सभी देखें
- class NumberList
- नाम स्थान Aspose.Note
- सभा Aspose.Note