LauncherUIOptions
LauncherUIOptions
LauncherUIOptions
LauncherUIOptions
Class
Definition
Specifies options for user interface elements such as the application picker that can be invoked by this API.
public : sealed class LauncherUIOptions : ILauncherUIOptionspublic sealed class LauncherUIOptions : ILauncherUIOptionsPublic NotInheritable Class LauncherUIOptions Implements ILauncherUIOptions// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0 - for Xbox, see UWP features that aren't yet supported on Xbox)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
InvocationPoint InvocationPoint InvocationPoint InvocationPoint
Gets or sets the point on the screen where the user opened a file or URI.
public : IReference<Point> InvocationPoint { get; set; }public Nullable<Point> InvocationPoint { get; set; }Public ReadWrite Property InvocationPoint As Nullable<Point>// You can use this property in JavaScript.
- Value
- IReference<Point> Nullable<Point> Nullable<Point> Nullable<Point>
The invocation point.
Remarks
To get or set the selection rectangle, use the SelectionRect method.
Important
This property is only implemented on Desktop devices.
- See Also
PreferredPlacement PreferredPlacement PreferredPlacement PreferredPlacement
Gets or sets the preferred placement of the Open With and Warning dialog boxes when starting a default app.
public : Placement PreferredPlacement { get; set; }public Placement PreferredPlacement { get; set; }Public ReadWrite Property PreferredPlacement As Placement// You can use this property in JavaScript.
Remarks
Important
This property is only implemented on Desktop devices.
- See Also
SelectionRect SelectionRect SelectionRect SelectionRect
Gets or sets the selection rectangle on the screen where the user opened a file or URI.
public : IReference<Rect> SelectionRect { get; set; }public Nullable<Rect> SelectionRect { get; set; }Public ReadWrite Property SelectionRect As Nullable<Rect>// You can use this property in JavaScript.
- Value
- IReference<Rect> Nullable<Rect> Nullable<Rect> Nullable<Rect>
The selection rectangle.
Remarks
To get or set the invocation point, use the InvocationPoint method.
Important
This property is only implemented on Desktop devices.
- See Also