Class NoteTag

Class NoteTag

Nombre del espacio: Aspose.Note Asamblea: Aspose.Note.dll (25.4.0)

Representa una nota.

public sealed class NoteTag : INoteTag, ITag, IEquatable<notetag>

Inheritance

object NoteTag

Implements

INoteTag ,y, ITag ,y, IEquatable

Miembros heredados

object.GetType() ,y, object.ToString() ,y, object.Equals(object?) ,y, object.Equals(object?, object?) ,y, object.ReferenceEquals(object?, object?) ,y, object.GetHashCode()

Examples

Mostra cómo añadir una nueva imagen con la etiqueta.

// The path to the documents directory.
                                               string dataDir = RunExamples.GetDataDir_Tags();

                                               // Create an object of the Document class
                                               Document doc = new Document();

                                               // Initialize Page class object
                                               Aspose.Note.Page page = new Aspose.Note.Page(doc);

                                               // Initialize Outline class object
                                               Outline outline = new Outline(doc);

                                               // Initialize OutlineElement class object
                                               OutlineElement outlineElem = new OutlineElement(doc);

                                               // Load an image
                                               Aspose.Note.Image image = new Aspose.Note.Image(doc, dataDir + "icon.jpg");

                                               // Insert image in the document node
                                               outlineElem.AppendChildLast(image);
                                               image.Tags.Add(NoteTag.CreateYellowStar());

                                               // Add outline element node
                                               outline.AppendChildLast(outlineElem);

                                               // Add outline node
                                               page.AppendChildLast(outline);

                                               // Add page node
                                               doc.AppendChildLast(page);

                                               // Save OneNote document
                                               dataDir = dataDir + "AddImageNodeWithTag_out.one";
                                               doc.Save(dataDir);

Mostra cómo añadir un nuevo párrafo con la etiqueta.

// The path to the documents directory.
                                                   string dataDir = RunExamples.GetDataDir_Tags();

                                                   // Create an object of the Document class
                                                   Document doc = new Document();

                                                   // Initialize Page class object
                                                   Aspose.Note.Page page = new Aspose.Note.Page(doc);

                                                   // Initialize Outline class object
                                                   Outline outline = new Outline(doc);

                                                   // Initialize OutlineElement class object
                                                   OutlineElement outlineElem = new OutlineElement(doc);
                                                   ParagraphStyle textStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
                                                   RichText text = new RichText(doc) { Text = "OneNote text.", ParagraphStyle = textStyle };
                                                   text.Tags.Add(NoteTag.CreateYellowStar());

                                                   // Add text node
                                                   outlineElem.AppendChildLast(text);

                                                   // Add outline element node
                                                   outline.AppendChildLast(outlineElem);

                                                   // Add outline node
                                                   page.AppendChildLast(outline);

                                                   // Add page node
                                                   doc.AppendChildLast(page);

                                                   // Save OneNote document
                                                   dataDir = dataDir + "AddTextNodeWithTag_out.one";
                                                   doc.Save(dataDir);

Mostra cómo acceder a los detalles de una etiqueta.

// The path to the documents directory.
                                                string dataDir = RunExamples.GetDataDir_Tags();

                                                // Load the document into Aspose.Note.
                                                Document oneFile = new Document(dataDir + "TagFile.one");

                                                // Get all RichText nodes
                                                IList<richtext> nodes = oneFile.GetChildNodes<richtext>();

                                                // Iterate through each node
                                                foreach (RichText richText in nodes)
                                                {
                                                    var tags = richText.Tags.OfType<notetag>();
                                                    if (tags.Any())
                                                    {
                                                        Console.WriteLine($"Text: {richText.Text}");
                                                        foreach (var noteTag in tags)
                                                        {
                                                            // Retrieve properties
                                                            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}");
                                                        }
                                                    }
                                                }</notetag></richtext></richtext>

Mostra cómo añadir una nueva tabla con una etiqueta.

