Interface ITag
Contenuti
[
Nascondere
]ITag interface
L’interfaccia per tag di tutti i tipi.
public interface ITag
Proprietà
Nome | Descrizione |
---|---|
CompletedTime { get; } | Ottiene o imposta il tempo di completamento. |
CreationTime { get; set; } | Ottiene o imposta l’ora di creazione. |
Icon { get; } | Ottiene o imposta l’icona. |
Label { get; } | Ottiene il testo dell’etichetta. |
Status { get; } | Ottiene o imposta lo stato. |
Esempi
Mostra come generare un pdf contenente tutte le pagine relative al ‘Progetto A’.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
var oneFile = new Document(Path.Combine(dataDir, "ProjectNotes.one"));
var report = new Document();
foreach (var page in oneFile)
{
if (page.GetChildNodes<ITaggable>().Any(e => e.Tags.Any(x => x.Label.Contains("Project A"))))
{
report.AppendChildLast(page.Clone());
}
}
report.Save(Path.Combine(dataDir, "ProjectA_Report.pdf"));
Mostra come completare tutti gli elementi della casella di controllo relativi al “Progetto C”.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
var oneFile = new Document(Path.Combine(dataDir, "ProjectNotes.one"));
foreach (var node in oneFile.GetChildNodes<ITaggable>())
{
foreach (var checkBox in node.Tags.OfType<CheckBox>())
{
if (checkBox.Label.Contains("Project C") && !checkBox.Checked)
{
checkBox.SetCompleted();
}
}
}
oneFile.Save(Path.Combine(dataDir, ClosedProjectCNotesFileName));
Mostra come aprire tutti gli elementi della casella di controllo relativi al “Progetto C”.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
var oneFile = new Document(Path.Combine(dataDir, ClosedProjectCNotesFileName));
foreach (var node in oneFile.GetChildNodes<ITaggable>())
{
foreach (var checkBox in node.Tags.OfType<CheckBox>())
{
if (checkBox.Label.Contains("Project C") && checkBox.Checked)
{
checkBox.SetOpen();
}
}
}
oneFile.Save(Path.Combine(dataDir, "ProjectNoteWithOpenProjectC.one"));
Mostra come generare un pdf contenente pagine con elementi contrassegnati da caselle di controllo incomplete e creati durante la scorsa settimana.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
var oneFile = new Document(Path.Combine(dataDir, "TagFile.one"));
var report = new Document();
foreach (var page in oneFile)
{
if (page.GetChildNodes<ITaggable>().Any(e => e.Tags.OfType<CheckBox>().Any(x => !x.Checked && DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)) <= x.CreationTime)))
{
report.AppendChildLast(page.Clone());
}
}
report.Save(Path.Combine(dataDir, "IncompleteLastWeekReport.pdf"));
Mostra come generare un pdf contenente pagine con attività incomplete di Outlook da completare questa settimana.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
var oneFile = new Document(Path.Combine(dataDir, "TagFile.one"));
var report = new Document();
var endOfWeek = DateTime.Today.AddDays(5 - (int)DateTime.Today.DayOfWeek);
foreach (var page in oneFile)
{
if (page.GetChildNodes<ITaggable>().Any(e => e.Tags.OfType<NoteTask>().Any(x => !x.Checked && DateTime.UtcNow.Subtract(TimeSpan.FromDays(7)) <= x.CreationTime && x.DueDate <= endOfWeek)))
{
report.AppendChildLast(page.Clone());
}
}
report.Save(Path.Combine(dataDir, "IncompleteTasksForThisWeekReport.pdf"));
Mostra come accedere ai dettagli delle attività di Outlook.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tasks();
// Carica il documento in Aspose.Note.
Document oneFile = new Document(dataDir + "Aspose.one");
// Ottieni tutti i nodi RichText
IList<RichText> nodes = oneFile.GetChildNodes<RichText>();
// Itera attraverso ogni nodo
foreach (RichText richText in nodes)
{
var tasks = richText.Tags.OfType<NoteTask>();
if (tasks.Any())
{
Console.WriteLine($"Task: {richText.Text}");
foreach (var noteTask in tasks)
{
// Recupera le proprietà
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}");
}
}
}
Mostra come accedere ai dettagli di un tag.
// Il percorso della directory dei documenti.
string dataDir = RunExamples.GetDataDir_Tags();
// Carica il documento in Aspose.Note.
Document oneFile = new Document(dataDir + "TagFile.one");
// Ottieni tutti i nodi RichText
IList<RichText> nodes = oneFile.GetChildNodes<RichText>();
// Itera attraverso ogni nodo
foreach (RichText richText in nodes)
{
var tags = richText.Tags.OfType<NoteTag>();
if (tags.Any())
{
Console.WriteLine($"Text: {richText.Text}");
foreach (var noteTag in tags)
{
// Recupera le proprietà
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}");
}
}
}
Guarda anche
- spazio dei nomi Aspose.Note
- assemblea Aspose.Note