Class StampAnnotationMovedOrResizedEventArgs
Provides data for the StampAnnotationMovedOrResized event.
Inheritance
System.Object
StampAnnotationMovedOrResizedEventArgs
Namespace: Syncfusion.SfPdfViewer.iOS
Assembly: Syncfusion.SfPdfViewer.iOS.dll
Syntax
public class StampAnnotationMovedOrResizedEventArgs : EventArgs
Constructors
StampAnnotationMovedOrResizedEventArgs(UIView, Int32, CGRect, CGRect)
Instantiates a new instance of the StampAnnotationMovedOrResizedEventArgs class.
Declaration
public StampAnnotationMovedOrResizedEventArgs(UIView customView, int pageNumber, CGRect oldBounds, CGRect newBounds)
Parameters
Type | Name | Description |
---|---|---|
UIKit.UIView | customView | |
System.Int32 | pageNumber | The page number in which the stamp is added. |
CoreGraphics.CGRect | oldBounds | The bounds of the stamp annotation before the move or resize operation. |
CoreGraphics.CGRect | newBounds | The bounds of the stamp annotation after the move or resize operation. |
Properties
CustomStampView
Gets the View that has been added as a custom stamp annotation using the AddStamp method.
Declaration
public UIView CustomStampView { get; }
Property Value
Type |
---|
UIKit.UIView |
NewBounds
Gets the bounds of the modified CustomView
Declaration
public CGRect NewBounds { get; }
Property Value
Type |
---|
CoreGraphics.CGRect |
OldBounds
Gets the bounds of the modified CustomView
Declaration
public CGRect OldBounds { get; }
Property Value
Type |
---|
CoreGraphics.CGRect |
PageNumber
Gets the pagenumber of the modified CustomView
Declaration
public int PageNumber { get; }
Property Value
Type |
---|
System.Int32 |