Skip to content

Commit 9515857

Browse files
Update fixedcontenteditor.md
1 parent ee06d7f commit 9515857

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

libraries/radpdfprocessing/editing/fixedcontenteditor.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,7 @@ __FixedContentEditor__ is always associated with a single [RadFixedPage]({%slug
4747
{{source=..\SamplesCS\RadPdfProcessing\Editing.cs region=cs-radpdfprocessing-editing-fixedcontenteditor_0}}
4848

4949
````C#
50-
RadFixedDocument document = new RadFixedDocument();
51-
var firstPage = document.Pages.AddPage();
5250

53-
FixedContentEditor fixedContentEditor = new FixedContentEditor(firstPage);
5451
````
5552
{{endregion}}
5653

@@ -67,9 +64,7 @@ __Example 2__ demonstrates how you can create a FixedContentEditor with a specif
6764
matrixPosition.Translate(20, 20); // Translates the position by (20, 20)
6865
matrixPosition.Translate(30, 30); // Translates the position by (30, 30).
6966
70-
SimplePosition simplePosition = new SimplePosition();
71-
simplePosition.Translate(20, 20); // Translates the position by (20, 20).
72-
simplePosition.Translate(30, 30); // Translates the position by (30, 30) overwriting the previous translations.
67+
7368

7469
FixedContentEditor simplePositionfixedContentEditor = new FixedContentEditor(firstPage,matrixPosition);
7570
FixedContentEditor matrixPositionfixedContentEditor = new FixedContentEditor(firstPage,matrixPosition);

0 commit comments

Comments
 (0)