Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
以下代码片段也适用于 Aspose.PDF.Drawing 库。
FormEditor 类的 SetFieldLimit(field, limit) 方法允许您设置字段限制,即可以输入到字段中的最大字符数。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void SetFieldLimit()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Create FormEditor instance
using (var form = new Aspose.Pdf.Facades.FormEditor())
{
// Bind PDF document
form.BindPdf(dataDir + "input.pdf");
// Set field limit for "textbox1"
form.SetFieldLimit("textbox1", 15);
// Save PDF document
form.Save(dataDir + "SetFieldLimit_out.pdf");
}
}
同样,Aspose.PDF 也有一个方法可以使用 DOM 方法获取字段限制。以下代码片段展示了步骤。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void GetFieldLimitUsingDOM()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "FieldLimit.pdf"))
{
// Get the field and its maximum limit
if (document.Form["textbox1"] is Aspose.Pdf.Forms.TextBoxField textBoxField)
{
Console.WriteLine("Limit: " + textBoxField.MaxLen);
}
}
}
您还可以使用 Aspose.Pdf.Facades 命名空间通过以下代码片段获取相同的值。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void GetFieldLimitUsingFacades()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Create Form instance
using (var form = new Aspose.Pdf.Facades.Form())
{
// Bind PDF document
form.BindPdf(dataDir + "FieldLimit.pdf");
// Get the field limit for "textbox1"
Console.WriteLine("Limit: " + form.GetFieldLimit("textbox1"));
}
}
Adobe PDF 文件中的表单字段可以配置为使用特定的默认字体。在早期版本的 Aspose.PDF 中,仅支持 14 种默认字体。后来的版本允许开发人员应用任何字体。要设置和更新表单字段使用的默认字体,请使用 DefaultAppearance(Font font, double size, Color color) 类。该类可以在 Aspose.Pdf.InteractiveFeatures 命名空间下找到。要使用此对象,请使用 Field 类的 DefaultAppearance 属性。
以下代码片段展示了如何为 PDF 表单字段设置默认字体。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void SetFormFieldFont()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "FormFieldFont14.pdf"))
{
// Get particular form field from document
if (document.Form["textbox1"] is Aspose.Pdf.Forms.Field field)
{
// Create font object
var font = Aspose.Pdf.Text.FontRepository.FindFont("ComicSansMS");
// Set the font information for form field
field.DefaultAppearance = new Aspose.Pdf.Annotations.DefaultAppearance(font, 10, System.Drawing.Color.Black);
}
// Save PDF document
document.Save(dataDir + "FormFieldFont14_out.pdf");
}
}
所有表单字段都包含在 Document 对象的 Form 集合中。该集合提供了管理表单字段的不同方法,包括 Delete 方法。如果您想删除特定字段,请将字段名称作为参数传递给 Delete 方法,然后保存更新后的 PDF 文档。以下代码片段展示了如何从 PDF 文档中删除特定字段。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void DeleteFormField()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Forms();
// Open PDF document
using (var document = new Aspose.Pdf.Document(dataDir + "DeleteFormField.pdf"))
{
// Delete a particular field by name
document.Form.Delete("textbox1");
// Save PDF document
document.Save(dataDir + "DeleteFormField_out.pdf");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.