DrawingItemMediaType
The enumeration DrawingItemMediaType describes the media type of DrawingItems.
@Retention(RetentionPolicy.CLASS)
public @interface EnumDrawingItemMediaType {
// The mediate type of the DrawingItem is rectangle.
int DIMT_RECTANGLE = 1;
// The mediate type of the DrawingItem is quadrilateral.
int DIMT_QUADRILATERAL = 2;
// The mediate type of the DrawingItem is text.
int DIMT_TEXT = 4;
// The mediate type of the DrawingItem is line.
int DIMT_LINE = 8;
}