GdPicture.NET.14.API
GdPicture14 Namespace / GdPictureImaging Class / SaveAsICO Method / SaveAsICO(Int32,String,IconSize) Method
GdPicture image identifier.
A string that contains the name of the file to which to save the image. Can be an empty string. If empty, prompts the user to select a file. You can subsequently use the GetLastPath() method to retrieve the path of the selected file.
A member of the IconSize enumeration. The icons size.





In This Topic
SaveAsICO(Int32,String,IconSize) Method
In This Topic
Saves a GdPicture image as a window icon image.
Syntax
'Declaration
 
Public Overloads Function SaveAsICO( _
   ByVal ImageID As Integer, _
   ByVal FilePath As String, _
   ByVal IconSize As IconSize _
) As GdPictureStatus
public GdPictureStatus SaveAsICO( 
   int ImageID,
   string FilePath,
   IconSize IconSize
)
public function SaveAsICO( 
    ImageID: Integer;
    FilePath: String;
    IconSize: IconSize
): GdPictureStatus; 
public function SaveAsICO( 
   ImageID : int,
   FilePath : String,
   IconSize : IconSize
) : GdPictureStatus;
public: GdPictureStatus SaveAsICO( 
   int ImageID,
   string* FilePath,
   IconSize IconSize
) 
public:
GdPictureStatus SaveAsICO( 
   int ImageID,
   String^ FilePath,
   IconSize IconSize
) 

Parameters

ImageID
GdPicture image identifier.
FilePath
A string that contains the name of the file to which to save the image. Can be an empty string. If empty, prompts the user to select a file. You can subsequently use the GetLastPath() method to retrieve the path of the selected file.
IconSize
A member of the IconSize enumeration. The icons size.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

See Also