ITag.Icon
ITag.Icon property
Получает или задает значок.
public TagIcon Icon { get; }
Стоимость имущества
TagIcon
.
Примеры
Показывает, как получить доступ к сведениям о задачах Outlook.
// Путь к каталогу документов.
string dataDir = RunExamples.GetDataDir_Tasks();
// Загрузите документ в Aspose.Note.
Document oneFile = new Document(dataDir + "Aspose.one");
// Получить все узлы RichText
IList<RichText> nodes = oneFile.GetChildNodes<RichText>();
// Итерация по каждому узлу
foreach (RichText richText in nodes)
{
var tasks = richText.Tags.OfType<NoteTask>();
if (tasks.Any())
{
Console.WriteLine($"Task: {richText.Text}");
foreach (var noteTask in tasks)
{
// Получить свойства
Console.WriteLine($" Completed Time: {noteTask.CompletedTime}");
Console.WriteLine($" Create Time: {noteTask.CreationTime}");
Console.WriteLine($" Due Date: {noteTask.DueDate}");
Console.WriteLine($" Status: {noteTask.Status}");
Console.WriteLine($" Icon: {noteTask.Icon}");
}
}
}
Показывает, как получить доступ к сведениям о теге.
// Путь к каталогу документов.
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}");
}
}
}
Смотрите также
- enum TagIcon
- interface ITag
- пространство имен Aspose.Note
- сборка Aspose.Note