Skip to content

AnnotationEllipse::RectDifferences property

Indicates the rectangle differences of the annotation.

System.Drawing.Rectangle RectDifferences { get; set; }
AnnotationRect getRectDifferences() throws IGRException;
void setRectDifferences(AnnotationRect value) throws IGRException;
@property
def RectDifferences(self) -> AnnotationRect:
@property.setter
def RectDifferences(self, value: AnnotationRect)
AnnotationRect getRectDifferences() const;
void setRectDifferences(AnnotationRect value);
[propget] HRESULT RectDifferences([out, retval] AnnotationRect* *result);
[propput] HRESULT RectDifferences([in] AnnotationRect* value);

Return Value

AnnotationRect

Additional Information

A set of four numbers describing the numerical differences between two rectangles: the Rect entry of the annotation and a rectangle contained within that rectangle. The inner rectangle is where the annotation's text should be displayed. Any border styles and/or border effects specified by BS and BE entries, respectively, are applied to the border of the inner rectangle. The four numbers correspond to the differences in default user space between the left, top, right, and bottom coordinates of Rect and those of the inner rectangle, respectively. Each value must be greater than or equal to 0. The sum of the top and bottom differences must be less than the height of Rect, and the sum of the left and right differences must be less than the width of Rect.

See Also