Class NoteTag

Class NoteTag

Nome do espaço: Aspose.Note Assembleia: Aspose.Note.dll (25.4.0)

Representa uma nota.

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

Inheritance

object NoteTag

Implements

INoteTag , ITag , IEquatable

Membros herdados

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

Examples

Mostra como adicionar uma nova imagem com um tag.

// 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 como adicionar um novo parágrafo com uma tag.

// 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 como acessar os detalhes de uma 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 como adicionar uma nova tabela com um tag.

// 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 como preparar um template para reuniões semanais.

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

Obter ou definir o tempo concluído.

public DateTime? CompletedTime { get; }

Valor da propriedade

DateTime ?

CreationTime

Obter ou definir o tempo da criação.

public DateTime CreationTime { get; set; }

Valor da propriedade

DateTime

FontColor

Receba ou coloca a cor da letra.

public Color FontColor { get; set; }

Valor da propriedade

Color

Highlight

Recebe ou coloca a cor de destaque.

public Color Highlight { get; set; }

Valor da propriedade

Color

Icon

Receba ou coloca o ícone.

public TagIcon Icon { get; set; }

Valor da propriedade

TagIcon

Label

Receba ou coloca o texto do rótulo.

public string Label { get; set; }

Valor da propriedade

string

Status

Obter ou definir o status.

public TagStatus Status { get; }

Valor da propriedade

TagStatus

Methods

CreateAwardRibbon(Redação)

Crie uma nova tag de nota com o ícone AwardRibbon e a etiqueta especificada.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBinoculars(Redação)

Crie uma nova tag de nota com o ícone Binoculars e a etiqueta especificada.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlankPaperWithLines(Redação)

Crie uma nova tag de nota com o ícone BlankPaperWithLines e a etiqueta especificada.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueCheckMark(Redação)

Crie uma nova tag de nota com o ícone BlueCheckMark e a etiqueta especificada.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueCircle(Redação)

Crie uma nova tag de nota com o ícone BlueCircle e a etiqueta especificada.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueCircle1(Redação)

Crie uma nova tag de nota com o ícone BlueCircle1 e a etiqueta especificada.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueCircle2(Redação)

Crie uma nova tag de nota com o ícone BlueCircle2 e a etiqueta especificada.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueCircle3(Redação)

Crie uma nova tag de nota com o ícone BlueCircle3 e a etiqueta especificada.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueDownArrow(Redação)

Crie uma nova tag de nota com o ícone BlueDownArrow e a etiqueta especificada.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueEightPointStar(Redação)

Crie uma nova tag de nota com o ícone BlueEightPointStar e a etiqueta especificada.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueFollowUpFlag(Redação)

Crie uma nova tag de nota com o ícone BlueFollowUpFlag e a etiqueta especificada.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueLeftArrow(Redação)

Crie uma nova tag de nota com o ícone BlueLeftArrow e a etiqueta especificada.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueRightArrow(Redação)

Crie uma nova tag de nota com o ícone BlueRightArrow e a etiqueta especificada.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueSolidTarget(Redação)

Crie uma nova tag de nota com o ícone BlueSolidTarget e a etiqueta especificada.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueSquare(Redação)

Crie uma nova tag de nota com o ícone BlueSquare e a etiqueta especificada.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueStar(Redação)

Crie uma nova tag de nota com o ícone BlueStar e a etiqueta especificada.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueSun(Redação)

Crie uma nova tag de nota com o ícone BlueSun e a etiqueta especificada.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueTarget(Redação)

Crie uma nova tag de nota com o ícone BlueTarget e a etiqueta especificada.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueTriangle(Redação)

Crie uma nova tag de nota com o ícone BlueTriangle e a etiqueta especificada.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueUmbrella(Redação)

Crie uma nova tag de nota com o ícone BlueUmbrella e a etiqueta especificada.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateBlueUpArrow(Redação)

Crie uma nova tag de nota com o ícone BlueUpArrow e a etiqueta especificada.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoBlueXNo(Redação)

Crie uma nova tag de nota com o ícone BlueXNo e a etiqueta especificada.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoBlueXWithDots(Redação)

Crie uma nova tag de nota com o ícone BlueXWithDots e a etiqueta especificada.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateCalendarDateWithClock(Redação)

Crie uma nova tag de nota com o ícone CalendarDateWithClock e a etiqueta especificada.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateCar(Redação)

Crie uma nova tag de nota com o ícone do carro e a etiqueta especificada.

public static NoteTag CreateCar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateClosedEnvelope(Redação)

Crie uma nova tag de nota com o ícone ClosedEnvelope e a etiqueta especificada.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateCloud(Redação)

Crie uma nova etiqueta com um ícone de nuvem e um rótulo especificado.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateCoinsWithWindowBackdrop(Redação)

Crie uma nova tag de nota com o ícone CoinsWithWindowBackdrop e a etiqueta especificada.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateCommentBubble(Redação)

Crie uma nova tag de nota com o ícone CommentBubble e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateContactInformation(Redação)

Crie uma nova tag de nota com o ícone ContactInformation e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateContactPersonOnCard(Redação)

