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

此分類上一篇: WL31_.NoteTag

CreateBinoculars(线条)

创建一个新的笔记标签与 Binoculars 图标和指定标志。

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlankPaperWithLines(线条)

创建一个新的笔记标签,使用 BlankPaperWithLines 图标和指定的标志。

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueCheckMark(线条)

创建一个新的笔记标签,使用 BlueCheckMark 图标和指定的标志。

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueCircle(线条)

创建一个新的笔记标签,使用 BlueCircle 图标和指定的标志。

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueCircle1(线条)

创建一个新的笔记标签,使用 BlueCircle1 图标和指定标志。

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueCircle2(线条)

创建一个新的笔记标签,使用 BlueCircle2 图标和指定标志。

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueCircle3(线条)

创建一个新的笔记标签,使用 BlueCircle3 图标和指定标志。

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueDownArrow(线条)

创建一个新的笔记标签,使用 BlueDownArrow 图标和指定标志。

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueEightPointStar(线条)

创建一个新的笔记标签,使用 BlueEightPointStar 图标和指定标志。

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueFollowUpFlag(线条)

创建一个新的笔记标签,使用 BlueFollowUpFlag 图标和指定标志。

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueLeftArrow(线条)

创建一个新的笔记标签,使用 BlueLeftArrow 图标和指定标志。

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueRightArrow(线条)

创建一个新的笔记标签,使用 BlueRightArrow 图标和指定标志。

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueSolidTarget(线条)

创建一个新的笔记标签,使用 BlueSolidTarget 图标和指定标志。

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueSquare(线条)

创建一个新的笔记标签,使用 BlueSquare 图标和指定标志。

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueStar(线条)

创建一个新的笔记标签与蓝星图标和指定的标志。

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueSun(线条)

创建一个新的笔记标签,使用 BlueSun 图标和指定标志。

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueTarget(线条)

创建一个新的笔记标签,使用 BlueTarget 图标和指定标志。

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueTriangle(线条)

创建一个新的笔记标签,使用 BlueTriangle 图标和指定标志。

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueUmbrella(线条)

创建一个新的笔记标签,使用 BlueUmbrella 图标和指定标志。

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateBlueUpArrow(线条)

创建一个新的笔记标签与 BlueUpArrow 图标和指定的标志。

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建BlueXNo(线条)

创建一个新的笔记标签,使用 BlueXNo 图标和指定标志。

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建BlueXWithDots(线条)

创建一个新的笔记标签,使用 BlueXWithDots 图标和指定标志。

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateCalendarDateWithClock(线条)

创建一个新的笔记标签与 CalendarDateWithClock 图标和指定的标志。

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateCar(线条)

创建一个新的笔记标签与汽车图标和指定的标志。

public static NoteTag CreateCar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateClosedEnvelope(线条)

创建一个新的笔记标签与 ClosedEnvelope 图标和指定标志。

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateCloud(线条)

创建一个新的笔记标签与云图标和指定的标志。

