UIActionSheetDelegate_Extensions Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Extension methods to the IUIActionSheetDelegate interface to support all the methods from the UIActionSheetDelegate protocol.
public static class UIActionSheetDelegate_Extensions
type UIActionSheetDelegate_Extensions = class
- Inheritance
-
UIActionSheetDelegate_Extensions
Remarks
The extension methods for IUIActionSheetDelegate allow developers to treat instances of the interface as having all the optional methods of the original UIActionSheetDelegate protocol. Since the interface only contains the required members, these extension methods allow developers to call the optional members of the protocol.
Methods
Canceled(IUIActionSheetDelegate, UIActionSheet) |
Indicates that the UIActionSheet was canceled. |
Clicked(IUIActionSheetDelegate, UIActionSheet, nint) |
Indicates that the button at the buttonIndex was clicked. |
Dismissed(IUIActionSheetDelegate, UIActionSheet, nint) |
Indicates that the action was dismissed from the screen due to pushing of the button at buttonIndex. |
Presented(IUIActionSheetDelegate, UIActionSheet) |
Indicates that the action sheet was presented to the user. |
WillDismiss(IUIActionSheetDelegate, UIActionSheet, nint) |
Indicates that the action sheet will shortly be dismissed due to pushing of the button at buttonIndex. |
WillPresent(IUIActionSheetDelegate, UIActionSheet) |
Indicates that the action sheet is about to be presented. |