Class NoteTag

Class NoteTag

Nazwa przestrzeń: Aspose.Note Zgromadzenie: Aspose.Note.dll (25.4.0)

Przedstawiamy notatkę.

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

Inheritance

object NoteTag

Implements

INoteTag , ITag , IEquatable

Dziedziczeni członkowie

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

Examples

Pokaż, jak dodać nowy obraz z tagem.

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

Pokaż, jak dodać nowy paragraf z tagem.

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

Pokaż, jak uzyskać dostęp do szczegółów etykiety.

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

Pokaż, jak dodać nową tabelę z tagem.

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

Pokaż, jak przygotować szablon na spotkanie tygodniowe.

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

Zostaw lub ustaw ukończony czas.

public DateTime? CompletedTime { get; }

Wartość nieruchomości

DateTime ?

CreationTime

Otrzymuje lub ustala czas tworzenia.

public DateTime CreationTime { get; set; }

Wartość nieruchomości

DateTime

FontColor

Dostęp lub ustaw kolor czcionki.

public Color FontColor { get; set; }

Wartość nieruchomości

Color

Highlight

Uzyskuje lub ustawia kolor podkreślenia.

public Color Highlight { get; set; }

Wartość nieruchomości

Color

Icon

Zostaw lub ustaw ikonę.

public TagIcon Icon { get; set; }

Wartość nieruchomości

TagIcon

Label

Dostęp lub ustaw etykietę tekstu.

public string Label { get; set; }

Wartość nieruchomości

string

Status

Dostęp lub ustawienie statusu.

public TagStatus Status { get; }

Wartość nieruchomości

TagStatus

Methods

CreateAwardRibbon(strumień)

Tworzenie nowej etykiety z ikoną AwardRibbon i określoną etyką.

