INoteTag.Highlight
INoteTag.Highlight property
Получает или задает цвет выделения.
public Color Highlight { get; set; }
Примеры
Показывает, как получить доступ к сведениям о теге.
// Путь к каталогу документов.
string dataDir = RunExamples.GetDataDir_Tags();
// Загрузите документ в Aspose.Note.
Document oneFile = new Document(dataDir + "TagFile.one");
// Получить все узлы RichText
IList<RichText> nodes = oneFile.GetChildNodes<RichText>();
// Итерация по каждому узлу
foreach (RichText richText in nodes)
{
var tags = richText.Tags.OfType<NoteTag>();
if (tags.Any())
{
Console.WriteLine($"Text: {richText.Text}");
foreach (var noteTag in tags)
{
// Получить свойства
Console.WriteLine($" Completed Time: {noteTag.CompletedTime}");
Console.WriteLine($" Create Time: {noteTag.CreationTime}");
Console.WriteLine($" Font Color: {noteTag.FontColor}");
Console.WriteLine($" Status: {noteTag.Status}");
Console.WriteLine($" Label: {noteTag.Label}");
Console.WriteLine($" Icon: {noteTag.Icon}");
Console.WriteLine($" High Light: {noteTag.Highlight}");
}
}
}
Смотрите также
- interface INoteTag
- пространство имен Aspose.Note
- сборка Aspose.Note