Class NoteTag

Class NoteTag

Названий на: Aspose.Note Асамблея: Aspose.Note.dll (25.4.0)

Знайдіть нотаріум.

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

Inheritance

object NoteTag

Implements

INoteTag , ITag , IEquatable

Нападні члени

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

Examples

Покажіть, як додати новий зображення з тегом.

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

Покажіть, як додати новий абзац з тегом.

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

Показати, як отримати доступ до деталей тегу.

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

Покажіть, як додати нову таблицю з тегом.

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

Покажіть, як підготувати шаблон для щотижневого засідання.

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

Приймати або встановити завершений час.

public DateTime? CompletedTime { get; }

вартість нерухомості

DateTime ?

CreationTime

Знайти або встановити час створення.

public DateTime CreationTime { get; set; }

вартість нерухомості

DateTime

FontColor

Приймати або встановити колір шрифту.

public Color FontColor { get; set; }

вартість нерухомості

Color

Highlight

Приймати або встановити колір висвітлення.

public Color Highlight { get; set; }

вартість нерухомості

Color

Icon

Приймати або встановити ікону.

public TagIcon Icon { get; set; }

вартість нерухомості

TagIcon

Label

Приймає або встановлює текст етикетки.

public string Label { get; set; }

вартість нерухомості

string

Status

Знайти або встановити статус.

public TagStatus Status { get; }

вартість нерухомості

TagStatus

Methods

CreateAwardRibbon(стрічка)

Створює ноту з іконою AwardRibbon та зазначеною етикеткою.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBinoculars(стрічка)

Створює ноту з іконою Binoculars та зазначеною етикеткою.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlankPaperWithLines(стрічка)

Створює ноту з іконою BlankPaperWithLines та зазначеною етикеткою.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueCheckMark(стрічка)

Створює ноту з іконою BlueCheckMark та зазначеною етикеткою.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueCircle(стрічка)

Створює ноту з іконою BlueCircle та зазначеною етикеткою.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueCircle1(стрічка)

Створює ноту з іконою BlueCircle1 та зазначеною етикеткою.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueCircle2(стрічка)

Створює ноту з іконою BlueCircle2 та зазначеною етикеткою.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueCircle3(стрічка)

Створює ноту з іконою BlueCircle3 та зазначеною етикеткою.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueDownArrow(стрічка)

Створює ноту з іконою BlueDownArrow та зазначеною етикеткою.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueEightPointStar(стрічка)

Створює ноту з іконою BlueEightPointStar та зазначеною етикеткою.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueFollowUpFlag(стрічка)

Створює ноту з іконою BlueFollowUpFlag та зазначеною етикеткою.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueLeftArrow(стрічка)

Створює ноту з іконою BlueLeftArrow та зазначеною етикеткою.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueRightArrow(стрічка)

Створює ноту з іконою BlueRightArrow та зазначеною етикеткою.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueSolidTarget(стрічка)

Створює ноту з іконою BlueSolidTarget та зазначеною етикеткою.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueSquare(стрічка)

Створює ноту з іконою BlueSquare та зазначеною етикеткою.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueStar(стрічка)

Створює ноту з іконою BlueStar та зазначеною етикеткою.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueSun(стрічка)

Створює ноту з іконою BlueSun та зазначеною етикеткою.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueTarget(стрічка)

Створює ноту з іконою BlueTarget та зазначеною етикеткою.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueTriangle(стрічка)

Створює ноту з іконою BlueTriangle і визначеною етикеткою.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueUmbrella(стрічка)

Створює ноту з іконою BlueUmbrella та зазначеною етикеткою.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateBlueUpArrow(стрічка)

Створює ноту з іконою BlueUpArrow та зазначеною етикеткою.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняBlueXNo(стрічка)

Створює ноту з іконою BlueXNo та зазначеною етикеткою.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняBlueXWithDots(стрічка)

Створює ноту з іконою BlueXWithDots та зазначеною етикеткою.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateCalendarDateWithClock(стрічка)

Створює ноту з іконою CalendarDateWithClock та зазначеною етикеткою.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateCar(стрічка)

Створює ноту з іконою автомобіля та зазначеною етикеткою.

public static NoteTag CreateCar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateClosedEnvelope(стрічка)

Створює ноту з іконою ClosedEnvelope та зазначеною етикеткою.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateCloud(стрічка)

Створює ноутбук з іконою хмари та визначеною етикеткою.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateCoinsWithWindowBackdrop(стрічка)

Створює ноту з іконою CoinsWithWindowBackdrop та зазначеною етикеткою.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateCommentBubble(стрічка)

Створює ноту з іконою CommentBubble та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateContactInformation(стрічка)

