Add button component
Leave feedback
On this page
Button component allows to create button component like shown at the picture below:
There is an ability to specify the next properties for ButtonComponent type:
Follow these steps to add Button component to document:
- Instantiate Annotator object with input document path or stream;
- Instantiate ButtonComponent object with desired properties (position, page number, etc);
- Call Add method and pass ButtonComponent object;
- Call Save method with resultant document path or stream.
The following code demonstrates how to add ButtonComponent to the document:
using (Annotator annotator = new Annotator("input.pdf"))
{
ButtonComponent button = new ButtonComponent
{
CreatedOn = DateTime.Now,
Style = BorderStyle.Dashed,
Message = "This is button component",
BorderColor = 1422623,
PenColor = 14527697,
ButtonColor = 10832612,
PageNumber = 0,
BorderWidth = 12,
Box = new Rectangle(100, 300, 90, 30),
Replies = new List<Reply>
{
new Reply
{
Comment = "First comment",
RepliedOn = DateTime.Now
},
new Reply
{
Comment = "Second comment",
RepliedOn = DateTime.Now
}
}
};
annotator.Add(button);
annotator.Save("result.pdf");
}
To learn more about document annotating features, please refer to the advanced usage section.
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Annotation for .NET examples, plugins, and showcase
- GroupDocs.Annotation for Java examples, plugins, and showcase
- Document Annotation for .NET MVC UI Example
- Document Annotation for .NET App WebForms UI Modern Example
- Document Annotation for Java App Dropwizard UI Modern Example
- Document Annotation for Java Spring UI Example
Along with full-featured .NET library we provide simple but powerful free Apps. You are welcome to annotate your PDF, DOC or DOCX, XLS or XLSX, PPT or PPTX, PNG and other documents with free to use online GroupDocs Annotation App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.