Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Description

Excerpt

Inserts and returns an InlineImage at the beginning of this Element. The image that will be inserted is specified by the fileName parameter.

Signature
C#
C#
 public virtual InlineImage InsertImageBefore(System.String fileName)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Overridable Function InsertImageBefore(ByVal fileName As String) As InlineImage
{signature}
{parameters}
{param:fileName}A {{String}} containing the filename of the image to insert.{param}
{returns}An {{InlineImage}} object that represents the image that was inserted.{returns}
{exceptions}
{exception:System.Exception}If the image file is not a valid format. See [InlineImage.Format|InlineImage.Format] for a list of supported formats.{exception}
{example}{code:csharp|title=C#}
Parameters
Param
fileName
fileName

A String containing the filename of the image to insert.

Returns

An InlineImage object that represents the image that was inserted.

Exceptions
Exception
System.Exception
System.Exception

If the image file is not a valid format. See InlineImage.Format for a list of supported formats.

Example
Code Block
csharp
csharp
titleC#

InlineImage image = e.InsertImageBefore("C:\sample.jpg");
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim image As InlineImage = e.InsertImageBefore("C:\sample.jpg")
{code} {example}