@@ -25,49 +25,20 @@ The **StampAnnotation** class is a derivative of the **MarkupAnnotation** (desce
2525### Creating a StampAnnotation
2626
2727``` csharp
28- RadFixedDocument document = new RadFixedDocument ();
29- RadFixedPage page = document .Pages .AddPage ();
30-
28+ RadFixedDocument fixedDocument = new RadFixedDocument ();
3129 RadFixedPage page = fixedDocument .Pages .AddPage ();
3230
3331 StampAnnotation annotation1 = page .Annotations .AddStamp (new Rect (50 , 50 , 300 , 50 ));
3432 annotation1 .Name = StampAnnotationPredefinedNames .SBApproved ;
3533
36- StampAnnotation annotation3 = page .Annotations .AddStamp (new Rect (50 , 100 , 300 , 50 ));
37- annotation3 .Name = StampAnnotationPredefinedNames .SBCompleted ;
38-
39- StampAnnotation annotation4 = page .Annotations .AddStamp (new Rect (50 , 150 , 300 , 50 ));
40- annotation4 .Name = StampAnnotationPredefinedNames .SBConfidential ;
41-
42- StampAnnotation annotation5 = page .Annotations .AddStamp (new Rect (50 , 200 , 300 , 50 ));
43- annotation5 .Name = StampAnnotationPredefinedNames .SBDraft ;
44-
45- StampAnnotation annotation6 = page .Annotations .AddStamp (new Rect (50 , 250 , 300 , 50 ));
46- annotation6 .Name = StampAnnotationPredefinedNames .SBFinal ;
47-
48- StampAnnotation annotation7 = page .Annotations .AddStamp (new Rect (50 , 300 , 300 , 50 ));
49- annotation7 .Name = StampAnnotationPredefinedNames .SBForComment ;
50-
51- StampAnnotation annotation8 = page .Annotations .AddStamp (new Rect (50 , 350 , 300 , 50 ));
52- annotation8 .Name = StampAnnotationPredefinedNames .SBForPublicRelease ;
53-
54- StampAnnotation annotation9 = page .Annotations .AddStamp (new Rect (50 , 400 , 300 , 50 ));
55- annotation9 .Name = StampAnnotationPredefinedNames .SBInformationOnly ;
56-
57- StampAnnotation annotation10 = page .Annotations .AddStamp (new Rect (50 , 450 , 300 , 50 ));
58- annotation10 .Name = StampAnnotationPredefinedNames .SBNotApproved ;
59-
60- StampAnnotation annotation11 = page .Annotations .AddStamp (new Rect (50 , 500 , 300 , 50 ));
61- annotation11 .Name = StampAnnotationPredefinedNames .SBNotForPublicRelease ;
62-
63- StampAnnotation annotation13 = page .Annotations .AddStamp (new Rect (50 , 550 , 300 , 50 ));
64- annotation13 .Name = StampAnnotationPredefinedNames .SBPreliminaryResults ;
34+ StampAnnotation annotation2 = page .Annotations .AddStamp (new Rect (50 , 100 , 300 , 50 ));
35+ annotation2 .Name = StampAnnotationPredefinedNames .SBPreliminaryResults ;
6536
66- StampAnnotation annotation15 = page .Annotations .AddStamp (new Rect (50 , 600 , 300 , 50 ));
67- annotation15 .Name = StampAnnotationPredefinedNames .SBRejected ;
37+ StampAnnotation annotation3 = page .Annotations .AddStamp (new Rect (50 , 150 , 300 , 50 ));
38+ annotation3 .Name = StampAnnotationPredefinedNames .SBRejected ;
6839
69- StampAnnotation annotation16 = page .Annotations .AddStamp (new Rect (50 , 650 , 300 , 50 ));
70- annotation16 .Name = StampAnnotationPredefinedNames .SBVoid ;
40+ StampAnnotation annotation4 = page .Annotations .AddStamp (new Rect (50 , 200 , 300 , 50 ));
41+ annotation4 .Name = StampAnnotationPredefinedNames .SBVoid ;
7142```
7243
7344![ Create StampAnnotation] ( images/pdf-processing-create-stampannotation.png )
0 commit comments