[]
Adds an inline object with specified dimensions to the end of the Inlines collection.
public InlineObject AppendInlineObject(object obj, float width, float height)
Public Function AppendInlineObject(obj As Object, width As Single, height As Single) As InlineObject
Type | Name | Description |
---|---|---|
object | obj | The object to add. |
float | width | The object's width. |
float | height | The object's height. |
Type | Description |
---|---|
InlineObject | The created InlineObject. |
Adds an inline object with specified dimensions and formatting to the end of the Inlines collection.
public InlineObject AppendInlineObject(object obj, float width, float height, TextFormat format)
Public Function AppendInlineObject(obj As Object, width As Single, height As Single, format As TextFormat) As InlineObject
Type | Name | Description |
---|---|---|
object | obj | The object to add. |
float | width | The object's width. |
float | height | The object's height. |
TextFormat | format | Formatting associated with the object. |
Type | Description |
---|---|
InlineObject | The created InlineObject. |