Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
ModifyAnnotationsメソッドを使用すると、注釈の基本属性、つまり件名、変更日、著者、注釈の色、およびオープンフラグを変更できます。また、ModifyAnnotationsメソッドを使用して著者を直接設定することもできます。このクラスは、注釈を削除するための2つのオーバーロードメソッドも提供します。最初のメソッドであるDeleteAnnotationsは、PDFファイルからすべての注釈を削除します。
たとえば、次のコードでは、ModifyAnnotationsAuthorを使用して注釈の著者を変更することを考えます。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ModifyAnnotationsAuthor()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Annotations();
// Create PdfAnnotationEditor
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(dataDir + "AnnotationsInput.pdf");
// Modify annotations author
annotationEditor.ModifyAnnotationsAuthor(1, 2, "Aspose User", "Aspose.PDF user");
// Save PDF document
annotationEditor.Save(dataDir + "ModifyAnnotationsAuthor_out.pdf");
}
}
2番目のメソッドでは、注釈を変更できます。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ModifyAnnotations()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Annotations();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "AnnotationsInput.pdf"))
{
// Create PdfAnnotationEditor
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(document);
// Create a new object of type Annotation
TextAnnotation newTextAnnotation = new TextAnnotation(document.Pages[1], new Aspose.Pdf.Rectangle(200, 400, 400, 600));
newTextAnnotation.Title = "Updated title";
newTextAnnotation.Subject = "Updated subject";
newTextAnnotation.Contents = "Updated sample contents for the annotation";
// Modify annotations in the PDF file
annotationEditor.ModifyAnnotations(1, 1, newTextAnnotation);
// Save PDF document
annotationEditor.Save(dataDir + "ModifyAnnotations_out.pdf");
}
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.