2003-02-12 02:00:12 +00:00
<Type Name= "Image" FullName= "Gtk.Image" >
2003-05-14 19:22:02 +00:00
<TypeSignature Language= "C#" Value= "public c l a s s I m a g e : G t k . M i s c ,
Implementor, IWrapper, IWrapper, IDisposable" Maintainer="Jaime
Anguiano Olarra" />
2003-02-12 02:00:12 +00:00
<AssemblyInfo >
<AssemblyName > gtk-sharp</AssemblyName>
<AssemblyVersion > 0.0.0.0</AssemblyVersion>
<Attributes />
</AssemblyInfo>
2003-02-23 07:26:30 +00:00
<ThreadSafetyStatement > Gtk# is thread aware, but not thread safe; See the <link location= "node:gtk-sharp/programming/threads" > Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
2003-02-12 02:00:12 +00:00
<Docs >
2003-06-12 04:17:57 +00:00
<summary > <see cref= "T:Gtk.Widget" /> used to display an image. </summary>
<remarks >
2003-07-08 18:44:29 +00:00
<see cref= "T:Gtk.Image" /> can be used as a container for a <see cref= "T:Gdk.Pixbuf" />
or a <see cref= "T:Gdk.PixbufAnimation" /> to get custom interfaces.
<see cref= "T:Gtk.Image" /> cannot launch events, it is necessary to
include it inside a <see cref= "T:Gtk.EventBox" /> for that purpose.
2003-06-12 04:17:57 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
<Base >
<BaseTypeName > Gtk.Misc</BaseTypeName>
</Base>
<Interfaces >
<Interface >
<InterfaceName > Atk.Implementor</InterfaceName>
</Interface>
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
<Interface >
<InterfaceName > GLib.IWrapper</InterfaceName>
</Interface>
<Interface >
<InterfaceName > System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes />
<Members >
<Member MemberName= "SetFromIconSet" >
<MemberSignature Language= "C#" Value= "public void SetFromIconSet (Gtk.IconSet icon_set, Gtk.IconSize size);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "icon_set" Type= "Gtk.IconSet" />
<Parameter Name= "size" Type= "Gtk.IconSize" />
</Parameters>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > Creates a <see cref= "T:Gtk.Image" /> displaying an <see cref= "T:Gtk.IconSet" /> .</summary>
<param name= "icon_set" > an object of type <see cref= "T:Gtk.IconSet" /> </param>
<param name= "size" > an object of type <see cref= "T:Gtk.IconSize" /> </param>
<remarks >
Creates a <see cref= "T:Gtk.Image" /> displaying an <see cref= "T:Gtk.IconSet" /> .
Sample stock sizes are <see cref= "F:Gtk.IconSize.Menu" /> , <see cref= "F:Gtk.IconSize.SmallToolbar" /> .
2003-07-08 18:44:29 +00:00
Instead of using this function, usually it is better to create a <see cref= "T:Gtk.IconFactory" /> , put your <see cref= "T:Gtk.IconSet" /> in the <see cref= "T:Gtk.IconFactory" /> ,
2003-06-12 04:17:57 +00:00
add the <see cref= "T:Gtk.IconFactory" /> to the list of default factories with <see cref= "M:Gtk.IconFactory.AddDefault()" /> , and then use <see cref= "M:Gtk.Image.SetFromStock(System.String,Gtk.IconSize)" /> .
This will allow themes to override the icon you ship with your application.
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "SetFromImage" >
<MemberSignature Language= "C#" Value= "public void SetFromImage (Gdk.Image gdk_image, Gdk.Bitmap mask);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "gdk_image" Type= "Gdk.Image" />
<Parameter Name= "mask" Type= "Gdk.Bitmap" />
</Parameters>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > Creates a <see cref= "T:Gtk.Image" /> widget displaying an image with a mask.</summary>
<param name= "gdk_image" > an object of type <see cref= "T:Gdk.Image" /> </param>
<param name= "mask" > an object of type <see cref= "T:Gdk.Bitmap" /> </param>
<remarks >
Creates a <see cref= "T:Gtk.Image" /> widget displaying an image with a mask.
A <see cref= "T:Gdk.Image" /> is a client-side image buffer in the pixel format of the current display.
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "SetFromStock" >
<MemberSignature Language= "C#" Value= "public void SetFromStock (string stock_id, Gtk.IconSize size);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "stock_id" Type= "System.String" />
<Parameter Name= "size" Type= "Gtk.IconSize" />
</Parameters>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > Creates a <see cref= "T:Gtk.Image" /> displaying a stock icon.</summary>
<param name= "stock_id" > an object of type <see cref= "T:System.String" /> </param>
<param name= "size" > an object of type <see cref= "T:Gtk.IconSize" /> </param>
<remarks >
Creates a <see cref= "T:Gtk.Image" /> displaying a stock icon.
Sample stock icon names are <see cref= "P:Gtk.Stock.Open" /> , <see cref= "P:Gtk.Stock.Ok" /> .
Sample stock sizes are <see cref= "F:Gtk.IconSize.Menu" /> , <see cref= "F:Gtk.IconSize.SmallToolbar" /> .
2003-07-08 18:44:29 +00:00
If the stock icon name is not known, a "broken image" icon will be displayed instead.
You can register your own stock icon names, see <see cref= "M:Gtk.IconFactory.AddDefault()" /> and <see cref= "M:Gtk.IconFactory.Add(System.String,Gtk.IconSet)" /> .
2003-06-12 04:17:57 +00:00
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "SetFromPixmap" >
<MemberSignature Language= "C#" Value= "public void SetFromPixmap (Gdk.Pixmap pixmap, Gdk.Bitmap mask);" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "pixmap" Type= "Gdk.Pixmap" />
<Parameter Name= "mask" Type= "Gdk.Bitmap" />
</Parameters>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > Creates a <see cref= "T:Gtk.Image" /> widget displaying an image with a mask.</summary>
<param name= "pixmap" > an object of type <see cref= "T:Gdk.Pixmap" /> </param>
<param name= "mask" > an object of type <see cref= "T:Gdk.Bitmap" /> </param>
<remarks >
Creates a <see cref= "T:Gtk.Image" /> widget displaying an image with a mask.
A <see cref= "T:Gdk.Image" /> is a client-side image buffer in the pixel format of the current display.
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Finalize" >
<MemberSignature Language= "C#" Value= "protected virtual void Finalize ();" />
<MemberType > Method</MemberType>
<ReturnValue >
<ReturnType > System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Disposes the resources associated with the object.</summary>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (IntPtr raw);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "raw" Type= "System.IntPtr" />
</Parameters>
<Docs >
2003-02-23 07:26:30 +00:00
<summary > Internal constructor</summary>
<param name= "raw" > Pointer to the C object.</param>
<returns > An instance of Image, wrapping the C object.</returns>
<remarks >
<para > This is an internal constructor, and should not be used by user code.</para>
</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image ();" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters />
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Default parameterless constructor.</summary>
<returns > An instance of type <see cref= "T:Gtk.Image" /> </returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (Gdk.PixbufAnimation animation);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "animation" Type= "Gdk.PixbufAnimation" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of <see
cref="Gtk.Image" /> containing the <see cref= "T:Gdk.PixbufAnimation"
/> passed to it.</summary>
<param name= "animation" > <see cref= "T:Gdk.PixbufAnimation" />
to be displayed by the Image.</param>
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (string filename);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "filename" Type= "System.String" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
<see cref= "T:Gtk.Image" /> containing the image stored in the
filename whose path is given by the 'filename' parameter.</summary>
<param name= "filename" > <see langword= "string" /> representing
the path to the image file.</param>
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (Gtk.IconSet icon_set, Gtk.IconSize size);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "icon_set" Type= "Gtk.IconSet" />
<Parameter Name= "size" Type= "Gtk.IconSize" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
<see cref= "T:Gtk.Image" /> containing the <see cref= "T:Gtk.IconSet"
/> and using the <see cref= "T:Gtk.IconSize" /> passed to it.</summary>
<param name= "icon_set" > <see cref= "T:Gtk.IconSet" /> to be
displayed by the Image.</param>
<param name= "size" > <see cref= "T:Gtk.IconSize" /> to be used by
the Image.</param>
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (Gdk.Image image, Gdk.Bitmap mask);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "image" Type= "Gdk.Image" />
<Parameter Name= "mask" Type= "Gdk.Bitmap" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
<see cref= "T:Gtk.Image" /> containing the <see cref= "T:Gdk.Image" />
and the <see cref= "T:Gdk.Bitmap" /> passed to it.</summary>
<param name= "image" > <see cref= "T:Gdk.Image" /> to be displayed
by the Image.</param>
<param name= "mask" > <see cref= "T:Gdk.Bitmap" /> mask to be used.</param>
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (Gdk.Pixbuf pixbuf);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "pixbuf" Type= "Gdk.Pixbuf" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
<see cref= "T:Gtk.Image" /> containing the <see cref= "T:Gdk.Pixbuf" />
passed to it.</summary>
<param name= "pixbuf" > <see cref= "T:Gdk.Pixbuf" /> to be
displayed by the Image.</param>
2003-07-08 18:44:29 +00:00
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
2003-05-14 19:22:02 +00:00
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (Gdk.Pixmap pixmap, Gdk.Bitmap mask);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "pixmap" Type= "Gdk.Pixmap" />
<Parameter Name= "mask" Type= "Gdk.Bitmap" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
<see cref= "T:Gtk.Image" /> containing the <see cref= "T:Gdk.Pixmap"
/> and the <see cref= "Gtk.Bitmap" /> mask passed to it.</summary>
<param name= "pixmap" > <see cref= "T:Gdk.Pixmap" /> displayed by
the Image.</param>
<param name= "mask" > <see cref= "T:Gdk.Bitmap" /> mask used by
the Image.</param>
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "public Image (string stock_id, Gtk.IconSize size);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "stock_id" Type= "System.String" />
<Parameter Name= "size" Type= "Gtk.IconSize" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > This constructor is used to create an instance of
2003-07-08 18:44:29 +00:00
<see cref= "T:Gtk.Image" /> containing the <see cref= "T:Gtk.Stock" />
2003-05-14 19:22:02 +00:00
represented by the <see langword= "string" /> passed to it and with the
2003-07-08 18:44:29 +00:00
size represented by the <see cref= "T:Gtk.IconSize" /> passed.</summary>
2003-05-14 19:22:02 +00:00
<param name= "stock_id" > <see langword= "string" /> identifier
2003-07-08 18:44:29 +00:00
for the <see cref= "T:Gtk.Stock" /> .</param>
<param name= "size" > <see cref= "T:Gtk.IconSize" /> used by the Image.</param>
2003-05-14 19:22:02 +00:00
<returns > An instance of type <see cref= "T:Gtk.Image" /> .</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "GType" >
<MemberSignature Language= "C#" Value= "public static uint GType { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.UInt32</ReturnType>
</ReturnValue>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > The <see cref= "T:GLib.Type" /> for <see cref= "T:Gtk.Image" /> </summary>
<returns > The <see cref= "T:GLib.Type" /> for the <see cref= "T:Gtk.Image" /> class.</returns>
2003-02-23 07:26:30 +00:00
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "FromPixbuf" >
<MemberSignature Language= "C#" Value= "public Gdk.Pixbuf FromPixbuf { set; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Pixbuf</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.Pixbuf" />
</Parameters>
<Docs >
2003-06-12 04:17:57 +00:00
<summary > Creates a <see cref= "T:Gtk.Image" /> displaying <see cref= "T:Gdk.Pixbuf" /> .</summary>
<param name= "value" > an object of type <see cref= "T:Gdk.Pixbuf" /> </param>
<returns > an object of type <see cref= "T:Gdk.Pixbuf" /> </returns>
<remarks > Creates a <see cref= "T:Gtk.Image" /> displaying <see cref= "T:Gdk.Pixbuf" /> .</remarks>
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Animation" >
<MemberSignature Language= "C#" Value= "public Gdk.PixbufAnimation Animation { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.PixbufAnimation</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<returns > an object of type <see cref= "T:Gdk.PixbufAnimation" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "FromAnimation" >
<MemberSignature Language= "C#" Value= "public Gdk.PixbufAnimation FromAnimation { set; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.PixbufAnimation</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.PixbufAnimation" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:Gdk.PixbufAnimation" /> </param>
<returns > an object of type <see cref= "T:Gdk.PixbufAnimation" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "FromFile" >
<MemberSignature Language= "C#" Value= "public string FromFile { set; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "System.String" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:System.String" /> </param>
<returns > an object of type <see cref= "T:System.String" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "Stock" >
<MemberSignature Language= "C#" Value= "public string Stock { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "System.String" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:System.String" /> </param>
<returns > an object of type <see cref= "T:System.String" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "Pixbuf" >
<MemberSignature Language= "C#" Value= "public Gdk.Pixbuf Pixbuf { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Pixbuf</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.Pixbuf" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Gets or sets the <see cref= "T:Gdk.Pixbuf" />
associated to the Image.</summary>
<param name= "value" > <see cref= "T:Gdk.Pixbuf" /> that will be
set to the Image.</param>
<returns > <see cref= "T:Gtk.Pixbuf" /> that the Image contains.</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "IconSize" >
<MemberSignature Language= "C#" Value= "public int IconSize { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.Int32</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "System.Int32" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:System.Int32" /> </param>
<returns > an object of type <see cref= "T:System.Int32" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "File" >
<MemberSignature Language= "C#" Value= "public string File { set; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > System.String</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "System.String" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:System.String" /> </param>
<returns > an object of type <see cref= "T:System.String" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "StorageType" >
<MemberSignature Language= "C#" Value= "public Gtk.ImageType StorageType { get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.ImageType</ReturnType>
</ReturnValue>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<returns > an object of type <see cref= "T:Gtk.ImageType" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "IconSet" >
<MemberSignature Language= "C#" Value= "public Gtk.IconSet IconSet { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gtk.IconSet</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gtk.IconSet" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Gets or sets the <see cref= "T:Gtk.Iconset" />
associated to the Image.</summary>
<param name= "value" > <see cref= "T:Gtk.Iconset" /> that will be
set to the Image.</param>
<returns > <see cref= "T:Gtk.Iconset" /> that the Image contains.</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "PixbufAnimation" >
<MemberSignature Language= "C#" Value= "public Gdk.PixbufAnimation PixbufAnimation { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.PixbufAnimation</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.PixbufAnimation" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Gets or sets the <see cref= "T:Gdk.PixbufAnimation" />
associated to the Image.</summary>
<param name= "value" > <see cref= "T:Gdk.PixbufAnimation" /> that will be
set to the Image.</param>
<returns > <see cref= "T:Gtk.PixbufAnimation" /> that the Image contains.</returns>
<remarks />
2003-02-12 02:00:12 +00:00
</Docs>
</Member>
<Member MemberName= "Mask" >
<MemberSignature Language= "C#" Value= "public Gdk.Pixmap Mask { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Pixmap</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.Pixmap" />
</Parameters>
<Docs >
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:Gdk.Pixmap" /> </param>
<returns > an object of type <see cref= "T:Gdk.Pixmap" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
<Member MemberName= "Pixmap" >
<MemberSignature Language= "C#" Value= "public Gdk.Pixmap Pixmap { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Pixmap</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.Pixmap" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Gets or sets the <see cref= "T:Gdk.Pixmap" />
associated to the Image.</summary>
<param name= "value" > <see cref= "T:Gdk.Pixmap" /> that will be
set to the Image.</param>
<returns > <see cref= "T:Gtk.Pixmap" /> that the Image contains.</returns>
<remarks />
</Docs>
2003-02-12 02:00:12 +00:00
</Member>
<Member MemberName= "ImageProp" >
<MemberSignature Language= "C#" Value= "public Gdk.Image ImageProp { set; get; };" />
<MemberType > Property</MemberType>
<ReturnValue >
<ReturnType > Gdk.Image</ReturnType>
</ReturnValue>
<Parameters >
<Parameter Name= "value" Type= "Gdk.Image" />
</Parameters>
<Docs >
2003-05-14 19:22:02 +00:00
<summary > Gets or sets the <see cref= "T:Gdk.Image" />
associated to the Image.</summary>
<param name= "value" > <see cref= "T:Gdk.Image" /> that will be
set to the Image.</param>
<returns > <see cref= "T:Gdk.Image" /> that the Image contains.</returns>
<remarks />
<summary > To be added</summary>
2003-06-12 04:17:57 +00:00
<param name= "value" > an object of type <see cref= "T:Gdk.Image" /> </param>
<returns > an object of type <see cref= "T:Gdk.Image" /> </returns>
2003-02-12 02:00:12 +00:00
<remarks > To be added</remarks>
</Docs>
</Member>
2003-03-07 01:30:00 +00:00
<Member MemberName= ".ctor" >
<MemberSignature Language= "C#" Value= "protected Image (GLib.Type gtype);" />
<MemberType > Constructor</MemberType>
<ReturnValue />
<Parameters >
<Parameter Name= "gtype" Type= "GLib.Type" />
</Parameters>
<Docs >
<summary > Internal constructor</summary>
<param name= "gtype" > GLib type for the type</param>
<returns > Creates a new instance of Image, using the GLib-provided type</returns>
<remarks >
<para > This is a constructor used by derivative types of <see cref= "T:Gtk.Image" /> that would have their own GLib type assigned to it. This is not typically used by C# code.</para>
</remarks>
</Docs>
</Member>
2003-02-12 02:00:12 +00:00
</Members>
2003-06-12 04:17:57 +00:00
</Type>