Class NoteTag

Class NoteTag

Tên không gian: Aspose.Note Tổng hợp: Aspose.Note.dll (25.4.0)

Hiển thị một thẻ ghi chú.

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

Inheritance

object NoteTag

Implements

INoteTag , ITag , IEquatable

Thành viên thừa kế

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

Examples

Hiển thị cách thêm hình ảnh mới với thẻ.

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

Hiển thị cách thêm đoạn mới với thẻ.

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

Hiển thị cách truy cập các chi tiết của một thẻ.

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

Hiển thị làm thế nào để thêm bảng mới với thẻ.

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

Hiển thị cách chuẩn bị một mẫu cho cuộc họp hàng tuần.

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

Nhận hoặc đặt thời gian hoàn thành.

public DateTime? CompletedTime { get; }

Giá trị bất động sản

DateTime ?

CreationTime

Nhận hoặc đặt thời gian sáng tạo.

public DateTime CreationTime { get; set; }

Giá trị bất động sản

DateTime

FontColor

Nhận hoặc đặt màu font.

public Color FontColor { get; set; }

Giá trị bất động sản

Color

Highlight

Nhận hoặc đặt màu sắc nổi bật.

public Color Highlight { get; set; }

Giá trị bất động sản

Color

Icon

Nhận hoặc đặt biểu tượng.

public TagIcon Icon { get; set; }

Giá trị bất động sản

TagIcon

Label

Nhận hoặc đặt nhãn văn bản.

public string Label { get; set; }

Giá trị bất động sản

string

Status

Nhận hoặc đặt trạng thái.

public TagStatus Status { get; }

Giá trị bất động sản

TagStatus

Methods

CreateAwardRibbon(String)

Tạo một thẻ ghi chú mới với biểu tượng AwardRibbon và nhãn cụ thể.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBinoculars(String)

Tạo một thẻ ghi chú mới với biểu tượng Binoculars và nhãn cụ thể.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlankPaperWithLines(String)