// The path to the documents directory.
                                               string dataDir = RunExamples.GetDataDir_Tags();

                                               // Create an object of the Document class
                                               Document doc = new Document();

                                               // Initialize Page class object
                                               Aspose.Note.Page page = new Aspose.Note.Page(doc);

                                               // Initialize TableRow class object
                                               TableRow row = new TableRow(doc);

                                               // Initialize TableCell class object
                                               TableCell cell = new TableCell(doc);

                                               // Insert cell content
                                               cell.AppendChildLast(InsertTable.GetOutlineElementWithText(doc, "Single cell."));

                                               // Add cell to row node
                                               row.AppendChildLast(cell);

                                               // Initialize table node
                                               Table table = new Table(doc)
                                                             {
                                                                 IsBordersVisible = true,
                                                                 Columns = { new TableColumn { Width = 70 } }
                                                             };

                                               // Insert row node in table
                                               table.AppendChildLast(row);

                                               // Add tag to this table node
                                               table.Tags.Add(NoteTag.CreateQuestionMark());

                                               Outline outline = new Outline(doc);
                                               OutlineElement outlineElem = new OutlineElement(doc);

                                               // Add table node
                                               outlineElem.AppendChildLast(table);

                                               // Add outline elements
                                               outline.AppendChildLast(outlineElem);
                                               page.AppendChildLast(outline);
                                               doc.AppendChildLast(page);

                                               // Save OneNote document
                                               dataDir = dataDir + "AddTableNodeWithTag_out.one";
                                               doc.Save(dataDir);

Mostra cómo preparar un templado para una reunión semanal.

// The path to the documents directory.
                                                              string dataDir = RunExamples.GetDataDir_Tags();

                                                              // Create an object of the Document class
                                                              var headerStyle = new ParagraphStyle() { FontName = "Calibri", FontSize = 16 };
                                                              var bodyStyle = new ParagraphStyle() { FontName = "Calibri", FontSize = 12 };

                                                              var d = new Document();
                                                              bool restartFlag = true;
                                                              var outline = d.AppendChildLast(new Page()
                                                                                                  {
                                                                                                      Title = new Title() { TitleText = new RichText() { Text = $"Weekly meeting {DateTime.Today:d}", ParagraphStyle = ParagraphStyle.Default } }
                                                                                                  })
                                                                             .AppendChildLast(new Outline() { VerticalOffset = 30, HorizontalOffset = 30 });

                                                              outline.AppendChildLast(new OutlineElement())
                                                                     .AppendChildLast(new RichText() { Text = "Important", ParagraphStyle = headerStyle });
                                                              foreach (var e in new[] { "First", "Second", "Third" })
                                                              {
                                                                  outline.AppendChildLast(new OutlineElement() { NumberList = CreateListNumberingStyle(bodyStyle, restartFlag) })
                                                                         .AppendChildLast(new RichText() { Text = e, ParagraphStyle = bodyStyle });
                                                                  restartFlag = false;
                                                              }

                                                              outline.AppendChildLast(new OutlineElement())
                                                                     .AppendChildLast(new RichText() { Text = "TO DO", ParagraphStyle = headerStyle, SpaceBefore = 15 });
                                                              restartFlag = true;
                                                              foreach (var e in new[] { "First", "Second", "Third" })
                                                              {
                                                                  outline.AppendChildLast(new OutlineElement() { NumberList = CreateListNumberingStyle(bodyStyle, restartFlag) })
                                                                         .AppendChildLast(new RichText() { Text = e, ParagraphStyle = bodyStyle, Tags = { NoteCheckBox.CreateBlueCheckBox() } });
                                                                  restartFlag = false;
                                                              }

                                                              d.Save(Path.Combine(dataDir, "meetingNotes.one"));

Properties

CompletedTime

Obtenga o establece el tiempo terminado.

public DateTime? CompletedTime { get; }

Valor de la propiedad

DateTime ?

CreationTime

Obtenga o establece el tiempo de creación.