Crie uma nova tag de nota com o ícone ContactPersonOnCard e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateDollarSign(Redação)

Crie uma nova tag de nota com o ícone DollarSign e a etiqueta especificada.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoMessagem(Redação)

Crie uma nova etiqueta de anotação com o ícone EMailMessage e o rótulo especificado.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateFrowningFace(Redação)

Crie uma nova tag de nota com o ícone FrowningFace e a etiqueta especificada.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGlobe(Redação)

Crie uma nova tag de notas com o ícone Globe e a etiqueta especificada.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenCheckMark(Redação)

Crie uma nova tag de nota com o ícone GreenCheckMark e a etiqueta especificada.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenCircle(Redação)

Crie uma nova tag de nota com o ícone GreenCircle e a etiqueta especificada.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenCircle1(Redação)

Crie uma nova tag de nota com o ícone GreenCircle1 e a etiqueta especificada.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenCircle2(Redação)

Crie uma nova tag de nota com o ícone GreenCircle2 e a etiqueta especificada.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenCircle3(Redação)

Crie uma nova tag de nota com o ícone GreenCircle3 e a etiqueta especificada.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenDownArrow(Redação)

Crie uma nova tag de nota com o ícone GreenDownArrow e a etiqueta especificada.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenEightPointStar(Redação)

Crie uma nova tag de nota com o ícone GreenEightPointStar e a etiqueta especificada.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenLeftArrow(Redação)

Crie uma nova tag de nota com o ícone GreenLeftArrow e a etiqueta especificada.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenRightArrow(Redação)

Crie uma nova tag de nota com o ícone GreenRightArrow e a etiqueta especificada.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenSolidArrow(Redação)

Crie uma nova tag de nota com o ícone GreenSolidArrow e a etiqueta especificada.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenSquare(Redação)

Crie uma nova tag de nota com o ícone GreenSquare e a etiqueta especificada.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenStar(Redação)

Crie uma nova etiqueta com um ícone GreenStar e um rótulo especificado.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenSun(Redação)

Crie uma nova tag de nota com o ícone GreenSun e a etiqueta especificada.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenTarget(Redação)

Crie uma nova tag de nota com o ícone GreenTarget e a etiqueta especificada.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenTriangle(Redação)

Crie uma nova tag de nota com o ícone GreenTriangle e a etiqueta especificada.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenUmbrella(Redação)

Crie uma nova tag de nota com o ícone GreenUmbrella e a etiqueta especificada.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateGreenUpArrow(Redação)

Crie uma nova tag de nota com o ícone GreenUpArrow e a etiqueta especificada.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoGreenXNo(Redação)

Crie uma nova tag de nota com o ícone GreenXNo e a etiqueta especificada.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoGreenXWithDots(Redação)

Crie uma nova tag de nota com o ícone GreenXWithDots e a etiqueta especificada.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateHeart(Redação)

Crie uma nova etiqueta com um ícone do coração e um rótulo especificado.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateHighPriority(Redação)

Crie uma nova tag de nota com o ícone HighPriority e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateHome(Redação)

Crie uma nova tag de nota com o ícone Home e a etiqueta especificada.