public static NoteTag CreateCloud(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateCoinsWithWindowBackdrop(线条)

创建一个新的笔记标签,使用 CoinsWithWindowBackdrop 图标和指定标志。

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateCommentBubble(线条)

创建一个新的笔记标签与 CommentBubble 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateContactInformation(线条)

创建一个新的笔记标签与 ContactInformation 图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateContactPersonOnCard(线条)

创建一个新的笔记标签,使用 ContactPersonOnCard 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateDollarSign(线条)

创建一个新的笔记标签与 DollarSign 图标和指定的标志。

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创作信件(线条)

创建一个新的笔记标签与EmailMessage图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateFrowningFace(线条)

创建一个新的笔记标签,使用 FrowningFace 图标和指定的标志。

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGlobe(线条)

创建一个新的笔记标签与Globe图标和指定的标志。

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenCheckMark(线条)

创建一个新的笔记标签,使用 GreenCheckMark 图标和指定的标志。

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenCircle(线条)

创建一个新的笔记标签与GreenCircle图标和指定的标志。

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenCircle1(线条)

创建一个新的笔记标签,使用 GreenCircle1 图标和指定的标志。

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenCircle2(线条)

创建一个新的笔记标签,使用 GreenCircle2 图标和指定的标志。

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenCircle3(线条)

创建一个新的笔记标签,使用 GreenCircle3 图标和指定的标志。

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenDownArrow(线条)

创建一个新的笔记标签,使用 GreenDownArrow 图标和指定标志。

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenEightPointStar(线条)

创建一个新的笔记标签,使用 GreenEightPointStar 图标和指定标志。

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenLeftArrow(线条)

创建一个新的笔记标签,使用 GreenLeftArrow 图标和指定的标志。

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenRightArrow(线条)

创建一个新的笔记标签与GreenRightArrow图标和指定的标志。

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenSolidArrow(线条)

创建一个新的笔记标签与GreenSolidArrow图标和指定的标志。

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenSquare(线条)

创建一个新的笔记标签与GreenSquare图标和指定的标志。

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenStar(线条)

创建一个新的笔记标签与GreenStar图标和指定的标志。

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenSun(线条)

创建一个新的笔记标签与GreenSun图标和指定的标志。

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenTarget(线条)

创建一个新的笔记标签与GreenTarget图标和指定的标志。

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenTriangle(线条)

创建一个新的笔记标签与GreenTriangle图标和指定的标志。

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenUmbrella(线条)

创建一个新的笔记标签与GreenUmbrella图标和指定的标志。

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateGreenUpArrow(线条)

创建一个新的笔记标签与GreenUpArrow图标和指定的标志。

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建GreenXNo(线条)

创建一个新的笔记标签与GreenXNo图标和指定的标志。

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建GreenXWithDots(线条)

创建一个新的笔记标签,使用 GreenXWithDots 图标和指定的标志。

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateHeart(线条)

创建一个新的笔记标签与心脏图标和指定的标志。

public static NoteTag CreateHeart(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateHighPriority(线条)

创建一个新的笔记标签与HighPriority图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateHome(线条)

创建一个新的笔记标签与主图标和指定的标志。

public static NoteTag CreateHome(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateHyperlinkGlobe(线条)

创建一个新的笔记标签,使用 HyperlinkGlobe 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateInstantMessagingContactPerson(线条)

创建一个新的笔记标签,使用 InstantMessagingContactPerson 图标和指定的标志。

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateLaptop(线条)

创建一个新的笔记标签,包含Laptop图标和指定的标志。

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateLightBulb(线条)

创建一个新的笔记标签与LightBulb图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateLightningBolt(线条)

创建一个新的笔记标签与LightningBolt图标和指定的标志。

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateMeeting(线条)

创建一个新的笔记标签与会议图标和指定的标志。

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateMobilePhone(线条)

创建一个新的笔记标签与MobilePhone图标和指定的标志。

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateMovieClip(线条)

创建一个新的笔记标签与MovieClip图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateMusicalNote(线条)

创建一个新的笔记标签与MusicalNote图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateNoIcon(线条)

创建一个新的笔记标签,没有图标,并具有指定的标志。

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateNotebookWithClock(线条)

创建一个新的笔记标签,使用 NotebookWithClock 图标和指定的标志。

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateOpenBook(线条)

创建一个新的笔记标签,包含 OpenBook 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateOpenEnvelope(线条)

创建一个新的笔记标签,使用 OpenEnvelope 图标和指定标志。

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateOrangeSquare(线条)

创建一个新的笔记标签与OrangeSquare图标和指定标志。

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePadlock(线条)

创建一个新的笔记标签与Padlock图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePaperClip(线条)

创建一个新的笔记标签,使用 PaperClip 图标和指定标志。

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePen(线条)

创建一个新的笔记标签与笔图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePersonWithExclamationMark(线条)

创建一个新的笔记标签,使用 PersonWithExclamationMark 图标和指定标志。

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePinkSquare(线条)

创建一个新的笔记标签与PinkSquare图标和指定的标志。

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePlane(线条)

创建一个新的笔记标签与飞机图标和指定的标志。

public static NoteTag CreatePlane(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePresentationSlide(线条)

创建一个新的笔记标签,使用 PresentationSlide 图标和指定标志。

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreatePushpin(线条)

创建一个新的笔记标签,包含 Pushpin 图标和指定标志。

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateQuestionBalloon(线条)

创建一个新的笔记标签,包含 QuestionBalloon 图标和指定的标志。

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateQuestionMark(线条)

创建一个新的笔记标签,包含 QuestionMark 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateQuotationMark(线条)

创建一个新的笔记标签与 QuotationMark 图标和指定的标志。

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateRedSquare(线条)

创建一个新的笔记标签与RedSquare图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateReminderBell(线条)

创建一个新的笔记标签,使用 ReminderBell 图标和指定标志。

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateResearch(线条)

创建一个新的笔记标签与研究图标和指定的标志。

public static NoteTag CreateResearch(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateRoseOnStem(线条)

创建一个新的笔记标签与RoseOnStem图标和指定的标志。

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateScheduledTask(线条)

创建一个新的笔记标签,使用 ScheduledTask 图标和指定标志。

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateSmilingFace(线条)

创建一个新的笔记标签,使用 SmilingFace 图标和指定标志。

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateSunflower(线条)

创建一个新的笔记标签,配有 Sunflower 图标和指定标志。

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateTelephoneWithClock(线条)

创建一个新的笔记标签与TelephoneWithClock图标和指定标志。

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateTimeSensitive(线条)

创建一个新的标签与 TimeSensitive 图标和指定的标记。

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateTwoPeople(线条)

创建一个新的笔记标签与 TwoPeople 图标和指定的标志。

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowCheckMark(线条)

创建一个新的笔记标签,使用 YellowCheckMark 图标和指定的标志。

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowCircle(线条)

创建一个新的笔记标签,使用 YellowCircle 图标和指定的标志。

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowCircle1(线条)

创建一个新的笔记标签,使用 YellowCircle1 图标和指定的标志。

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowCircle2(线条)

创建一个新的笔记标签,使用 YellowCircle2 图标和指定标志。

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowCircle3(线条)

创建一个新的笔记标签,使用 YellowCircle3 图标和指定的标志。

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowDownArrow(线条)

创建一个新的笔记标签,使用 YellowDownArrow 图标和指定标志。

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowEightPointStar(线条)

创建一个新的笔记标签,使用 YellowEightPointStar 图标和指定标志。

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowKey(线条)

创建一个新的笔记标签与YellowKey图标和指定的标志。

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowLeftArrow(线条)

创建一个新的笔记标签,使用 YellowLeftArrow 图标和指定的标志。

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowRightArrow(线条)

创建一个新的笔记标签,使用 YellowRightArrow 图标和指定的标志。

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowSolidTarget(线条)

创建一个新的笔记标签,使用 YellowSolidTarget 图标和指定的标志。

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowSquare(线条)

创建一个新的笔记标签,使用 YellowSquare 图标和指定标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowStar(线条)

创建一个新的笔记标签与YellowStar图标和指定的标志。

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

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowSun(线条)

创建一个新的笔记标签与YellowSun图标和指定的标志。

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowTarget(线条)

创建一个新的笔记标签,使用 YellowTarget 图标和指定标志。

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowTriangle(线条)

创建一个新的标签与YellowTriangle图标和指定的标记。

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowUmbrella(线条)

创建一个新的笔记标签,使用 YellowUmbrella 图标和指定标志。

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

CreateYellowUpArrow(线条)

创建一个新的笔记标签与 YellowUpArrow 图标和指定标志。

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建YellowX(线条)

创建一个新的笔记标签与YellowX图标和指定的标志。

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.NoteTag

创建YellowXWithDots(线条)

创建一个新的笔记标签,使用 YellowXWithDots 图标和指定的标志。

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

标签的标志。

Returns

NoteTag

此分類上一篇: WL31_.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()

作为该类型的Hash函数。

public override int GetHashCode()

Returns

int

此分類上一篇: Int32

 中文