[]
        
(Showing Draft Content)

GrapeCity.Documents.Word.CanvasShape.AddPicture

AddPicture Method

AddPicture()

Adds a new Picture to the end of the canvas shape.

Declaration
public Picture AddPicture()
Returns
Type Description
Picture

The added Picture.

AddPicture(byte[], string)

Adds a new Picture to the end of the canvas shape.

Declaration
public Picture AddPicture(byte[] imageBytes, string contentType)
Parameters
Type Name Description
byte[] imageBytes

The image data representing the picture.

string contentType

The content type of the image data.

Returns
Type Description
Picture

The added Picture.

AddPicture(Image)

Adds a new Picture to the end of the canvas shape.

Declaration
public Picture AddPicture(Image image)
Parameters
Type Name Description
Image image
Returns
Type Description
Picture

The added Picture. The size of the picture is set to the size of the source image.

AddPicture(byte[], string, float, float)

Adds a new Picture to the end of the canvas shape.

Declaration
public Picture AddPicture(byte[] imageBytes, string contentType, float width, float height)
Parameters
Type Name Description
byte[] imageBytes

The image data representing the picture.

string contentType

The content type of the image data.

float width

The picture's width, in points.

float height

The picture's height, in points.

Returns
Type Description
Picture

The added Picture.