GroupDocs.Annotation สำหรับ Net API เป็นไลบรารีที่ให้คุณเพิ่มคำอธิบายประกอบลงใน PDF, Word และเอกสารอื่นๆ บน Mac, Windows หรือ Ubuntu GroupDocs.Annotation for Net เป็น Net API แบบเนทีฟสำหรับจัดการคำอธิบายประกอบด้วยการสนับสนุนที่ครอบคลุมสำหรับการสร้าง การเพิ่ม การแก้ไข การลบ การแยก และการส่งออกคำอธิบายประกอบจากรูปภาพและเอกสารอื่นๆ มากมาย รายการรูปแบบเอกสารที่รองรับทั้งหมดที่คุณสามารถดูได้ในหน้า ไลบรารีนี้ช่วยให้คุณทำงานได้ไม่เฉพาะกับเอกสาร XLS เท่านั้น แต่ยังใช้กับเอกสารประเภทอื่นๆ ได้อีกมากมาย เช่น Word, Excel, PowerPoint, อีเมล Outlook, Visio, Adobe, OpenDocument, OpenOffice, Photoshop, AutoCad และอื่นๆ อีกมากมาย GroupDocs.Annotation สำหรับ Net API ช่วยให้คุณสร้างและเพิ่มบันทึกใหม่ แก้ไขคำอธิบายประกอบ แยกความคิดเห็น คำอธิบายประกอบ และลบออกจากเอกสาร ไลบรารีรองรับคำอธิบายประกอบที่แตกต่างกัน 13 ประเภท ได้แก่ ข้อความ โพลีไลน์ พื้นที่ ขีดเส้นใต้ จุด ลายน้ำ ลูกศร วงรี การแทนที่ข้อความ ระยะทาง ช่องข้อความ การแก้ไขทรัพยากรในรูปแบบ PDF, HTML, เอกสาร Microsoft Word, สเปรดชีต, ไดอะแกรม, งานนำเสนอ, ภาพวาด รูปภาพ และรูปแบบไฟล์อื่นๆ อีกมากมาย ตัวอย่าง (โปรดดูด้านล่าง) สาธิตการทำงานกับเอกสาร XLS ในตัวอย่างนี้ คุณสามารถดูขั้นตอนหลักของวิธีการทำงานกับ GroupDocs คำอธิบายประกอบ: ตั้งค่าใบอนุญาต เปิดเอกสารที่คุณต้องการใช้งาน การสร้าง คำอธิบายประกอบ เพิ่มวัตถุข้อมูลเพื่อตั้งค่าคุณสมบัติคำอธิบายประกอบตามความต้องการของคุณ และบันทึกผลลัพธ์ไปยังตำแหน่งที่ต้องการ นอกจากนี้ คุณยังสามารถดูรายละเอียดเพิ่มเติมเกี่ยวกับคุณสมบัติที่รองรับบน Github เพจ หรือในผลิตภัณฑ์ของเรา เอกสารประกอบ.
GroupDocs.Annotation ทำให้นักพัฒนา Net สามารถเพิ่มประเภทคำอธิบายประกอบต่างๆ ลงในไฟล์ XLS ได้อย่างง่ายดายภายในแอปพลิเคชันบน Net โดยดำเนินการตามขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
GroupDocs คำอธิบายประกอบสำหรับ Net API ได้รับการสนับสนุนบนแพลตฟอร์มและระบบปฏิบัติการหลักทั้งหมด ก่อนดำเนินการโค้ดด้านล่าง โปรดตรวจสอบว่าคุณได้ติดตั้งข้อกำหนดเบื้องต้นต่อไปนี้ในระบบของคุณแล้ว
//Add text field annotation to the document from local disk
using (Annotator annotator = new Annotator("input.bmp"))
{
TextFieldAnnotation textField = new TextFieldAnnotation
{
BackgroundColor = 65535,
Box = new Rectangle(100, 100, 100, 100),
CreatedOn = DateTime.Now,
Text = "Some text",
FontColor = 65535,
FontSize = 12,
Message = "This is text field annotation",
Opacity = 0.7,
PageNumber = 0,
PenStyle = PenStyle.Dot,
PenWidth = 3,
FontFamily = "Arial",
TextHorizontalAlignment = HorizontalAlignment.Center,
Replies = new List
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
annotator.Add(textField);
annotator.Save("result.bmp");
}
GroupDocs.Annotation ช่วยให้นักพัฒนา Net สามารถลบรายละเอียดคำอธิบายประกอบออกจากไฟล์ XLS ภายในแอปพลิเคชันบน Net ได้ง่ายขึ้นโดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// 1- How to remove annotation from document using annotation index
using (Annotator annotator = new Annotator("result.bmp"))
{
annotator.Remove(0);
annotator.Save("removed.bmp");
}
// 2- How to remove annotation from document using annotation object
using (Annotator annotator = new Annotator("result.bmp"))
{
var tmp = annotator.Get();
annotator.Remove(tmp[0]);
annotator.Save("removed.bmp");
}
// 3- How to remove some annotations from document using list of ID’s
using (Annotator annotator = new Annotator("result.bmp"))
{
var idList = new List{1, 2, 3};
annotator.Remove(idList);
annotator.Save("removed.bmp");
}
// 4- How to remove some annotations from document using list of annotations
using (Annotator annotator = new Annotator("result.bmp"))
{
var tmp = annotator.Get();
annotator.Remove(tmp);
annotator.Save("removed.bmp");
}
GroupDocs.Annotation ช่วยให้นักพัฒนา Net สามารถอัปเดตคุณสมบัติคำอธิบายประกอบต่างๆ จากไฟล์ XLS ภายในแอปพลิเคชันบน Net ได้ง่ายขึ้น โดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// open annotated document
using (Annotator annotator = new Annotator("result.bmp"))
{
//assuming we are going to change some properties of existing annotation
AreaAnnotation updated = new AreaAnnotation
{
// It's important to set existed annotation Id
Id = 1,
BackgroundColor = 255,
Box = new Rectangle(0, 0, 50, 200),
CreatedOn = DateTime.Now,
Message = "This is updated annotation",
Replies = new List
{
new Reply
{
Comment = "Updated first comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Updated second comment",
RepliedOn = DateTime.Now
}
}
};
// update annotation
annotator.Update(updated);
annotator.Save("result.bmp");
}
GroupDocs.Annotation ช่วยให้นักพัฒนา Net สามารถใส่คำอธิบายประกอบในเอกสารและดึงข้อมูลคำอธิบายประกอบจากไฟล์ XLS ภายในแอปพลิเคชันบน Net ได้ง่ายๆ โดยใช้ขั้นตอนง่ายๆ ไม่กี่ขั้นตอน
// for using this example input file ("annotated.bmp") must be with annotations
using (Annotator annotator = new Annotator("annotated.bmp"))
{
List annotations = annotator.Get();
XmlSerializer formatter = new XmlSerializer(typeof(List));
using (FileStream fs = new FileStream("annotations.xml", FileMode.Create))
{
fs.SetLength(0);
formatter.Serialize(fs, annotations);
}
}
เพิ่ม ลบ แก้ไข และแยกคำอธิบายประกอบลงในไฟล์ XLS ทันทีโดยไปที่เว็บไซต์ GroupDocs.Annotation Live Demos การสาธิตสดมีประโยชน์ดังต่อไปนี้
ไม่จำเป็นต้องดาวน์โหลดเอพีไอ
ไม่จำเป็นต้องเขียนรหัสใดๆ
เพียงแค่อัปโหลดแฟ้มแหล่งที่มา
รับลิงค์ดาวน์โหลดเพื่อบันทึกไฟล์
ไฟล์ที่มีนามสกุล XLS แสดงถึงรูปแบบไฟล์ไบนารีของ Excel ไฟล์ดังกล่าวสามารถสร้างโดย Microsoft Excel เช่นเดียวกับโปรแกรมสเปรดชีตอื่นๆ ที่คล้ายกัน เช่น OpenOffice Calc หรือ Apple Numbers ไฟล์ที่บันทึกโดย Excel เรียกว่าสมุดงาน ซึ่งสมุดงานแต่ละเล่มสามารถมีแผ่นงานได้ตั้งแต่หนึ่งแผ่นขึ้นไป ข้อมูลถูกจัดเก็บและแสดงต่อผู้ใช้ในรูปแบบตารางในเวิร์กชีต และสามารถขยายค่าตัวเลข ข้อมูลข้อความ สูตร การเชื่อมต่อข้อมูลภายนอก รูปภาพ และแผนภูมิ แอปพลิเคชันเช่น Microsoft Excel ช่วยให้คุณสามารถส่งออกข้อมูลเวิร์กบุ๊กเป็นรูปแบบต่างๆ ได้ เช่น PDF, CSV, XLSX, TXT, HTML, XPS และอื่นๆ อีกมากมาย รูปแบบไฟล์ XLS ถูกแทนที่ด้วยรูปแบบที่เปิดกว้างและมีโครงสร้างมากขึ้น XLSX ด้วยการเปิดตัว Microsoft Excel 2007 เวอร์ชันล่าสุดยังคงรองรับการสร้างและอ่านไฟล์ XLS แม้ว่า XLSX จะเป็นตัวเลือกแรกในการใช้งานในขณะนี้
อ่านต่อ เกี่ยวกับรูปแบบไฟล์ XLSอัปเดตคุณสมบัติคำอธิบายประกอบจากรูปแบบไฟล์ยอดนิยมบางรูปแบบตามที่ระบุไว้ด้านล่าง
(Adobe Portable Document Format)
(Microsoft Word Document)
(Microsoft Word Macro-Enabled Document)
(Microsoft Word Open XML Document)
(Microsoft Word Document Template)
(Word Open XML Document Template)
(Rich Text Document)
(Open Document Text)
(Microsoft Excel Binary File Format)
(Microsoft Excel Open XML Spreadsheet)
(Microsoft Excel Macro-Enabled Spreadsheet)
(Microsoft Excel Binary Worksheet)
(Open Document Spreadsheet)
(PowerPoint Presentation)
(PowerPoint Open XML Presentation)
(PowerPoint Open XML Slide Show)
(Microsoft PowerPoint Template)
(Microsoft PowerPoint Presentation)
(Microsoft PowerPoint 97-2003 Slide Show)
(OpenDocument Presentation)
(HyperText Markup Language)
(Tagged Image File Format)
(JPEG Image)
(Portable Network Graphic)
(E-mail Message)
(Microsoft Outlook E-mail Message)
(Microsoft Visio 2003-2010 Drawing)
(Microsoft Visio Drawing)
(Microsoft Visio 2003-2010 Stencil)
(Microsoft Visio 2013 Stencil)
(Autodesk Design Data Formats)
(AutoCAD Drawing Interchange)
(Digital Imaging and Communications in Medicine)
(Windows Metafile)
(Enhanced Metafile Format)