Class NoteTag

Class NoteTag

Nom dels espais: Aspose.Note Assemblea: Aspose.Note.dll (25.4.0)

Representació d’una nota.

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

Inheritance

object NoteTag

Implements

INoteTag , ITag , IEquatable

Membres heretats

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

Examples

Mostra com afegir una nova imatge amb 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 com afegir un nou paràgraf amb 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 com accedir als detalls d’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 com afegir una nova taula amb etiquetes.

// 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 com preparar un templat per a les reunions setmanals.

// 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

Obtenir o fixar el temps complet.

public DateTime? CompletedTime { get; }

Valor de la propietat

DateTime ?

CreationTime

Obtenir o establir el temps de creació.

public DateTime CreationTime { get; set; }

Valor de la propietat

DateTime

FontColor

Obté o posa el color de font.

public Color FontColor { get; set; }

Valor de la propietat

Color

Highlight

Obtén o posa el color destacat.

public Color Highlight { get; set; }

Valor de la propietat

Color

Icon

Obtenir o posar l’icona.

public TagIcon Icon { get; set; }

Valor de la propietat

TagIcon

Label

Obtén o col·loca el text de l’etiqueta.

public string Label { get; set; }

Valor de la propietat

string

Status

Obtenir o establir l’estatus.

public TagStatus Status { get; }

Valor de la propietat

TagStatus

Methods

CreateAwardRibbon(Tàrrega)

Crea una nova etiqueta de notes amb l’icona AwardRibbon i etiquetatge especificat.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBinoculars(Tàrrega)

