Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Returns an InlineImage.Format object that represents the format that the image is stored as in Word. (Jpg, Png, Bmp, Gif)

Signature
C#
C#
<table class="diff-macro"><thead><tr><th class="diff-macro-title">unmigrated-wiki-markup</th></tr></thead><tbody><tr><td class="diff-macro-body"><pre>
 public Format ImageFormat{ get; }
</pre></td></tr></tbody></table>
Signature
vb.net
vb.net
Public <p>Public ReadOnly Property ImageFormat() As Format</p>Format
Example
 
Code Block
csharp
csharp
titleC#
            InlineImage.Format oImageFormat = oInlineImage.ImageFormat;
        
Code Block
vb.net
vb.net
titlevb.net
            Dim oImageFormat As InlineImage.Format = oInlineImage.ImageFormat
        
Example