Class NoteTag
ชื่อพื้นที่: Aspose.Note การประกอบ: Aspose.Note.dll (25.4.0)
แสดงหมายเลข
public sealed class NoteTag : INoteTag, ITag, IEquatable<notetag>
Inheritance
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);
แสดงวิธีเพิ่ม paragraph ใหม่ด้วย tag
// The path to the documents directory.
string dataDir = RunExamples.GetDataDir_Tags();
// Create an object of the Document class
Document doc = new Document();
// Initialize Page class object
Aspose.Note.Page page = new Aspose.Note.Page(doc);
// Initialize Outline class object
Outline outline = new Outline(doc);
// Initialize OutlineElement class object
OutlineElement outlineElem = new OutlineElement(doc);
ParagraphStyle textStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
RichText text = new RichText(doc) { Text = "OneNote text.", ParagraphStyle = textStyle };
text.Tags.Add(NoteTag.CreateYellowStar());
// Add text node
outlineElem.AppendChildLast(text);
// Add outline element node
outline.AppendChildLast(outlineElem);
// Add outline node
page.AppendChildLast(outline);
// Add page node
doc.AppendChildLast(page);
// Save OneNote document
dataDir = dataDir + "AddTextNodeWithTag_out.one";
doc.Save(dataDir);
แสดงวิธีการเข้าถึงรายละเอียดของแท็ก
// 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; }
คุณสมบัติมูลค่า
FontColor
รับหรือตั้งค่าสีอักษร
public Color FontColor { get; set; }
คุณสมบัติมูลค่า
Highlight
รับหรือตั้งค่าสีที่โดดเด่น
public Color Highlight { get; set; }
คุณสมบัติมูลค่า
Icon
รับหรือตั้งค่าไอคอน
public TagIcon Icon { get; set; }
คุณสมบัติมูลค่า
Label
รับหรือตั้งค่าข้อความฉลาก
public string Label { get; set; }
คุณสมบัติมูลค่า
Status
ได้รับหรือตั้งค่าสถานะ
public TagStatus Status { get; }
คุณสมบัติมูลค่า
Methods
CreateAwardRibbon(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน AwardRibbon และแท็บที่ระบุ
public static NoteTag CreateAwardRibbon(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBinoculars(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Binoculars และแท็บที่ระบุ
public static NoteTag CreateBinoculars(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlankPaperWithLines(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน BlankPaperWithLines และแท็บที่ระบุ
public static NoteTag CreateBlankPaperWithLines(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueCheckMark(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueCheckMark และแท็บที่ระบุ
public static NoteTag CreateBlueCheckMark(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueCircle(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueCircle และแท็บที่ระบุ
public static NoteTag CreateBlueCircle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueCircle1(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueCircle1 และแท็บที่ระบุ
public static NoteTag CreateBlueCircle1(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueCircle2(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueCircle2 และแท็บที่ระบุ
public static NoteTag CreateBlueCircle2(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueCircle3(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueCircle3 และแท็บที่ระบุ
public static NoteTag CreateBlueCircle3(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueDownArrow(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueDownArrow และแท็บที่ระบุ
public static NoteTag CreateBlueDownArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueEightPointStar(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueEightPointStar และแท็บที่ระบุ
public static NoteTag CreateBlueEightPointStar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueFollowUpFlag(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueFollowUpFlag และแท็บที่ระบุ
public static NoteTag CreateBlueFollowUpFlag(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueLeftArrow(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueLeftArrow และแท็บที่ระบุ
public static NoteTag CreateBlueLeftArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueRightArrow(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueRightArrow และแท็บที่ระบุ
public static NoteTag CreateBlueRightArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueSolidTarget(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueSolidTarget และแท็บที่ระบุ
public static NoteTag CreateBlueSolidTarget(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueSquare(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueSquare และแท็บที่ระบุ
public static NoteTag CreateBlueSquare(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueStar(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueStar และแท็บที่ระบุ
public static NoteTag CreateBlueStar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueSun(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueSun และแท็บที่ระบุ
public static NoteTag CreateBlueSun(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueTarget(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueTarget และแท็บที่ระบุ
public static NoteTag CreateBlueTarget(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueTriangle(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueTriangle และแท็บที่ระบุ
public static NoteTag CreateBlueTriangle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueUmbrella(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueUmbrella และแท็บที่ระบุ
public static NoteTag CreateBlueUmbrella(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateBlueUpArrow(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueUpArrow และแท็บที่ระบุ
public static NoteTag CreateBlueUpArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
การสร้างBlueXNo(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueXNo และแท็บที่ระบุ
public static NoteTag CreateBlueXNo(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
สร้างBlueXWithDots(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน BlueXWithDots และแท็บที่ระบุ
public static NoteTag CreateBlueXWithDots(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateCalendarDateWithClock(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน CalendarDateWithClock และแท็บที่ระบุ
public static NoteTag CreateCalendarDateWithClock(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateCar(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอนรถยนต์และแท็บที่ระบุ
public static NoteTag CreateCar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateClosedEnvelope(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน ClosedEnvelope และแท็บที่ระบุ
public static NoteTag CreateClosedEnvelope(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateCloud(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอนคลาวด์และแท็บที่ระบุ
public static NoteTag CreateCloud(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateCoinsWithWindowBackdrop(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน CoinsWithWindowBackdrop และแท็บที่ระบุ
public static NoteTag CreateCoinsWithWindowBackdrop(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateCommentBubble(รั้ว)
สร้างแท็กการแจ้งเตือนใหม่ที่มีไอคอน CommentBubble และแท็บที่ระบุ
public static NoteTag CreateCommentBubble(string label = "Remember for blog")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateContactInformation(รั้ว)
สร้างแท็กการแจ้งเตือนใหม่ที่มีไอคอน ContactInformation และแท็บที่ระบุ
public static NoteTag CreateContactInformation(string label = "Phone number")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateContactPersonOnCard(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน ContactPersonOnCard และแท็บที่ระบุ
public static NoteTag CreateContactPersonOnCard(string label = "Contact")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateDollarSign(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน DollarSign และแท็บที่ระบุ
public static NoteTag CreateDollarSign(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
การสร้างอีเมล(รั้ว)
สร้างแท็กการแจ้งเตือนใหม่ที่มีไอคอนอีเมลและแท็บที่ระบุ
public static NoteTag CreateEMailMessage(string label = "Send in email")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateFrowningFace(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน FrowningFace และแท็บที่ระบุ
public static NoteTag CreateFrowningFace(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGlobe(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Globe และแท็บที่ระบุ
public static NoteTag CreateGlobe(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenCheckMark(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน GreenCheckMark และแท็บที่ระบุ
public static NoteTag CreateGreenCheckMark(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenCircle(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenCircle และแท็บที่ระบุ
public static NoteTag CreateGreenCircle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenCircle1(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenCircle1 และแท็บที่ระบุ
public static NoteTag CreateGreenCircle1(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenCircle2(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenCircle2 และแท็บที่ระบุ
public static NoteTag CreateGreenCircle2(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenCircle3(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenCircle3 และแท็บที่ระบุ
public static NoteTag CreateGreenCircle3(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenDownArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenDownArrow และแท็บที่ระบุ
public static NoteTag CreateGreenDownArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenEightPointStar(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน GreenEightPointStar และแท็บที่ระบุ
public static NoteTag CreateGreenEightPointStar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenLeftArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenLeftArrow และแท็บที่ระบุ
public static NoteTag CreateGreenLeftArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenRightArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenRightArrow และแท็บที่ระบุ
public static NoteTag CreateGreenRightArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenSolidArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenSolidArrow และแท็บที่ระบุ
public static NoteTag CreateGreenSolidArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenSquare(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenSquare และแท็บที่ระบุ
public static NoteTag CreateGreenSquare(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenStar(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenStar และแท็บที่ระบุ
public static NoteTag CreateGreenStar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenSun(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenSun และแท็บที่ระบุ
public static NoteTag CreateGreenSun(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenTarget(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenTarget และแท็บที่ระบุ
public static NoteTag CreateGreenTarget(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenTriangle(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenTriangle และแท็บที่ระบุ
public static NoteTag CreateGreenTriangle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenUmbrella(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenUmbrella และแท็บที่ระบุ
public static NoteTag CreateGreenUmbrella(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateGreenUpArrow(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน GreenUpArrow และแท็บที่ระบุ
public static NoteTag CreateGreenUpArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
สร้างGreenXNo(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน GreenXNo และแท็บที่ระบุ
public static NoteTag CreateGreenXNo(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
สร้างGreenXWithDots(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน GreenXWithDots และแท็บที่ระบุ
public static NoteTag CreateGreenXWithDots(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateHeart(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอนหัวใจและแท็บที่ระบุ
public static NoteTag CreateHeart(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateHighPriority(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน HighPriority และแท็บที่ระบุ
public static NoteTag CreateHighPriority(string label = "Critical")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateHome(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน Home และแท็บที่ระบุ
public static NoteTag CreateHome(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateHyperlinkGlobe(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน HyperlinkGlobe และแท็บที่ระบุ
public static NoteTag CreateHyperlinkGlobe(string label = "Web site to visit")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateInstantMessagingContactPerson(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน InstantMessagingContactPerson และแท็บที่ระบุ
public static NoteTag CreateInstantMessagingContactPerson(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateLaptop(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอนแล็ปท็อปและแท็บที่ระบุ
public static NoteTag CreateLaptop(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateLightBulb(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน LightBulb และแท็บที่ระบุ
public static NoteTag CreateLightBulb(string label = "Idea")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateLightningBolt(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน LightningBolt และแท็บที่ระบุ
public static NoteTag CreateLightningBolt(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateMeeting(รั้ว)
สร้างแท็กการแจ้งเตือนใหม่ที่มีไอคอนการประชุมและแท็บที่ระบุ
public static NoteTag CreateMeeting(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateMobilePhone(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน MobilePhone และแท็บที่ระบุ
public static NoteTag CreateMobilePhone(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateMovieClip(รั้ว)
สร้างแท็กการบันทึกใหม่ที่มีไอคอน MovieClip และแท็บที่ระบุ
public static NoteTag CreateMovieClip(string label = "Movie to see")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateMusicalNote(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน MusicalNote และแท็บที่ระบุ
public static NoteTag CreateMusicalNote(string label = "Music to listen to")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateNoIcon(รั้ว)
สร้างแท็กบันทึกใหม่โดยไม่มีไอคอนและมีแท็บที่ระบุ
public static NoteTag CreateNoIcon(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateNotebookWithClock(รั้ว)
สร้างแท็กการบันทึกใหม่พร้อมไอคอน NotebookWithClock และแท็บที่ระบุ
public static NoteTag CreateNotebookWithClock(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateOpenBook(รั้ว)
สร้างแท็กการบันทึกใหม่พร้อมไอคอน OpenBook และแท็บที่ระบุ
public static NoteTag CreateOpenBook(string label = "Book to read")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateOpenEnvelope(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน OpenEnvelope และแท็บที่ระบุ
public static NoteTag CreateOpenEnvelope(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateOrangeSquare(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน OrangeSquare และแท็บที่ระบุ
public static NoteTag CreateOrangeSquare(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePadlock(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Padlock และแท็บที่ระบุ
public static NoteTag CreatePadlock(string label = "Password")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePaperClip(รั้ว)
สร้างแท็กการบันทึกใหม่ที่มีไอคอน PaperClip และแท็บที่ระบุ
public static NoteTag CreatePaperClip(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePen(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Pen และแท็บที่ระบุ
public static NoteTag CreatePen(string label = "Highlight")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePersonWithExclamationMark(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน PersonWithExclamationMark และแท็บที่ระบุ
public static NoteTag CreatePersonWithExclamationMark(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePinkSquare(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน PinkSquare และแท็บที่ระบุ
public static NoteTag CreatePinkSquare(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePlane(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอนเครื่องบินและแท็บที่ระบุ
public static NoteTag CreatePlane(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePresentationSlide(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน PresentationSlide และแท็บที่ระบุ
public static NoteTag CreatePresentationSlide(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreatePushpin(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Pushpin และแท็บที่ระบุ
public static NoteTag CreatePushpin(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateQuestionBalloon(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน QuestionBalloon และแท็บที่ระบุ
public static NoteTag CreateQuestionBalloon(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateQuestionMark(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน QuestionMark และแท็บที่ระบุ
public static NoteTag CreateQuestionMark(string label = "Question")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateQuotationMark(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน QuotationMark และแท็บที่ระบุ
public static NoteTag CreateQuotationMark(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateRedSquare(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน RedSquare และแท็บที่ระบุ
public static NoteTag CreateRedSquare(string label = "Project A")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateReminderBell(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน ReminderBell และแท็บที่ระบุ
public static NoteTag CreateReminderBell(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateResearch(รั้ว)
สร้างแท็กการบันทึกใหม่ที่มีไอคอนการวิจัยและแท็บที่ระบุ
public static NoteTag CreateResearch(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateRoseOnStem(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน RoseOnStem และแท็บที่ระบุ
public static NoteTag CreateRoseOnStem(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateScheduledTask(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน ScheduledTask และแท็บที่ระบุ
public static NoteTag CreateScheduledTask(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateSmilingFace(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน SmilingFace และแท็บที่ระบุ
public static NoteTag CreateSmilingFace(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateSunflower(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน Sunflower และแท็บที่ระบุ
public static NoteTag CreateSunflower(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateTelephoneWithClock(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน TelephoneWithClock และแท็บที่ระบุ
public static NoteTag CreateTelephoneWithClock(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateTimeSensitive(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน TimeSensitive และแท็บที่ระบุ
public static NoteTag CreateTimeSensitive(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateTwoPeople(รั้ว)
สร้างแท็กหมายเลขใหม่พร้อมไอคอน TwoPeople และแท็บที่ระบุ
public static NoteTag CreateTwoPeople(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowCheckMark(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowCheckMark และแท็บที่ระบุ
public static NoteTag CreateYellowCheckMark(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowCircle(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowCircle และแท็บที่ระบุ
public static NoteTag CreateYellowCircle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowCircle1(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowCircle1 และแท็บที่ระบุ
public static NoteTag CreateYellowCircle1(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowCircle2(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowCircle2 และแท็บที่ระบุ
public static NoteTag CreateYellowCircle2(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowCircle3(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowCircle3 และแท็บที่ระบุ
public static NoteTag CreateYellowCircle3(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowDownArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowDownArrow และแท็บที่ระบุ
public static NoteTag CreateYellowDownArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowEightPointStar(รั้ว)
สร้างแท็กหมายเลขใหม่ด้วยไอคอน YellowEightPointStar และแท็บที่ระบุ
public static NoteTag CreateYellowEightPointStar(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowKey(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowKey และแท็บที่ระบุ
public static NoteTag CreateYellowKey(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowLeftArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowLeftArrow และแท็บที่ระบุ
public static NoteTag CreateYellowLeftArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowRightArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowRightArrow และแท็บที่ระบุ
public static NoteTag CreateYellowRightArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowSolidTarget(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowSolidTarget และแท็บที่ระบุ
public static NoteTag CreateYellowSolidTarget(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowSquare(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowSquare และแท็บที่ระบุ
public static NoteTag CreateYellowSquare(string label = "Project B")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowStar(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowStar และแท็บที่ระบุ
public static NoteTag CreateYellowStar(string label = "Important")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowSun(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowSun และแท็บที่ระบุ
public static NoteTag CreateYellowSun(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowTarget(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowTarget และแท็บที่ระบุ
public static NoteTag CreateYellowTarget(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowTriangle(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowTriangle และฉลากที่ระบุ
public static NoteTag CreateYellowTriangle(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowUmbrella(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowUmbrella และแท็บที่ระบุ
public static NoteTag CreateYellowUmbrella(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
CreateYellowUpArrow(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowUpArrow และแท็บที่ระบุ
public static NoteTag CreateYellowUpArrow(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
การสร้างYellowX(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowX และแท็บที่ระบุ
public static NoteTag CreateYellowX(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
สร้างYellowXWithDots(รั้ว)
สร้างแท็กหมายเลขใหม่ที่มีไอคอน YellowXWithDots และแท็บที่ระบุ
public static NoteTag CreateYellowXWithDots(string label = "")
Parameters
label
string
แท็กของแท็ก
Returns
Aspose.Note.NoteTag
Equals(วัตถุ)
จะกําหนดว่าวัตถุที่ระบุเท่ากับวัตถุปัจจุบันหรือไม่
public override bool Equals(object obj)
Parameters
obj
object
วัตถุ
Returns
ระบบ Boolean
Equals(NoteTag)
จะกําหนดว่าวัตถุที่ระบุเท่ากับวัตถุปัจจุบันหรือไม่
public bool Equals(NoteTag other)
Parameters
other
NoteTag
วัตถุ
Returns
ระบบ Boolean
GetHashCode()
ใช้เป็นฟังก์ชั่น hash สําหรับประเภท
public override int GetHashCode()
Returns
ระบบ.Int32