Створює ноту з іконою ContactInformation та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateContactPersonOnCard(стрічка)

Створює ноту з іконою ContactPersonOnCard та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateDollarSign(стрічка)

Створює ноту з іконою DollarSign та зазначеною етикеткою.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняMessage(стрічка)

Створює ноту з іконою EMailMessage та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateFrowningFace(стрічка)

Створює ноту з іконою FrowningFace та зазначеною етикеткою.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGlobe(стрічка)

Створює ноту з іконою Globe і визначеною етикеткою.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenCheckMark(стрічка)

Створює ноту з іконою GreenCheckMark та зазначеною етикеткою.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenCircle(стрічка)

Створює ноту з іконою GreenCircle та зазначеною етикеткою.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenCircle1(стрічка)

Створює ноту з іконою GreenCircle1 та зазначеною етикеткою.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenCircle2(стрічка)

Створює ноту з іконою GreenCircle2 та зазначеною етикеткою.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenCircle3(стрічка)

Створює ноту з іконою GreenCircle3 та зазначеною етикеткою.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenDownArrow(стрічка)

Створює ноту з іконою GreenDownArrow та зазначеною етикеткою.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenEightPointStar(стрічка)

Створює ноту з іконою GreenEightPointStar та зазначеною етикеткою.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenLeftArrow(стрічка)

Створює ноту з іконою GreenLeftArrow та зазначеною етикеткою.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenRightArrow(стрічка)

Створює ноту з іконою GreenRightArrow та зазначеною етикеткою.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenSolidArrow(стрічка)

Створює ноту з іконою GreenSolidArrow та зазначеною етикеткою.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenSquare(стрічка)

Створює ноту з іконою GreenSquare та зазначеною етикеткою.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenStar(стрічка)

Створює ноту з іконою GreenStar та зазначеною етикеткою.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenSun(стрічка)

Створює ноту з іконою GreenSun та зазначеною етикеткою.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenTarget(стрічка)

Створює ноту з іконою GreenTarget та зазначеною етикеткою.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenTriangle(стрічка)

Створює ноту з іконою GreenTriangle і визначеною етикеткою.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenUmbrella(стрічка)

Створює ноту з іконою GreenUmbrella та зазначеною етикеткою.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateGreenUpArrow(стрічка)

Створює ноту з іконою GreenUpArrow та зазначеною етикеткою.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняGreenXNo(стрічка)

Створює ноту з іконою GreenXNo та зазначеною етикеткою.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняGreenXWithDots(стрічка)

Створює ноту з іконою GreenXWithDots та зазначеною етикеткою.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateHeart(стрічка)

Створює ноту з іконою серця та зазначеною етикеткою.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateHighPriority(стрічка)

Створює ноту з іконою HighPriority та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateHome(стрічка)

Створює ноту з іконою Home і визначеною етикеткою.