public DateTime CreationTime { get; set; }

Valor de la propiedad

DateTime

FontColor

Obtenga o establece el color de la letra.

public Color FontColor { get; set; }

Valor de la propiedad

Color

Highlight

Obtenga o establece el color destacado.

public Color Highlight { get; set; }

Valor de la propiedad

Color

Icon

Obtenga o coloca el icono.

public TagIcon Icon { get; set; }

Valor de la propiedad

TagIcon

Label

Obtenga o coloca el texto de la etiqueta.

public string Label { get; set; }

Valor de la propiedad

string

Status

Obtenga o establece el estatus.

public TagStatus Status { get; }

Valor de la propiedad

TagStatus

Methods

CreateAwardRibbon(El string)

Crea una nueva etiqueta con la icona AwardRibbon y el etiquetado especificado.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBinoculars(El string)

Crea una nueva etiqueta de nota con el icono Binoculars y el etiquetado especificado.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlankPaperWithLines(El string)

Crea una nueva etiqueta con la icona BlankPaperWithLines y el etiquetado especificado.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCheckMark(El string)

Crea una nueva etiqueta con la icona BlueCheckMark y el etiquetado especificado.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle(El string)

Crea una nueva etiqueta con la icona BlueCircle y el etiquetado especificado.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle1(El string)

Crea una nueva etiqueta con la icona BlueCircle1 y el etiquetado especificado.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle2(El string)

Crea una nueva etiqueta con la icona BlueCircle2 y el etiquetado especificado.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle3(El string)

Crea una nueva etiqueta con la icona BlueCircle3 y el etiquetado especificado.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueDownArrow(El string)

Crea una nueva etiqueta de nota con la icona BlueDownArrow y el etiquetado especificado.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueEightPointStar(El string)

Crea una nueva etiqueta de nota con la icona BlueEightPointStar y el etiquetado especificado.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueFollowUpFlag(El string)

Crea una nueva etiqueta con la icona BlueFollowUpFlag y el etiquetado especificado.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueLeftArrow(El string)

Crea una nueva etiqueta con la icona BlueLeftArrow y el etiquetado especificado.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueRightArrow(El string)

Crea una nueva etiqueta con la icona BlueRightArrow y el etiquetado especificado.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSolidTarget(El string)

Crea una nueva etiqueta con la icona BlueSolidTarget y el etiquetado especificado.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSquare(El string)

Crea una nueva etiqueta con la icona BlueSquare y el etiquetado especificado.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueStar(El string)

Crea una nueva etiqueta con la icona BlueStar y el etiquetado especificado.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSun(El string)

Crea una nueva etiqueta con la icona BlueSun y el etiquetado especificado.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueTarget(El string)

Crea una nueva etiqueta con la icona BlueTarget y el etiquetado especificado.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueTriangle(El string)

Crea una nueva etiqueta con la icona BlueTriangle y el etiquetado especificado.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueUmbrella(El string)

Crea una nueva etiqueta con la icona BlueUmbrella y el etiquetado especificado.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueUpArrow(El string)

Crea una nueva etiqueta de nota con la icona BlueUpArrow y el etiquetado especificado.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónBlueXNo(El string)

Crea una nueva etiqueta con la icona BlueXNo y el etiquetado especificado.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónBlueXWithDots(El string)

Crea una nueva etiqueta de nota con la icona BlueXWithDots y el etiquetado especificado.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCalendarDateWithClock(El string)

Crea una nueva etiqueta con la icona CalendarDateWithClock y el etiquetado especificado.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCar(El string)

Crea una nueva etiqueta con el icono del coche y el etiquetado especificado.

public static NoteTag CreateCar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateClosedEnvelope(El string)

Crea una nueva etiqueta con la icona ClosedEnvelope y el etiquetado especificado.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCloud(El string)

Crea una nueva etiqueta de notas con iconos en la nube y etiquetas especificadas.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCoinsWithWindowBackdrop(El string)

