UIView.MultipleTouchEnabled Property
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.
Controls whether the UIView can handle multitouch events.
[ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool MultipleTouchEnabled { [Foundation.Export("isMultipleTouchEnabled")] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] get; [Foundation.Export("setMultipleTouchEnabled:")] [ObjCRuntime.Unavailable(ObjCRuntime.PlatformName.TvOS, ObjCRuntime.PlatformArchitecture.All, null)] set; }
member this.MultipleTouchEnabled : bool with get, set
Property Value
State of multiple touch recotgnition.
- Attributes
Remarks
UIViews by default only handle a single touch event at once. If you want your view to handle multiple touches, you must set this property to true.