public static NoteTag CreateHome(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateHyperlinkGlobe(стрічка)

Створює ноту з іконою HyperlinkGlobe та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateInstantMessagingContactPerson(стрічка)

Створює ноту з іконою InstantMessagingContactPerson та зазначеною етикеткою.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateLaptop(стрічка)

Створює нову ознаку з іконою ноутбука та визначеною етикеткою.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateLightBulb(стрічка)

Створює ноту з іконою LightBulb та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateLightningBolt(стрічка)

Створює ноту з іконою LightningBolt та зазначеною етикеткою.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateMeeting(стрічка)

Створює ноту з іконою зустрічі та зазначеною етикеткою.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateMobilePhone(стрічка)

Створює ноту з іконою MobilePhone та зазначеною етикеткою.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateMovieClip(стрічка)

Створює ноту з іконою MovieClip та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateMusicalNote(стрічка)

Створює ноту з іконою MusicalNote та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateNoIcon(стрічка)

Створює ноутбук без ікони і з зазначеною етикеткою.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateNotebookWithClock(стрічка)

Створює нову ознаку з іконою NotebookWithClock та зазначеною етикеткою.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateOpenBook(стрічка)

Створює ноту з іконою OpenBook та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateOpenEnvelope(стрічка)

Створює ноту з іконою OpenEnvelope та визначеною етикеткою.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateOrangeSquare(стрічка)

Створює ноту з іконою OrangeSquare та зазначеною етикеткою.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePadlock(стрічка)

Створює ноту з іконою Padlock та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePaperClip(стрічка)

Створює ноту з іконою PaperClip та зазначеною етикеткою.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePen(стрічка)

Створює ноту з іконою пені та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePersonWithExclamationMark(стрічка)

Створює ноту з іконою PersonWithExclamationMark та зазначеною етикеткою.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePinkSquare(стрічка)

Створює ноту з іконою PinkSquare та зазначеною етикеткою.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePlane(стрічка)

Створює ноту з іконою План і зазначеною етикеткою.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePresentationSlide(стрічка)

Створює ноту з іконою PresentationSlide та зазначеною етикеткою.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreatePushpin(стрічка)

Створює ноту з іконою Pushpin та зазначеною етикеткою.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateQuestionBalloon(стрічка)

Створює ноту з іконою QuestionBalloon та зазначеною етикеткою.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateQuestionMark(стрічка)

Створює ноту з іконою QuestionMark та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateQuotationMark(стрічка)

Створює ноту з іконою QuotationMark та зазначеною етикеткою.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateRedSquare(стрічка)

Створює ноту з іконою RedSquare та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateReminderBell(стрічка)

Створює ноту з іконою ReminderBell та зазначеною етикеткою.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateResearch(стрічка)

Створює ноту з іконою досліджень та зазначеною етикеткою.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateRoseOnStem(стрічка)

Створює ноту з іконою RoseOnStem та зазначеною етикеткою.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateScheduledTask(стрічка)

Створює ноту з іконою ScheduledTask та зазначеною етикеткою.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateSmilingFace(стрічка)

Створює ноту з іконою SmilingFace та зазначеною етикеткою.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateSunflower(стрічка)

Створює ноту з іконою Sunflower і визначеною етикеткою.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateTelephoneWithClock(стрічка)

Створює ноту з іконою TelephoneWithClock та зазначеною етикеткою.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateTimeSensitive(стрічка)

Створює ноту з іконою TimeSensitive та зазначеною етикеткою.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateTwoPeople(стрічка)

Створює ноту з іконою TwoPeople та визначеною етикеткою.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowCheckMark(стрічка)

Створює ноту з іконою YellowCheckMark та зазначеною етикеткою.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowCircle(стрічка)

Створює ноту з іконою YellowCircle та зазначеною етикеткою.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowCircle1(стрічка)

Створює ноту з іконою YellowCircle1 та зазначеною етикеткою.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowCircle2(стрічка)

Створює ноту з іконою YellowCircle2 та зазначеною етикеткою.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowCircle3(стрічка)

Створює ноту з іконою YellowCircle3 та зазначеною етикеткою.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowDownArrow(стрічка)

Створює ноту з іконою YellowDownArrow та зазначеною етикеткою.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowEightPointStar(стрічка)

Створює ноту з іконою YellowEightPointStar та зазначеною етикеткою.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowKey(стрічка)

Створює ноту з іконою YellowKey та зазначеною етикеткою.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowLeftArrow(стрічка)

Створює ноту з іконою YellowLeftArrow та зазначеною етикеткою.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowRightArrow(стрічка)

Створює ноту з іконою YellowRightArrow та зазначеною етикеткою.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowSolidTarget(стрічка)

Створює ноту з іконою YellowSolidTarget та зазначеною етикеткою.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowSquare(стрічка)

Створює ноту з іконою YellowSquare та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowStar(стрічка)

Створює ноту з іконою YellowStar та зазначеною етикеткою.

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

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowSun(стрічка)

Створює ноту з іконою YellowSun та зазначеною етикеткою.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowTarget(стрічка)

Створює ноту з іконою YellowTarget та зазначеною етикеткою.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowTriangle(стрічка)

Створює ноту з іконою YellowTriangle і визначеною етикеткою.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowUmbrella(стрічка)

Створює ноту з іконою YellowUmbrella та зазначеною етикеткою.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

CreateYellowUpArrow(стрічка)

Створює ноту з іконою YellowUpArrow та зазначеною етикеткою.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

Створення YellowX(стрічка)

Створює ноту з іконою YellowX та зазначеною етикеткою.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

СтворенняYellowXWithDots(стрічка)

Створює ноту з іконою YellowXWithDots та зазначеною етикеткою.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

Етикет на тег.

Returns

NoteTag

Про це йдеться в повідомленні Aspose.Note.NoteTag.

Equals(Об’єкт)

Визначити, чи є конкретний об’єкт рівним поточному об’єкту.

public override bool Equals(object obj)

Parameters

obj object

Це об’єкт

Returns

bool

Про це йдеться в повідомленні Boolean.

Equals(NoteTag)

Визначити, чи є конкретний об’єкт рівним поточному об’єкту.

public bool Equals(NoteTag other)

Parameters

other NoteTag

Це об’єкт

Returns

bool

Про це йдеться в повідомленні Boolean.

GetHashCode()

Послуговує як функція хаша для типу.

public override int GetHashCode()

Returns

int

Про це йдеться в повідомленні.Int32.

 Українська