public static NoteTag CreateHome(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateHyperlinkGlobe(Redação)

Crie uma nova tag de nota com o ícone HyperlinkGlobe e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateInstantMessagingContactPerson(Redação)

Crie uma nova tag de nota com o ícone InstantMessagingContactPerson e a etiqueta especificada.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateLaptop(Redação)

Crie uma nova tag de notas com o ícone do laptop e a etiqueta especificada.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateLightBulb(Redação)

Crie uma nova tag de nota com o ícone LightBulb e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateLightningBolt(Redação)

Crie uma nova tag de nota com o ícone LightningBolt e a etiqueta especificada.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateMeeting(Redação)

Crie uma nova tag de notas com o ícone de reunião e a etiqueta especificada.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateMobilePhone(Redação)

Crie uma nova tag de nota com o ícone do MobilePhone e a etiqueta especificada.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateMovieClip(Redação)

Crie uma nova tag de notas com o ícone MovieClip e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateMusicalNote(Redação)

Crie uma nova tag de notas com o ícone MusicalNote e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateNoIcon(Redação)

Crie uma nova tag de nota sem ícone e com uma etiqueta especificada.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateNotebookWithClock(Redação)

Crie uma nova tag de nota com o ícone NotebookWithClock e a etiqueta especificada.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateOpenBook(Redação)

Crie uma nova tag de nota com o ícone do OpenBook e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateOpenEnvelope(Redação)

Crie uma nova tag de nota com o ícone OpenEnvelope e a etiqueta especificada.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateOrangeSquare(Redação)

Crie uma nova tag de nota com o ícone OrangeSquare e a etiqueta especificada.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePadlock(Redação)

Crie uma nova tag de nota com o ícone Padlock e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePaperClip(Redação)

Crie uma nova tag de nota com o ícone PaperClip e a etiqueta especificada.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePen(Redação)

Crie uma nova etiqueta com um ícone de Pen e um rótulo especificado.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePersonWithExclamationMark(Redação)

Crie uma nova tag de nota com o ícone PersonWithExclamationMark e a etiqueta especificada.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePinkSquare(Redação)

Crie uma nova tag de nota com o ícone PinkSquare e a etiqueta especificada.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePlane(Redação)

Crie uma nova tag de nota com o ícone do avião e a etiqueta especificada.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePresentationSlide(Redação)

Crie uma nova tag de nota com o ícone PresentationSlide e a etiqueta especificada.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreatePushpin(Redação)

Crie uma nova tag de nota com o ícone Pushpin e a etiqueta especificada.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateQuestionBalloon(Redação)

Crie uma nova tag de nota com o ícone QuestionBalloon e a etiqueta especificada.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateQuestionMark(Redação)

Crie uma nova tag de nota com o ícone QuestionMark e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateQuotationMark(Redação)

Crie uma nova tag de nota com o ícone QuotationMark e a etiqueta especificada.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateRedSquare(Redação)

Crie uma nova tag de nota com o ícone RedSquare e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateReminderBell(Redação)

Crie uma nova tag de nota com o ícone ReminderBell e a etiqueta especificada.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateResearch(Redação)

Crie uma nova tag de notas com o ícone de pesquisa e a etiqueta especificada.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateRoseOnStem(Redação)

Crie uma nova tag de nota com o ícone RoseOnStem e a etiqueta especificada.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateScheduledTask(Redação)

Crie uma nova tag de nota com o ícone ScheduledTask e a etiqueta especificada.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateSmilingFace(Redação)

Crie uma nova tag de nota com o ícone SmilingFace e a etiqueta especificada.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateSunflower(Redação)

Crie uma nova tag de nota com o ícone Sunflower e a etiqueta especificada.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateTelephoneWithClock(Redação)

Crie uma nova tag de nota com o ícone TelephoneWithClock e a etiqueta especificada.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateTimeSensitive(Redação)

Crie uma nova etiqueta com um ícone TimeSensitive e um rótulo especificado.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateTwoPeople(Redação)

Crie uma nova tag de nota com o ícone TwoPeople e a etiqueta especificada.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowCheckMark(Redação)

Crie uma nova tag de nota com o ícone YellowCheckMark e a etiqueta especificada.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowCircle(Redação)

Crie uma nova tag de nota com o ícone YellowCircle e a etiqueta especificada.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowCircle1(Redação)

Crie uma nova tag de nota com o ícone YellowCircle1 e a etiqueta especificada.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowCircle2(Redação)

Crie uma nova tag de nota com o ícone YellowCircle2 e a etiqueta especificada.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowCircle3(Redação)

Crie uma nova tag de nota com o ícone YellowCircle3 e a etiqueta especificada.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowDownArrow(Redação)

Crie uma nova tag de nota com o ícone YellowDownArrow e a etiqueta especificada.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowEightPointStar(Redação)

Crie uma nova tag de nota com o ícone YellowEightPointStar e a etiqueta especificada.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowKey(Redação)

Crie uma nova tag de nota com o ícone YellowKey e a etiqueta especificada.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowLeftArrow(Redação)

Crie uma nova tag de nota com o ícone YellowLeftArrow e a etiqueta especificada.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowRightArrow(Redação)

Crie uma nova tag de nota com o ícone YellowRightArrow e a etiqueta especificada.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowSolidTarget(Redação)

Crie uma nova tag de nota com o ícone YellowSolidTarget e a etiqueta especificada.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowSquare(Redação)

Crie uma nova tag de nota com o ícone YellowSquare e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowStar(Redação)

Crie uma nova tag de nota com o ícone YellowStar e a etiqueta especificada.

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

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowSun(Redação)

Crie uma nova tag de nota com o ícone YellowSun e a etiqueta especificada.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowTarget(Redação)

Crie uma nova tag de nota com o ícone YellowTarget e a etiqueta especificada.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowTriangle(Redação)

Crie uma nova tag de nota com o ícone YellowTriangle e a etiqueta especificada.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowUmbrella(Redação)

Crie uma nova tag de nota com o ícone YellowUmbrella e a etiqueta especificada.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CreateYellowUpArrow(Redação)

Crie uma nova tag de nota com o ícone YellowUpArrow e a etiqueta especificada.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoYellowX(Redação)

Crie uma nova tag de nota com o ícone YellowX e a etiqueta especificada.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

CriaçãoXWithDots(Redação)

Crie uma nova tag de nota com o ícone YellowXWithDots e a etiqueta especificada.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

O rótulo da tag.

Returns

NoteTag

O Aspose.Note.NoteTag.

Equals(Objeto)

Determina se o objeto especificado é igual ao objeto atual.

public override bool Equals(object obj)

Parameters

obj object

O objeto .

Returns

bool

É o sistema.Boolean.

Equals(NoteTag)

Determina se o objeto especificado é igual ao objeto atual.

public bool Equals(NoteTag other)

Parameters

other NoteTag

O objeto .

Returns

bool

É o sistema.Boolean.

GetHashCode()

Ele serve como uma função de hash para o tipo.

public override int GetHashCode()

Returns

int

O sistema.Int32.

 Português