Defines a contract for working with pictures, including methods for loading, saving, and manipulating images.
Namespace:
Spire.Xls.Core
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
Syntax
public interface IPictures : IExcelApplication,
IEnumerable
Public Interface IPictures
Inherits IExcelApplication, IEnumerable
public interface class IPictures : IExcelApplication,
IEnumerable
type IPictures =
interface
interface IExcelApplication
interface IEnumerable
end
The
IPictures
type exposes the following members.
Properties
|
Name
|
Description
|
|
Count
|
Returns the number of objects in the collection. Read-only Long.
|
|
Item
|
Returns a single object from a collection.
|
|
Parent
|
Gets the parent object of the current instance.
(Inherited from
IExcelApplication
.)
|
Top
Methods
|
Name
|
Description
|
|
Add(String)
|
Adds picture from the specified file.
|
|
Add(Image, String)
|
Adds picture to the collection.
|
|
Add(String, ImageFormatType)
|
Adds picture from the specified file.
|
|
Add(Image, String, ImageFormatType)
|
Adds picture to the collection.
|
|
Add(Int32, Int32, Image)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Stream)
|
Adds image to the collection.
|
|
Add(Int32, Int32, String)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Image, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Stream, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, String, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Image, Int32, Int32)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, Image)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, Stream)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, String)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Stream, Int32, Int32)
|
Adds image to the collection.
|
|
Add(Int32, Int32, String, Int32, Int32)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Image, Int32, Int32, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, Image, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, Stream, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Int32, Int32, String, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, Stream, Int32, Int32, ImageFormatType)
|
Adds image to the collection.
|
|
Add(Int32, Int32, String, Int32, Int32, ImageFormatType)
|
Adds image to the collection.
|
|
GetEnumerator
|
Returns an enumerator that iterates through a collection.
(Inherited from
IEnumerable
.)
|
Top
See Also