Crea una nueva etiqueta de nota con el icono de CoinsWithWindowBackdrop y el etiquetado especificado.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCommentBubble(El string)

Crea una nueva etiqueta de nota con la icona CommentBubble y el etiquetado especificado.

public static NoteTag CreateCommentBubble(string label = "Remember for blog")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateContactInformation(El string)

Crea una nueva etiqueta con el icono de ContactInformation y el etiquetado especificado.

public static NoteTag CreateContactInformation(string label = "Phone number")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateContactPersonOnCard(El string)

Crea una nueva etiqueta con la icona ContactPersonOnCard y el etiquetado especificado.

public static NoteTag CreateContactPersonOnCard(string label = "Contact")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateDollarSign(El string)

Crea una nueva etiqueta de nota con la icona DollarSign y el etiquetado especificado.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

Creación de mensajes(El string)

Crea una nueva etiqueta de nota con la icona de EMailMessage y el etiquetado especificado.

public static NoteTag CreateEMailMessage(string label = "Send in email")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateFrowningFace(El string)

Crea una nueva etiqueta con la icona FrowningFace y el etiquetado especificado.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGlobe(El string)

Crea una nueva etiqueta con iconos Globe y etiquetas especificadas.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCheckMark(El string)

Crea una nueva etiqueta con la icona GreenCheckMark y el etiquetado especificado.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle(El string)

Crea una nueva etiqueta con el icono GreenCircle y el etiquetado especificado.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle1(El string)

Crea una nueva etiqueta de nota con la icona GreenCircle1 y el etiquetado especificado.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle2(El string)

Crea una nueva etiqueta de nota con la icona GreenCircle2 y el etiquetado especificado.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle3(El string)

Crea una nueva etiqueta de nota con la icona GreenCircle3 y el etiquetado especificado.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenDownArrow(El string)

Crea una nueva etiqueta con la icona GreenDownArrow y el etiquetado especificado.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenEightPointStar(El string)

Crea una nueva etiqueta de nota con la icona GreenEightPointStar y el etiquetado especificado.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenLeftArrow(El string)

Crea una nueva etiqueta con la icona GreenLeftArrow y el etiquetado especificado.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenRightArrow(El string)

Crea una nueva etiqueta con la icona GreenRightArrow y el etiquetado especificado.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSolidArrow(El string)

Crea una nueva etiqueta de nota con la icona de GreenSolidArrow y el etiquetado especificado.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSquare(El string)

Crea una nueva etiqueta con el icono GreenSquare y el etiquetado especificado.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenStar(El string)

Crea una nueva etiqueta de nota con la icona de GreenStar y el etiquetado especificado.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSun(El string)

Crea una nueva etiqueta con el icono GreenSun y el etiquetado especificado.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenTarget(El string)

Crea una nueva etiqueta con la icona GreenTarget y el etiquetado especificado.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenTriangle(El string)

Crea una nueva etiqueta con el icono GreenTriangle y el etiquetado especificado.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenUmbrella(El string)

Crea una nueva etiqueta con la icona de GreenUmbrella y el etiquetado especificado.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenUpArrow(El string)

Crea una nueva etiqueta de nota con la icona de GreenUpArrow y el etiquetado especificado.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónGreenXNo(El string)

Crea una nueva etiqueta con el icono GreenXNo y el etiquetado especificado.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónGreenXWithDots(El string)

Crea una nueva etiqueta con el icono GreenXWithDots y el etiquetado especificado.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHeart(El string)

Crea una nueva etiqueta con iconos de corazón y etiquetas especificadas.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHighPriority(El string)

Crea una nueva etiqueta de nota con la icona HighPriority y el etiquetado especificado.

public static NoteTag CreateHighPriority(string label = "Critical")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHome(El string)

Crea una nueva etiqueta de notas con iconos de la casa y etiquetas especificadas.

