Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Box

PageCanvas.DrawImage(OfficeImage, Rectangle, ImageSizeMode) Method

Draws a custom image.

Namespace: DevExpress.XtraRichEdit.API.Layout

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

public void DrawImage(
    OfficeImage image,
    Rectangle bounds,
    ImageSizeMode sizeMode
)

Parameters

Name Type Description
image OfficeImage

The OfficeImage object that will be placed at the selected position.

bounds Rectangle

Sets the location and size of the image.

sizeMode ImageSizeMode

Specifies the image position within the stated bounds.

Example

This code snippet illustrates the implementation of the PageCanvas.DrawImage and PageCanvas.FillEllipse methods. They draw a filled color ellipse and a custom image over the table cell.

Public Overrides Sub DrawTableCell(ByVal tableCell As LayoutTableCell)
    If Form1.customDrawTable = True Then
        Dim Tbounds As Rectangle = tableCell.Bounds
        Dim tableRectangle As New Rectangle(New Point(Tbounds.X + Tbounds.Width \ 2 - 10, Tbounds.Y + Tbounds.Height \ 2 - 10), New Size(20, 20))
        Canvas.FillEllipse(New RichEditBrush(Color.MediumAquamarine), Canvas.ConvertToDrawingLayoutUnits(tableRectangle, DocumentLayoutUnit.Pixel))
        Canvas.DrawImage(OfficeImage.CreateImage(DevExpress.Images.ImageResourceCache.Default.GetImage("devav/people/employeeaward_16x16.png")), tableCell.Bounds, ImageSizeMode.Squeeze)
        MyBase.DrawTableCell(tableCell)
    Else
        MyBase.DrawTableCell(tableCell)
    End If
End Sub

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DrawImage(OfficeImage, Rectangle, ImageSizeMode) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also