public static NoteTag CreateAwardRibbon(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBinoculars(strumień)

Tworzenie nowej etykiety z ikoną Binoculars i określoną etyką.

public static NoteTag CreateBinoculars(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlankPaperWithLines(strumień)

Tworzenie nowej etykiety z ikoną BlankPaperWithLines i określoną etyką.

public static NoteTag CreateBlankPaperWithLines(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueCheckMark(strumień)

Tworzenie nowej etykiety z ikoną BlueCheckMark i określoną etyką.

public static NoteTag CreateBlueCheckMark(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueCircle(strumień)

Tworzenie nowej etykiety z ikoną BlueCircle i określoną etyką.

public static NoteTag CreateBlueCircle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueCircle1(strumień)

Tworzenie nowej etykiety z ikoną BlueCircle1 i określoną etyką.

public static NoteTag CreateBlueCircle1(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueCircle2(strumień)

Tworzenie nowej etykiety z ikoną BlueCircle2 i określoną etyką.

public static NoteTag CreateBlueCircle2(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueCircle3(strumień)

Tworzenie nowej etykiety z ikoną BlueCircle3 i określoną etyką.

public static NoteTag CreateBlueCircle3(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueDownArrow(strumień)

Tworzenie nowej etykiety z ikoną BlueDownArrow i określoną etyką.

public static NoteTag CreateBlueDownArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueEightPointStar(strumień)

Tworzenie nowej etykiety z ikoną BlueEightPointStar i określoną etyką.

public static NoteTag CreateBlueEightPointStar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueFollowUpFlag(strumień)

Tworzenie nowej etykiety z ikoną BlueFollowUpFlag i określoną etyką.

public static NoteTag CreateBlueFollowUpFlag(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueLeftArrow(strumień)

Tworzenie nowej etykiety z ikoną BlueLeftArrow i określoną etyką.

public static NoteTag CreateBlueLeftArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueRightArrow(strumień)

Tworzenie nowej etykiety z ikoną BlueRightArrow i określoną etyką.

public static NoteTag CreateBlueRightArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueSolidTarget(strumień)

Tworzenie nowej etykiety z ikoną BlueSolidTarget i określoną etyką.

public static NoteTag CreateBlueSolidTarget(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueSquare(strumień)

Tworzenie nowej etykiety z ikoną BlueSquare i określoną etyką.

public static NoteTag CreateBlueSquare(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueStar(strumień)

Tworzenie nowej etykiety z ikoną BlueStar i określoną etyką.

public static NoteTag CreateBlueStar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueSun(strumień)

Tworzenie nowej etykiety z ikoną BlueSun i określoną etyką.

public static NoteTag CreateBlueSun(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueTarget(strumień)

Tworzenie nowej etykiety z ikoną BlueTarget i określoną etyką.

public static NoteTag CreateBlueTarget(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueTriangle(strumień)

Tworzenie nowej etykiety z ikoną BlueTriangle i określoną etyką.

public static NoteTag CreateBlueTriangle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueUmbrella(strumień)

Tworzenie nowej etykiety z ikoną BlueUmbrella i określoną etyką.

public static NoteTag CreateBlueUmbrella(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateBlueUpArrow(strumień)

Tworzenie nowej etykiety z ikoną BlueUpArrow i określoną etyką.

public static NoteTag CreateBlueUpArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieBlueXNo(strumień)

Tworzenie nowej etykiety z ikoną BlueXNo i określoną etyką.

public static NoteTag CreateBlueXNo(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieBlueXWithDots(strumień)

Tworzenie nowej etykiety z ikoną BlueXWithDots i określoną etyką.

public static NoteTag CreateBlueXWithDots(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateCalendarDateWithClock(strumień)

Tworzenie nowej etykiety notatek z ikoną CalendarDateWithClock i określoną etyką.

public static NoteTag CreateCalendarDateWithClock(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateCar(strumień)

Tworzenie nowej etykiety z ikoną samochodu i określoną etyką.

public static NoteTag CreateCar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateClosedEnvelope(strumień)

Tworzenie nowej etykiety z ikoną ClosedEnvelope i określoną etyką.

public static NoteTag CreateClosedEnvelope(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateCloud(strumień)

Tworzenie nowej etykiety z ikoną chmury i określoną etyką.

public static NoteTag CreateCloud(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateCoinsWithWindowBackdrop(strumień)

Stwórz nową etykietę notatek za pomocą ikony CoinsWithWindowBackdrop i określonych etyków.

public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateCommentBubble(strumień)

Stwórz nową etykietę notatek za pomocą ikony CommentBubble i określonych etyków.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateContactInformation(strumień)

Tworzenie nowej etykiety z ikoną ContactInformation i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateContactPersonOnCard(strumień)

Tworzenie nowej etykiety z ikoną ContactPersonOnCard i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateDollarSign(strumień)

Tworzenie nowej etykiety z ikoną DollarSign i określoną etyką.

public static NoteTag CreateDollarSign(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

Tworzenie wiadomości(strumień)

Stwórz nową etykietę notatek z ikoną EMailMessage i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateFrowningFace(strumień)

Tworzenie nowej etykiety z ikoną FrowningFace i określoną etyką.

public static NoteTag CreateFrowningFace(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGlobe(strumień)

Tworzy nowy znak notatek z ikoną Globe i określoną etykietą.

public static NoteTag CreateGlobe(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenCheckMark(strumień)

Tworzenie nowej etykiety z ikoną GreenCheckMark i określoną etyką.

public static NoteTag CreateGreenCheckMark(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenCircle(strumień)

Tworzenie nowej etykiety z ikoną GreenCircle i określoną etyką.

public static NoteTag CreateGreenCircle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenCircle1(strumień)

Tworzenie nowej etykiety z ikoną GreenCircle1 i określoną etyką.

public static NoteTag CreateGreenCircle1(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenCircle2(strumień)

Tworzenie nowej etykiety z ikoną GreenCircle2 i określoną etyką.

public static NoteTag CreateGreenCircle2(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenCircle3(strumień)

Tworzenie nowej etykiety z ikoną GreenCircle3 i określoną etyką.

public static NoteTag CreateGreenCircle3(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenDownArrow(strumień)

Tworzenie nowej etykiety z ikoną GreenDownArrow i określoną etyką.

public static NoteTag CreateGreenDownArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenEightPointStar(strumień)

Stwórz nową etykietę notatek za pomocą ikony GreenEightPointStar i określonego oznakowania.

public static NoteTag CreateGreenEightPointStar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenLeftArrow(strumień)

Tworzenie nowej etykiety z ikoną GreenLeftArrow i określoną etyką.

public static NoteTag CreateGreenLeftArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenRightArrow(strumień)

Tworzenie nowej etykiety z ikoną GreenRightArrow i określoną etyką.

public static NoteTag CreateGreenRightArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenSolidArrow(strumień)

Tworzenie nowej etykiety z ikoną GreenSolidArrow i określoną etyką.

public static NoteTag CreateGreenSolidArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenSquare(strumień)

Tworzenie nowej etykiety z ikoną GreenSquare i określoną etyką.

public static NoteTag CreateGreenSquare(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenStar(strumień)

Tworzenie nowej etykiety z ikoną GreenStar i określoną etyką.

public static NoteTag CreateGreenStar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenSun(strumień)

Tworzenie nowej etykiety z ikoną GreenSun i określoną etyką.

public static NoteTag CreateGreenSun(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenTarget(strumień)

Tworzenie nowej etykiety z ikoną GreenTarget i określoną etyką.

public static NoteTag CreateGreenTarget(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenTriangle(strumień)

Tworzenie nowej etykiety z ikoną GreenTriangle i określoną etyką.

public static NoteTag CreateGreenTriangle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenUmbrella(strumień)

Tworzenie nowej etykiety z ikoną GreenUmbrella i określoną etyką.

public static NoteTag CreateGreenUmbrella(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateGreenUpArrow(strumień)

Tworzenie nowej etykiety z ikoną GreenUpArrow i określoną etyką.

public static NoteTag CreateGreenUpArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieGreenXNo(strumień)

Tworzenie nowej etykiety z ikoną GreenXNo i określoną etyką.

public static NoteTag CreateGreenXNo(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieGreenXWithDots(strumień)

Tworzenie nowej etykiety z ikoną GreenXWithDots i określoną etyką.

public static NoteTag CreateGreenXWithDots(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateHeart(strumień)

Tworzenie nowej etykiety z ikoną serca i określoną etyką.

public static NoteTag CreateHeart(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateHighPriority(strumień)

Tworzenie nowej etykiety z ikoną HighPriority i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateHome(strumień)

Tworzenie nowej etykiety z ikoną Home i określoną etyką.

public static NoteTag CreateHome(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateHyperlinkGlobe(strumień)

Tworzenie nowej etykiety z ikoną HyperlinkGlobe i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateInstantMessagingContactPerson(strumień)

Stwórz nową etykietę notatek za pomocą ikony InstantMessagingContactPerson i określonych etyków.

public static NoteTag CreateInstantMessagingContactPerson(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateLaptop(strumień)

Tworzenie nowej etykiety z ikoną laptopa i określoną etyką.

public static NoteTag CreateLaptop(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateLightBulb(strumień)

Tworzenie nowej etykiety z ikoną LightBulb i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateLightningBolt(strumień)

Tworzenie nowej etykiety z ikoną LightningBolt i określoną etyką.

public static NoteTag CreateLightningBolt(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateMeeting(strumień)

Stwórz nową etykietę notatek z ikoną Spotkania i określoną etyką.

public static NoteTag CreateMeeting(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateMobilePhone(strumień)

Tworzenie nowej etykiety z ikoną MobilePhone i określoną etyką.

public static NoteTag CreateMobilePhone(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateMovieClip(strumień)

Tworzenie nowej etykiety z ikoną MovieClip i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateMusicalNote(strumień)

Tworzenie nowej etykiety z ikoną MusicalNote i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateNoIcon(strumień)

Tworzy nowy znak notatek bez ikony i z określoną etykietą.

public static NoteTag CreateNoIcon(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateNotebookWithClock(strumień)

Tworzenie nowej etykiety notatek z ikoną NotebookWithClock i określoną etyką.

public static NoteTag CreateNotebookWithClock(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateOpenBook(strumień)

Tworzenie nowej etykiety z ikoną OpenBook i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateOpenEnvelope(strumień)

Tworzenie nowej etykiety z ikoną OpenEnvelope i określoną etyką.

public static NoteTag CreateOpenEnvelope(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateOrangeSquare(strumień)

Tworzenie nowej etykiety z ikoną OrangeSquare i określoną etyką.

public static NoteTag CreateOrangeSquare(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePadlock(strumień)

Tworzenie nowej etykiety z ikoną Padlock i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePaperClip(strumień)

Tworzenie nowej etykiety z ikoną PaperClip i określoną etyką.

public static NoteTag CreatePaperClip(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePen(strumień)

Tworzenie nowej etykiety z ikoną Pen i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePersonWithExclamationMark(strumień)

Tworzenie nowej etykiety z ikoną PersonWithExclamationMark i określoną etyką.

public static NoteTag CreatePersonWithExclamationMark(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePinkSquare(strumień)

Tworzenie nowej etykiety z ikoną PinkSquare i określoną etyką.

public static NoteTag CreatePinkSquare(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePlane(strumień)

Stwórz nową etykietę z ikoną Plane i określoną etyką.

public static NoteTag CreatePlane(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePresentationSlide(strumień)

Tworzenie nowej etykiety z ikoną PresentationSlide i określoną etyką.

public static NoteTag CreatePresentationSlide(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreatePushpin(strumień)

Tworzenie nowej etykiety z ikoną Pushpin i określoną etyką.

public static NoteTag CreatePushpin(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateQuestionBalloon(strumień)

Tworzenie nowej etykiety z ikoną QuestionBalloon i określoną etyką.

public static NoteTag CreateQuestionBalloon(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateQuestionMark(strumień)

Tworzenie nowej etykiety z ikoną QuestionMark i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateQuotationMark(strumień)

Tworzenie nowej etykiety z ikoną QuotationMark i określoną etyką.

public static NoteTag CreateQuotationMark(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateRedSquare(strumień)

Tworzenie nowej etykiety z ikoną RedSquare i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateReminderBell(strumień)

Stwórz nową etykietę notatek za pomocą ikony ReminderBell i określonych etyków.

public static NoteTag CreateReminderBell(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateResearch(strumień)

Tworzenie nowej etykiety z ikoną badań i określoną etyką.

public static NoteTag CreateResearch(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateRoseOnStem(strumień)

Tworzenie nowej etykiety z ikoną RoseOnStem i określoną etyką.

public static NoteTag CreateRoseOnStem(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateScheduledTask(strumień)

Tworzenie nowej etykiety z ikoną ScheduledTask i określoną etyką.

public static NoteTag CreateScheduledTask(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateSmilingFace(strumień)

Tworzenie nowej etykiety z ikoną SmilingFace i określoną etyką.

public static NoteTag CreateSmilingFace(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateSunflower(strumień)

Tworzenie nowej etykiety z ikoną Sunflower i określoną etyką.

public static NoteTag CreateSunflower(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateTelephoneWithClock(strumień)

Tworzenie nowej etykiety z ikoną TelephoneWithClock i określoną etyką.

public static NoteTag CreateTelephoneWithClock(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateTimeSensitive(strumień)

Tworzenie nowej etykiety z ikoną TimeSensitive i określoną etyką.

public static NoteTag CreateTimeSensitive(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateTwoPeople(strumień)

Tworzenie nowej etykiety z ikoną TwoPeople i określoną etyką.

public static NoteTag CreateTwoPeople(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowCheckMark(strumień)

Tworzenie nowej etykiety z ikoną YellowCheckMark i określoną etyką.

public static NoteTag CreateYellowCheckMark(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowCircle(strumień)

Tworzenie nowej etykiety z ikoną YellowCircle i określoną etyką.

public static NoteTag CreateYellowCircle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowCircle1(strumień)

Tworzenie nowej etykiety z ikoną YellowCircle1 i określoną etyką.

public static NoteTag CreateYellowCircle1(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowCircle2(strumień)

Tworzenie nowej etykiety z ikoną YellowCircle2 i określoną etyką.

public static NoteTag CreateYellowCircle2(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowCircle3(strumień)

Tworzenie nowej etykiety z ikoną YellowCircle3 i określoną etyką.

public static NoteTag CreateYellowCircle3(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowDownArrow(strumień)

Tworzenie nowej etykiety z ikoną YellowDownArrow i określoną etyką.

public static NoteTag CreateYellowDownArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowEightPointStar(strumień)

Tworzenie nowej etykiety z ikoną YellowEightPointStar i określoną etyką.

public static NoteTag CreateYellowEightPointStar(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowKey(strumień)

Tworzenie nowej etykiety z ikoną YellowKey i określoną etyką.

public static NoteTag CreateYellowKey(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowLeftArrow(strumień)

Tworzenie nowej etykiety z ikoną YellowLeftArrow i określoną etyką.

public static NoteTag CreateYellowLeftArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowRightArrow(strumień)

Tworzenie nowej etykiety z ikoną YellowRightArrow i określoną etyką.

public static NoteTag CreateYellowRightArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowSolidTarget(strumień)

Tworzenie nowej etykiety z ikoną YellowSolidTarget i określoną etyką.

public static NoteTag CreateYellowSolidTarget(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowSquare(strumień)

Tworzenie nowej etykiety z ikoną YellowSquare i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowStar(strumień)

Tworzenie nowej etykiety z ikoną YellowStar i określoną etyką.

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

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowSun(strumień)

Tworzenie nowej etykiety z ikoną YellowSun i określoną etyką.

public static NoteTag CreateYellowSun(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowTarget(strumień)

Tworzenie nowej etykiety z ikoną YellowTarget i określoną etyką.

public static NoteTag CreateYellowTarget(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowTriangle(strumień)

Tworzenie nowej etykiety z ikoną YellowTriangle i określoną etyką.

public static NoteTag CreateYellowTriangle(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowUmbrella(strumień)

Tworzenie nowej etykiety z ikoną YellowUmbrella i określoną etyką.

public static NoteTag CreateYellowUmbrella(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

CreateYellowUpArrow(strumień)

Tworzenie nowej etykiety z ikoną YellowUpArrow i określoną etyką.

public static NoteTag CreateYellowUpArrow(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieYellowX(strumień)

Tworzenie nowej etykiety z ikoną YellowX i określoną etyką.

public static NoteTag CreateYellowX(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

TworzenieYellowXWithDots(strumień)

Tworzenie nowej etykiety z ikoną YellowXWithDots i określoną etyką.

public static NoteTag CreateYellowXWithDots(string label = "")

Parameters

label string

etykietę z tagu.

Returns

NoteTag

Zestawienie WL31.NoteTag

Equals(Obiekt)

Określa, czy określony obiekt jest równy bieżącemu przedmiotowi.

public override bool Equals(object obj)

Parameters

obj object

z obiektem .

Returns

bool

To jest system. boolean.

Equals(NoteTag)

Określa, czy określony obiekt jest równy bieżącemu przedmiotowi.

public bool Equals(NoteTag other)

Parameters

other NoteTag

z obiektem .

Returns

bool

To jest system. boolean.

GetHashCode()

Służy jako funkcja hash dla tego typu.

public override int GetHashCode()

Returns

int

Występuje w systemie Int32.

 Polski