AnnotationShowHideAction
Represents an annotation show hide action.
public class AnnotationShowHideAction : OutlineAnnotationAction
Public Class AnnotationShowHideAction
Inherits OutlineAnnotationAction
Inheritance: ObjectActionOutlineAnnotationActionAnnotationShowHideAction
Licensing Info
This class is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
Examples
The following example shows how to use annotation show hide action.Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.PageElements.Forms
Imports ceTe.DynamicPDF.PageElements
Module MyModule
Sub Main()
' Create a PDF Document
Dim MyDocument As Document = New Document()
' Create a page and add it to the document
Dim MyPage As Page = New Page()
MyDocument.Pages.Add(MyPage)
Dim MyButton As Button = New Button("btn", 50, 150, 100, 30)
MyButton.Label = "Click Here"
' Create label and text field
Dim MyLabel As Label = New Label("Click the button to see the form field hide action : ", 50, 100, 330, 30)
Dim Myfield As ceTe.DynamicPDF.PageElements.Forms.TextField = New ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 330, 100, 100, 30)
Myfield.DefaultValue = "Text Field Value"
' Add the label, button and text field to the page
MyPage.Elements.Add(MyButton)
MyPage.Elements.Add(Myfield)
MyPage.Elements.Add(MyLabel)
' Create a annotation show hide action and assign to the button events
Dim MyAction As AnnotationShowHideAction = New AnnotationShowHideAction("Text1")
MyButton.ReaderEvents.MouseDown = MyAction
' Save the PDF
MyDocument.Draw("C:\MyDocument.pdf")
End Sub
End Module
using ceTe.DynamicPDF;
using ceTe.DynamicPDF.PageElements.Forms;
using ceTe.DynamicPDF.PageElements;
public class Example
{
public static void CreatePDF(string outputPath)
{
// Create a PDF Document
Document document = new Document();
// Create a page and add it to the document
Page page = new Page();
document.Pages.Add(page);
Button button = new Button("btn", 50, 150, 100, 30);
button.Label = "Click Here";
// Create label and text field
Label label1 = new Label("Click the button to see the form field hide action : ", 50, 100, 330, 30);
ceTe.DynamicPDF.PageElements.Forms.TextField field = new ceTe.DynamicPDF.PageElements.Forms.TextField("Text1", 330, 100, 100, 30);
field.DefaultValue = "Text Field Value";
// Add the label, button and text field to the page
page.Elements.Add(button);
page.Elements.Add(field);
page.Elements.Add(label1);
// Create a annotation show hide action and assign to the button events.
AnnotationShowHideAction action = new AnnotationShowHideAction("Text1");
button.ReaderEvents.MouseDown = action;
// Save the PDF
document.Draw(outputPath);
}
}
Constructors
AnnotationShowHideAction(String) | Initializes a new instance of the annotation show hide action class. |
Properties
NextAction | Gets or sets next action for the current action. (Inherited from OutlineAnnotationAction) |
ShowField | Gets or sets field to hide or show. By default field will be hide. |
Methods
Draw(DocumentWriter) | Draws the action to the specified DocumentWriter object. |
Equals(Object) | Determines whether the specified Object is equal to the current Object . (Inherited from Object) |
GetHashCode() | Serves as a hash function for a particular type. (Inherited from Object) |
GetType() | Gets the Type of the current instance. (Inherited from Object) |
ToString() | Returns a String that represents the current Object . (Inherited from Object) |