public static NoteTag CreateHome(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHyperlinkGlobe(El string)

Crea una nueva etiqueta con la icona HyperlinkGlobe y el etiquetado especificado.

public static NoteTag CreateHyperlinkGlobe(string label = "Web site to visit")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateInstantMessagingContactPerson(El string)

Crea una nueva etiqueta de notas con la icona InstantMessagingContactPerson y el etiquetado especificado.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLaptop(El string)

Crea una nueva etiqueta de notas con iconos de laptop y etiquetas especificadas.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLightBulb(El string)

Crea una nueva etiqueta con la icona LightBulb y el etiquetado especificado.

public static NoteTag CreateLightBulb(string label = "Idea")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLightningBolt(El string)

Crea una nueva etiqueta con la icona LightningBolt y el etiquetado especificado.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMeeting(El string)

Crea una nueva etiqueta de notas con iconos de encuentro y etiquetas especificadas.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMobilePhone(El string)

Crea una nueva etiqueta de nota con la icona de MobilePhone y el etiquetado especificado.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMovieClip(El string)

Crea una nueva etiqueta de nota con la icona de MovieClip y el etiquetado especificado.

public static NoteTag CreateMovieClip(string label = "Movie to see")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMusicalNote(El string)

Crea una nueva etiqueta con la icona MusicalNote y el etiquetado especificado.

public static NoteTag CreateMusicalNote(string label = "Music to listen to")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateNoIcon(El string)

Crea una nueva etiqueta sin iconos y con etiquetas especificadas.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateNotebookWithClock(El string)

Crea una nueva etiqueta de nota con la icona NotebookWithClock y el etiquetado especificado.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOpenBook(El string)

Crea una nueva etiqueta de nota con la icona de OpenBook y el etiquetado especificado.

public static NoteTag CreateOpenBook(string label = "Book to read")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOpenEnvelope(El string)

Crea una nueva etiqueta de nota con la icona de OpenEnvelope y el etiquetado especificado.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOrangeSquare(El string)

Crea una nueva etiqueta con la icona OrangeSquare y el etiquetado especificado.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePadlock(El string)

Crea una nueva etiqueta de nota con la icona de Padlock y el etiquetado especificado.

public static NoteTag CreatePadlock(string label = "Password")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePaperClip(El string)

Crea una nueva etiqueta de nota con la icona PaperClip y el etiquetado especificado.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePen(El string)

Crea una nueva etiqueta de notas con iconos de penas y etiquetas especificadas.

public static NoteTag CreatePen(string label = "Highlight")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePersonWithExclamationMark(El string)

Crea una nueva etiqueta con la icona PersonWithExclamationMark y el etiquetado especificado.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePinkSquare(El string)

Crea una nueva etiqueta de nota con la icona PinkSquare y el etiquetado especificado.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePlane(El string)

Crea una nueva etiqueta de notas con la icona del avión y el etiquetado especificado.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePresentationSlide(El string)

Crea una nueva etiqueta con la icona PresentationSlide y el etiquetado especificado.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePushpin(El string)

Crea una nueva etiqueta con la icona Pushpin y el etiquetado especificado.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuestionBalloon(El string)

Crea una nueva etiqueta con la icona QuestionBalloon y el etiquetado especificado.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuestionMark(El string)

Crea una nueva etiqueta con la icona QuestionMark y el etiquetado especificado.

public static NoteTag CreateQuestionMark(string label = "Question")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuotationMark(El string)

Crea una nueva etiqueta con la icona QuotationMark y el etiquetado especificado.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateRedSquare(El string)

Crea una nueva etiqueta de nota con la icona RedSquare y el etiquetado especificado.

public static NoteTag CreateRedSquare(string label = "Project A")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateReminderBell(El string)

Crea una nueva etiqueta de nota con la icona de ReminderBell y el etiquetado especificado.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateResearch(El string)

Crea una nueva etiqueta con Icon de Investigación y etiquetado especificado.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateRoseOnStem(El string)

Crea una nueva etiqueta con la icona RoseOnStem y el etiquetado especificado.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateScheduledTask(El string)

Crea una nueva etiqueta con la icona ScheduledTask y el etiquetado especificado.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateSmilingFace(El string)

Crea una nueva etiqueta con la icona SmilingFace y el etiquetado especificado.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateSunflower(El string)

Crea una nueva etiqueta de notas con la icona de Sunflower y el etiquetado especificado.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTelephoneWithClock(El string)

Crea una nueva etiqueta con la icona TelephoneWithClock y el etiquetado especificado.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTimeSensitive(El string)

Crea una nueva etiqueta de nota con la icona TimeSensitive y el etiquetado especificado.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTwoPeople(El string)

Crea una nueva etiqueta de notas con la icona de TwoPeople y el etiquetado especificado.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCheckMark(El string)

Crea una nueva etiqueta con la icona YellowCheckMark y el etiquetado especificado.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle(El string)

Crea una nueva etiqueta con la icona YellowCircle y el etiquetado especificado.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle1(El string)

Crea una nueva etiqueta con la icona YellowCircle1 y el etiquetado especificado.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle2(El string)

Crea una nueva etiqueta con la icona YellowCircle2 y el etiquetado especificado.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle3(El string)

Crea una nueva etiqueta con la icona YellowCircle3 y el etiquetado especificado.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowDownArrow(El string)

Crea una nueva etiqueta con la icona YellowDownArrow y el etiquetado especificado.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowEightPointStar(El string)

Crea una nueva etiqueta de nota con la icona YellowEightPointStar y el etiquetado especificado.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowKey(El string)

Crea una nueva etiqueta con la icona YellowKey y el etiquetado especificado.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowLeftArrow(El string)

Crea una nueva etiqueta con la icona YellowLeftArrow y el etiquetado especificado.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowRightArrow(El string)

Crea una nueva etiqueta con la icona YellowRightArrow y el etiquetado especificado.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSolidTarget(El string)

Crea una nueva etiqueta con la icona YellowSolidTarget y el etiquetado especificado.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSquare(El string)

Crea una nueva etiqueta con la icona YellowSquare y el etiquetado especificado.

public static NoteTag CreateYellowSquare(string label = "Project B")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowStar(El string)

Crea una nueva etiqueta de nota con la icona YellowStar y el etiquetado especificado.

public static NoteTag CreateYellowStar(string label = "Important")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSun(El string)

Crea una nueva etiqueta de nota con la icona YellowSun y el etiquetado especificado.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowTarget(El string)

Crea una nueva etiqueta con la icona YellowTarget y el etiquetado especificado.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowTriangle(El string)

Crea una nueva etiqueta de nota con la icona YellowTriangle y el etiquetado especificado.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowUmbrella(El string)

Crea una nueva etiqueta con la icona YellowUmbrella y el etiquetado especificado.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowUpArrow(El string)

Crea una nueva etiqueta con la icona YellowUpArrow y el etiquetado especificado.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónYellowX(El string)

Crea una nueva etiqueta de nota con la icona YellowX y el etiquetado especificado.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreaciónYellowXWithDots(El string)

Crea una nueva etiqueta con la icona YellowXWithDots y el etiquetado especificado.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

El etiquetado del tag.

Returns

NoteTag

El Aspose.Note.NoteTag.

Equals(Objeto)

Determina si el objeto especificado es igual al objeto actual.

public override bool Equals(object obj)

Parameters

obj object

El objeto .

Returns

bool

El sistema.Boolean

Equals(NoteTag)

Determina si el objeto especificado es igual al objeto actual.

public bool Equals(NoteTag other)

Parameters

other NoteTag

El objeto .

Returns

bool

El sistema.Boolean

GetHashCode()

Serve como una función de hash para el tipo.

public override int GetHashCode()

Returns

int

El sistema.Int32.

 Español