BitmapDataExtensionsClip(IWritableBitmapData, Rectangle) Method
Clips the specified
source using the specified
clippingRegion.
Unlike the
Clone methods, this one returns a wrapper,
providing access only to the specified region of the original
source.
This overload does not dispose
source when the result is disposed.
See the
Remarks section of the
Clip(IWritableBitmapData, Rectangle, Boolean) overload for details.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
public static IWritableBitmapData Clip(
this IWritableBitmapData source,
Rectangle clippingRegion
)
<ExtensionAttribute>
Public Shared Function Clip (
source As IWritableBitmapData,
clippingRegion As Rectangle
) As IWritableBitmapData
public:
[ExtensionAttribute]
static IWritableBitmapData^ Clip(
IWritableBitmapData^ source,
Rectangle clippingRegion
)
[<ExtensionAttribute>]
static member Clip :
source : IWritableBitmapData *
clippingRegion : Rectangle -> IWritableBitmapData
- source IWritableBitmapData
- The source bitmap data to be clipped.
- clippingRegion Rectangle
- A Rectangle that specifies a region within the source.
IWritableBitmapDataAn
IWritableBitmapData that provides access only to the specified region withing the
source.In Visual Basic and C#, you can call this method as an instance method on any object of type
IWritableBitmapData. 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).