Use a stamp object to draw with the BorderShape property set to Ellipse, the VerticalText property set to True, and the TextAlign property set to Center.

You can also change these settings after drawing with the SelectedObjectBorderShape, SelectedObjectVerticalText, and SelectedObjectTextAlign properties.

Stamp Example:

Example Code

How to set the Stamp object

The same thing can be done using Toolbar Controls. See Using Toolbars.

[Visual Basic.NET]

'When using Annotation function, the following property must be set to True.
ImageKit1.Edit.EditEnabled = True

'Set annotation object to Stamp
ImageKit1.Edit.EditKind = Newtone.ImageKit.Win.KindOfEdit.Stamp
ImageKit1.Edit.Fill = False
ImageKit1.Edit.BorderWidth = 5
ImageKit1.Edit.ForeColor = Color.Red
ImageKit1.Edit.BorderColor = Color.Red
'Make the border shape of the stamp elliptical
ImageKit1.Edit.BorderShape = Newtone.ImageKit.Win.Ellipse
'Write vertical text
ImageKit1.Edit.VerticalText = True
'Center the character's position
ImageKit1.Edit.TextAlign = Newtone.ImageKit.Win.Center

'After this, draw the stamp with the mouse or method

[Visual C#.NET]

//When using Annotation function, the following property must be set to True.
ImageKit1.Edit.EditEnabled = true;
//Set annotation object to Stamp
ImageKit1.Edit.EditKind = Newtone.ImageKit.Win.KindOfEdit.Stamp;
ImageKit1.Edit.Fill = false;
ImageKit1.Edit.BorderWidth = 5;
ImageKit1.Edit.ForeColor = Color.Red;
ImageKit1.Edit.BorderColor = Color.Red;
//Make the border shape of the stamp elliptical
ImageKit1.Edit.BorderShape = Newtone.ImageKit.Win.Ellipse;
//Write vertical text
ImageKit1.Edit.VerticalText = true;
//Center the character's position
ImageKit1.Edit.TextAlign = Newtone.ImageKit.Win.Center;

//After this, draw the stamp with the mouse or method

Relevant Properties

ImageKit.Edit.BorderShape
ImageKit.Edit.VerticalText
ImageKit.Edit.TextAlign
ImageKit.Edit.SelectedObjectBorderShape
ImageKit.Edit.SelectedObjectVerticalText
ImageKit.Edit.SelectedObjectTextAlign

The ImageKit WPF is created by Newtone Corporation