ITag.Label
ITag.Label property
Obtiene el texto de la etiqueta.
public string Label { get; }
Ejemplos
Muestra cómo completar todos los elementos de la casilla de verificación relacionados con el ‘Proyecto C’.
// La ruta al directorio de documentos.
string dataDir = RunExamples.GetDataDir_Tags();
// Cargue el documento en 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));
Muestra cómo abrir todas las casillas de verificación relacionadas con el ‘Proyecto C’.
// La ruta al directorio de documentos.
string dataDir = RunExamples.GetDataDir_Tags();
// Cargue el documento en 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"));
Muestra cómo acceder a los detalles de una etiqueta.
// La ruta al directorio de documentos.
string dataDir = RunExamples.GetDataDir_Tags();
// Cargue el documento en Aspose.Note.
Document oneFile = new Document(dataDir + "TagFile.one");
// Obtener todos los nodos RichText
IList<RichText> nodes = oneFile.GetChildNodes<RichText>();
// Iterar a través de cada 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)
{
// Recuperar propiedades
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}");
}
}
}
Ver también
- interface ITag
- espacio de nombres Aspose.Note
- asamblea Aspose.Note