Image to ViewSheet

This widget could not be displayed.

Image to ViewSheet

Anonymous
Not applicable

Hello.

How Insert Image to ViewSheet. The sheet has no method to insert.

C#.

Thank You

0 Likes
Reply
Accepted solutions (1)
1,059 Views
1 Reply
Reply (1)

RPTHOMAS108
Mentor
Mentor
Accepted solution

2020 Onwards:

ImageInstance.Create(Document, View, ElementId, ImagePlacementOptions)

Where ElementId is the id of the ImageType.

 

Have to use one of the ImageType.Create overloads to get the ImageType if image not already loaded.

 

Prior 2020:

Document.Import(String, ImageImportOptions, View, Element)

Where String is the image file path, Element is reference to the ImportInstance (if successful).

 

0 Likes