Change Stamp text from "Draft" to something else

When using the ToolMode.e_stamp_create the default text is "Draft" and
I would like to change that text to something else. How would I go
about doing that?

Thanks.
-Eric

Assuming that you are talking about creating RubberStamp annotation in
the context of pdftron.PDF.PDFViewCtrl you can customize the default/
current annotation as follow:

pdftron.PDF.Annots.RubberStamp default_annot = new RubberStamp
(pdfview.GetDefaultAnnotation("RubberStamp").GetSDFObj());
default_annot.SetIcon(RubberStamp.Icon.e_TopSecret);

The following predefined stamps are supported:

e_Approved, ///<a stamp with the text "Approved"
e_Experimental, ///<a stamp with the text "Experimental"
e_NotApproved, ///<a stamp with the text "Not Approved"
e_AsIs, ///<a stamp with the text "As Is"
e_Expired, ///<a stamp with the text "Expired"
e_NotForPublicRelease, ///<a stamp with the text "Not For Public
Release"
e_Confidential, ///<a stamp with the text "Confidential"
e_Final, ///<a stamp with the text "Final"
e_Sold, ///<a stamp with the text "Sold"
e_Departmental, ///<a stamp with the text "Departmental"
e_ForComment, ///<a stamp with the text "For Comment"
e_TopSecret, ///<a stamp with the text "Top Secret"
e_ForPublicRelease, ///<a stamp with the text "For Public Release"
e_Draft, ///<a stamp with the text "Draft"
e_Unknown ///< Non-standard or user defined stamp.

You could also create a custom appearance for the stamp annotation
(using ElementBuilder & ElementWriter) however you would need to
implement a custom tool mode to create the annotation.