Crea una nova etiqueta de notes amb la icona Binoculars i l’etiqueta especificada.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlankPaperWithLines(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlankPaperWithLines i l’etiqueta especificada.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCheckMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueCheckMark i l’etiqueta especificada.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueCircle i l’etiqueta especificada.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle1(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueCircle1 i l’etiqueta especificada.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle2(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueCircle2 i l’etiqueta especificada.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueCircle3(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueCircle3 i l’etiqueta especificada.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueDownArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueDownArrow i l’etiqueta especificada.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueEightPointStar(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueEightPointStar i l’etiqueta especificada.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueFollowUpFlag(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueFollowUpFlag i l’etiqueta especificada.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueLeftArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueLeftArrow i l’etiqueta especificada.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueRightArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueRightArrow i l’etiqueta especificada.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSolidTarget(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueSolidTarget i l’etiqueta especificada.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSquare(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueSquare i l’etiqueta especificada.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueStar(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueStar i l’etiqueta especificada.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueSun(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueSun i l’etiqueta especificada.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueTarget(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueTarget i l’etiqueta especificada.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueTriangle(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueTriangle i l’etiqueta especificada.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueUmbrella(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueUmbrella i l’etiqueta especificada.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateBlueUpArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueUpArrow i l’etiqueta especificada.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióBlueXNo(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueXNo i l’etiqueta especificada.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióBlueXWithDots(Tàrrega)

Crea una nova etiqueta de notes amb la icona BlueXWithDots i l’etiqueta especificada.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCalendarDateWithClock(Tàrrega)

Crea una nova etiqueta de notes amb la icona CalendarDateWithClock i l’etiqueta especificada.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCar(Tàrrega)

Crea una nova etiqueta de notes amb icones de cotxe i etiquetes especificades.

public static NoteTag CreateCar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateClosedEnvelope(Tàrrega)

Crea una nova etiqueta de notes amb la icona ClosedEnvelope i l’etiqueta especificada.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCloud(Tàrrega)

Crea una nova etiqueta de notes amb icones de núvol i etiquetes especificades.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCoinsWithWindowBackdrop(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de CoinsWithWindowBackdrop i etiquetatge especificat.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateCommentBubble(Tàrrega)

Crea una nova etiqueta de notes amb la icona CommentBubble i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateContactInformation(Tàrrega)

Crea una nova etiqueta de notes amb la icona ContactInformation i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateContactPersonOnCard(Tàrrega)

Crea una nova etiqueta de notes amb la icona ContactPersonOnCard i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateDollarSign(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de DollarSign i etiquetatge especificat.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióMessatge(Tàrrega)

Crea una nova etiqueta de notes amb l’icona eMailMessage i etiquetatge especificat.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateFrowningFace(Tàrrega)

Crea una nova etiqueta de notes amb la icona FrowningFace i l’etiqueta especificada.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGlobe(Tàrrega)

Crea una nova etiqueta de notes amb icones Globe i etiquetes especificades.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCheckMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenCheckMark i l’etiqueta especificada.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenCircle i l’etiqueta especificada.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle1(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenCircle1 i l’etiqueta especificada.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle2(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenCircle2 i l’etiqueta especificada.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenCircle3(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenCircle3 i l’etiqueta especificada.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenDownArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenDownArrow i l’etiqueta especificada.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenEightPointStar(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenEightPointStar i l’etiqueta especificada.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenLeftArrow(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenLeftArrow i etiquetatge especificat.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenRightArrow(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenRightArrow i etiquetatge especificat.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSolidArrow(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenSolidArrow i etiquetatge especificat.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSquare(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenSquare i etiquetatge especificat.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenStar(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenStar i etiquetatge especificat.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenSun(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenSun i l’etiqueta especificada.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenTarget(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenTarget i l’etiqueta especificada.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenTriangle(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenTriangle i etiquetatge especificat.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenUmbrella(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenUmbrella i etiquetatge especificat.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateGreenUpArrow(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenUpArrow i etiquetatge especificat.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióGreenXNo(Tàrrega)

Crea una nova etiqueta de notes amb la icona GreenXNo i l’etiqueta especificada.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióGreenXWithDots(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de GreenXWithDots i etiquetatge especificat.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHeart(Tàrrega)

Crea una nova etiqueta de notes amb icones del cor i etiquetes especificades.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHighPriority(Tàrrega)

Crea una nova etiqueta de notes amb icones HighPriority i etiquetes especificades.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHome(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de la llar i l’etiqueta especificada.

public static NoteTag CreateHome(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateHyperlinkGlobe(Tàrrega)

Crea una nova etiqueta de notes amb la icona HyperlinkGlobe i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateInstantMessagingContactPerson(Tàrrega)

Crea una nova etiqueta de notes amb la icona InstantMessagingContactPerson i l’etiqueta especificada.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLaptop(Tàrrega)

Crea una nova etiqueta de notes amb icones de Laptop i etiquetes especificades.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLightBulb(Tàrrega)

Crea una nova etiqueta de notes amb icones LightBulb i etiquetes especificades.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateLightningBolt(Tàrrega)

Crea una nova etiqueta de notes amb la icona LightningBolt i l’etiqueta especificada.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMeeting(Tàrrega)

Crea una nova etiqueta de notes amb icones de trobada i etiquetes especificades.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMobilePhone(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de MobilePhone i etiquetatge especificat.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMovieClip(Tàrrega)

Crea una nova etiqueta de notes amb la icona MovieClip i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateMusicalNote(Tàrrega)

Crea una nova etiqueta de notes amb la icona MusicalNote i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateNoIcon(Tàrrega)

Crea una nova etiqueta sense icones i amb etiquetes especificades.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateNotebookWithClock(Tàrrega)

Crea una nova etiqueta de notes amb la icona NotebookWithClock i l’etiqueta especificada.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOpenBook(Tàrrega)

Crea una nova etiqueta de notes amb la icona OpenBook i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOpenEnvelope(Tàrrega)

Crea una nova etiqueta de notes amb l’icona d’OpenEnvelope i el etiquetatge especificat.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateOrangeSquare(Tàrrega)

Crea una nova etiqueta de notes amb l’icona OrangeSquare i etiquetatge especificat.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePadlock(Tàrrega)

Crea una nova etiqueta de notes amb la icona Padlock i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePaperClip(Tàrrega)

Crea una nova etiqueta de notes amb la icona PaperClip i l’etiqueta especificada.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePen(Tàrrega)

Crea una nova etiqueta de notes amb icones de pen i etiquetes especificades.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePersonWithExclamationMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona PersonWithExclamationMark i l’etiqueta especificada.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePinkSquare(Tàrrega)

Crea una nova etiqueta de notes amb la icona PinkSquare i l’etiqueta especificada.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePlane(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de Plane i etiquetatge especificat.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePresentationSlide(Tàrrega)

Crea una nova etiqueta de notes amb l’icona PresentationSlide i etiquetatge especificat.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreatePushpin(Tàrrega)

Crea una nova etiqueta de notes amb la icona Pushpin i l’etiqueta especificada.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuestionBalloon(Tàrrega)

Crea una nova etiqueta de notes amb la icona QuestionBalloon i l’etiqueta especificada.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuestionMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona QuestionMark i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateQuotationMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona QuotationMark i l’etiqueta especificada.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateRedSquare(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de RedSquare i etiquetatge especificat.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateReminderBell(Tàrrega)

Crea una nova etiqueta de notes amb la icona ReminderBell i l’etiqueta especificada.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateResearch(Tàrrega)

Crea una nova etiqueta de notes amb icones de recerca i etiquetes especificades.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateRoseOnStem(Tàrrega)

Crea una nova etiqueta de notes amb la icona RoseOnStem i l’etiqueta especificada.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateScheduledTask(Tàrrega)

Crea una nova etiqueta de notes amb la icona ScheduledTask i l’etiqueta especificada.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateSmilingFace(Tàrrega)

Crea una nova etiqueta de notes amb la icona SmilingFace i l’etiqueta especificada.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateSunflower(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de Sunflower i etiquetatge especificat.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTelephoneWithClock(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de TelephoneWithClock i etiquetatge especificat.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTimeSensitive(Tàrrega)

Crea una nova etiqueta de notes amb la icona TimeSensitive i l’etiqueta especificada.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateTwoPeople(Tàrrega)

Crea una nova etiqueta de notes amb l’icona de TwoPeople i etiquetatge especificat.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCheckMark(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowCheckMark i l’etiqueta especificada.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowCircle i l’etiqueta especificada.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle1(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowCircle1 i l’etiqueta especificada.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle2(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowCircle2 i l’etiqueta especificada.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowCircle3(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowCircle3 i l’etiqueta especificada.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowDownArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowDownArrow i l’etiqueta especificada.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowEightPointStar(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowEightPointStar i l’etiqueta especificada.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowKey(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowKey i l’etiqueta especificada.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowLeftArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowLeftArrow i l’etiqueta especificada.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowRightArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowRightArrow i l’etiqueta especificada.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSolidTarget(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowSolidTarget i l’etiqueta especificada.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSquare(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowSquare i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowStar(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowStar i l’etiqueta especificada.

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

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowSun(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowSun i l’etiqueta especificada.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowTarget(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowTarget i l’etiqueta especificada.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowTriangle(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowTriangle i l’etiqueta especificada.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowUmbrella(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowUmbrella i l’etiqueta especificada.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreateYellowUpArrow(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowUpArrow i l’etiqueta especificada.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióYellowX(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowX i l’etiqueta especificada.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

CreacióXWithDots(Tàrrega)

Crea una nova etiqueta de notes amb la icona YellowXWithDots i l’etiqueta especificada.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

L’etiqueta de la etiqueta.

Returns

NoteTag

El Aspose.Note.NoteTag.

Equals(Objecte)

Determina si l’objecte especificat és igual a l’objecte actual.

public override bool Equals(object obj)

Parameters

obj object

El seu objecte.

Returns

bool

El sistema.Boolean

Equals(NoteTag)

Determina si l’objecte especificat és igual a l’objecte actual.

public bool Equals(NoteTag other)

Parameters

other NoteTag

El seu objecte.

Returns

bool

El sistema.Boolean

GetHashCode()

Serveix com una funció hash per al tipus.

public override int GetHashCode()

Returns

int

El sistema.Int32.

 Català