Tạo một thẻ ghi chú mới với biểu tượng BlankPaperWithLines và nhãn cụ thể.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueCheckMark(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueCheckMark và nhãn cụ thể.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueCircle(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueCircle và nhãn cụ thể.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueCircle1(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueCircle1 và nhãn cụ thể.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueCircle2(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueCircle2 và nhãn cụ thể.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueCircle3(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueCircle3 và nhãn cụ thể.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueDownArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueDownArrow và nhãn cụ thể.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueEightPointStar(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueEightPointStar và nhãn cụ thể.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueFollowUpFlag(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueFollowUpFlag và nhãn cụ thể.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueLeftArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueLeftArrow và nhãn cụ thể.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueRightArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueRightArrow và nhãn cụ thể.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueSolidTarget(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueSolidTarget và nhãn cụ thể.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueSquare và nhãn cụ thể.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueStar(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueStar và nhãn cụ thể.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueSun(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueSun và nhãn cụ thể.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueTarget(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueTarget và nhãn cụ thể.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueTriangle(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueTriangle và nhãn cụ thể.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueUmbrella(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueUmbrella và nhãn cụ thể.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateBlueUpArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueUpArrow và nhãn cụ thể.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

TạoBlueXNo(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueXNo và nhãn cụ thể.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

TạoBlueXWithDots(String)

Tạo một thẻ ghi chú mới với biểu tượng BlueXWithDots và nhãn cụ thể.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateCalendarDateWithClock(String)

Tạo một thẻ ghi chú mới với biểu tượng CalendarDateWithClock và nhãn cụ thể.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateCar(String)

Tạo một thẻ ghi chú mới với biểu tượng xe và nhãn cụ thể.

public static NoteTag CreateCar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateClosedEnvelope(String)

Tạo một thẻ ghi chú mới với biểu tượng ClosedEnvelope và nhãn cụ thể.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateCloud(String)

Tạo một thẻ ghi chú mới với biểu tượng đám mây và nhãn cụ thể.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateCoinsWithWindowBackdrop(String)

Tạo một thẻ ghi chú mới với biểu tượng CoinsWithWindowBackdrop và nhãn cụ thể.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateCommentBubble(String)

Tạo một thẻ ghi chú mới với biểu tượng CommentBubble và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateContactInformation(String)

Tạo một thẻ ghi chú mới với biểu tượng ContactInformation và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateContactPersonOnCard(String)

Tạo một thẻ ghi chú mới với biểu tượng ContactPersonOnCard và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateDollarSign(String)

Tạo một thẻ ghi chú mới với biểu tượng DollarSign và nhãn cụ thể.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateThông tin(String)

Tạo một thẻ ghi chú mới với biểu tượng EMailMessage và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateFrowningFace(String)

Tạo một thẻ ghi chú mới với biểu tượng FrowningFace và nhãn cụ thể.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGlobe(String)

Tạo một thẻ ghi chú mới với biểu tượng Globe và nhãn cụ thể.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenCheckMark(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenCheckMark và nhãn cụ thể.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenCircle(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenCircle và nhãn cụ thể.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenCircle1(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenCircle1 và nhãn cụ thể.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenCircle2(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenCircle2 và nhãn cụ thể.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenCircle3(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenCircle3 và nhãn cụ thể.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenDownArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenDownArrow và nhãn cụ thể.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenEightPointStar(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenEightPointStar và nhãn cụ thể.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenLeftArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenLeftArrow và nhãn cụ thể.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenRightArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenRightArrow và nhãn cụ thể.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenSolidArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenSolidArrow và nhãn cụ thể.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenSquare và nhãn cụ thể.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenStar(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenStar và nhãn cụ thể.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenSun(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenSun và nhãn cụ thể.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenTarget(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenTarget và nhãn cụ thể.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenTriangle(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenTriangle và nhãn cụ thể.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenUmbrella(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenUmbrella và nhãn cụ thể.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateGreenUpArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenUpArrow và nhãn cụ thể.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

TạoGreenXNo(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenXNo và nhãn cụ thể.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

TạoGreenXWithDots(String)

Tạo một thẻ ghi chú mới với biểu tượng GreenXWithDots và nhãn cụ thể.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateHeart(String)

Tạo một thẻ ghi chú mới với biểu tượng Heart và nhãn cụ thể.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateHighPriority(String)

Tạo một thẻ ghi chú mới với biểu tượng HighPriority và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateHome(String)

Tạo một thẻ ghi chú mới với biểu tượng Home và nhãn cụ thể.

public static NoteTag CreateHome(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateHyperlinkGlobe(String)

Tạo một thẻ ghi chú mới với biểu tượng HyperlinkGlobe và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateInstantMessagingContactPerson(String)

Tạo một thẻ ghi chú mới với biểu tượng InstantMessagingContactPerson và nhãn cụ thể.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateLaptop(String)

Tạo một thẻ ghi chú mới với biểu tượng Laptop và nhãn cụ thể.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateLightBulb(String)

Tạo một thẻ ghi chú mới với biểu tượng LightBulb và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateLightningBolt(String)

Tạo một thẻ ghi chú mới với biểu tượng LightningBolt và nhãn cụ thể.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateMeeting(String)

Tạo một thẻ ghi chú mới với biểu tượng Cuộc gặp gỡ và nhãn cụ thể.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateMobilePhone(String)

Tạo một thẻ ghi chú mới với biểu tượng MobilePhone và nhãn cụ thể.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateMovieClip(String)

Tạo một thẻ ghi chú mới với biểu tượng MovieClip và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateMusicalNote(String)

Tạo một thẻ ghi chú mới với biểu tượng MusicalNote và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateNoIcon(String)

Tạo một thẻ ghi chú mới mà không có biểu tượng và với nhãn cụ thể.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateNotebookWithClock(String)

Tạo một thẻ ghi chú mới với biểu tượng NotebookWithClock và nhãn cụ thể.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateOpenBook(String)

Tạo một thẻ ghi chú mới với biểu tượng OpenBook và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateOpenEnvelope(String)

Tạo một thẻ ghi chú mới với biểu tượng OpenEnvelope và nhãn cụ thể.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateOrangeSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng OrangeSquare và nhãn cụ thể.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePadlock(String)

Tạo một thẻ ghi chú mới với biểu tượng Padlock và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePaperClip(String)

Tạo một thẻ ghi chú mới với biểu tượng PaperClip và nhãn cụ thể.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePen(String)

Tạo một thẻ ghi chú mới với biểu tượng Pen và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePersonWithExclamationMark(String)

Tạo một thẻ ghi chú mới với biểu tượng PersonWithExclamationMark và nhãn cụ thể.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePinkSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng PinkSquare và nhãn cụ thể.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePlane(String)

Tạo một thẻ ghi chú mới với biểu tượng máy bay và nhãn cụ thể.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePresentationSlide(String)

Tạo một thẻ ghi chú mới với biểu tượng PresentationSlide và nhãn cụ thể.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreatePushpin(String)

Tạo một thẻ ghi chú mới với biểu tượng Pushpin và nhãn cụ thể.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateQuestionBalloon(String)

Tạo một thẻ ghi chú mới với biểu tượng QuestionBalloon và nhãn cụ thể.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateQuestionMark(String)

Tạo một thẻ ghi chú mới với biểu tượng QuestionMark và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateQuotationMark(String)

Tạo một thẻ ghi chú mới với biểu tượng QuotationMark và nhãn cụ thể.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateRedSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng RedSquare và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateReminderBell(String)

Tạo một thẻ ghi chú mới với biểu tượng ReminderBell và nhãn cụ thể.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateResearch(String)

Tạo một thẻ ghi chú mới với biểu tượng nghiên cứu và nhãn cụ thể.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateRoseOnStem(String)

Tạo một thẻ ghi chú mới với biểu tượng RoseOnStem và nhãn cụ thể.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateScheduledTask(String)

Tạo một thẻ ghi chú mới với biểu tượng ScheduledTask và nhãn cụ thể.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateSmilingFace(String)

Tạo một thẻ ghi chú mới với biểu tượng SmilingFace và nhãn cụ thể.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateSunflower(String)

Tạo một thẻ ghi chú mới với biểu tượng Sunflower và nhãn cụ thể.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateTelephoneWithClock(String)

Tạo một thẻ ghi chú mới với biểu tượng TelephoneWithClock và nhãn cụ thể.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateTimeSensitive(String)

Tạo một thẻ ghi chú mới với biểu tượng TimeSensitive và nhãn cụ thể.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateTwoPeople(String)

Tạo một thẻ ghi chú mới với biểu tượng TwoPeople và nhãn cụ thể.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowCheckMark(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowCheckMark và nhãn cụ thể.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowCircle(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowCircle và nhãn cụ thể.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowCircle1(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowCircle1 và nhãn cụ thể.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowCircle2(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowCircle2 và nhãn cụ thể.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowCircle3(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowCircle3 và nhãn cụ thể.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowDownArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowDownArrow và nhãn cụ thể.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowEightPointStar(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowEightPointStar và nhãn cụ thể.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowKey(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowKey và nhãn cụ thể.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowLeftArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowLeftArrow và nhãn cụ thể.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowRightArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowRightArrow và nhãn cụ thể.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowSolidTarget(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowSolidTarget và nhãn cụ thể.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowSquare(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowSquare và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowStar(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowStar và nhãn cụ thể.

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

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowSun(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowSun và nhãn cụ thể.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowTarget(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowTarget và nhãn cụ thể.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowTriangle(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowTriangle và nhãn cụ thể.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowUmbrella(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowUmbrella và nhãn cụ thể.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

CreateYellowUpArrow(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowUpArrow và nhãn cụ thể.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

Tạo YellowX(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowX và nhãn cụ thể.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

TạoYellowXWithDots(String)

Tạo một thẻ ghi chú mới với biểu tượng YellowXWithDots và nhãn cụ thể.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

nhãn của tag.

Returns

NoteTag

Đánh giá WL31_.NoteTag

Equals(đối tượng)

Nó xác định xem đối tượng được chỉ định có bằng đối tượng hiện tại hay không.

public override bool Equals(object obj)

Parameters

obj object

đối tượng .

Returns

bool

Hệ thống - Boolean

Equals(NoteTag)

Nó xác định xem đối tượng được chỉ định có bằng đối tượng hiện tại hay không.

public bool Equals(NoteTag other)

Parameters

other NoteTag

đối tượng .

Returns

bool

Hệ thống - Boolean

GetHashCode()

Nó phục vụ như một chức năng hash cho loại.

public override int GetHashCode()

Returns

int

Hệ thống.Int32.

 Tiếng Việt