![]() |
|
IconExtensionsCombine Method (Icon, Bitmap) | KGy SOFT Drawing Libraries Help |
Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 4.6.0
Syntax
public static Icon Combine( this Icon icon, params Bitmap[] images )
<ExtensionAttribute> Public Shared Function Combine ( icon As Icon, ParamArray images As Bitmap() ) As Icon
public: [ExtensionAttribute] static Icon^ Combine( Icon^ icon, ... array<Bitmap^>^ images )
[<ExtensionAttribute>] static member Combine : icon : Icon * images : Bitmap[] -> Icon
Parameters
- icon
- Type: System.DrawingIcon
The icon to combine with other images. - images
- Type: System.DrawingBitmap
The images to be added to the icon. Images can be non-squared ones.
Return Value
Type: IconAn Icon instance that contains every image of the source images.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Icon. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Remarks
See Also