WindowingEnvironment.FindAll Method
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.
Overloads
FindAll() |
Retrieves a collection of all existing windowing environments in the system. |
FindAll(WindowingEnvironmentKind) |
Retrieves a collection of all existing windowing environments in the system of the specified kind. |
FindAll()
Retrieves a collection of all existing windowing environments in the system.
public:
static IVectorView<WindowingEnvironment ^> ^ FindAll();
/// [Windows.Foundation.Metadata.Overload("FindAll")]
static IVectorView<WindowingEnvironment> FindAll();
[Windows.Foundation.Metadata.Overload("FindAll")]
public static IReadOnlyList<WindowingEnvironment> FindAll();
function findAll()
Public Shared Function FindAll () As IReadOnlyList(Of WindowingEnvironment)
Returns
A collection of all existing windowing environments in the system.
- Attributes
Applies to
FindAll(WindowingEnvironmentKind)
Retrieves a collection of all existing windowing environments in the system of the specified kind.
public:
static IVectorView<WindowingEnvironment ^> ^ FindAll(WindowingEnvironmentKind kind);
/// [Windows.Foundation.Metadata.Overload("FindAllWithKind")]
static IVectorView<WindowingEnvironment> FindAll(WindowingEnvironmentKind const& kind);
[Windows.Foundation.Metadata.Overload("FindAllWithKind")]
public static IReadOnlyList<WindowingEnvironment> FindAll(WindowingEnvironmentKind kind);
function findAll(kind)
Public Shared Function FindAll (kind As WindowingEnvironmentKind) As IReadOnlyList(Of WindowingEnvironment)
Parameters
The kind of windowing environment to find.
Returns
A collection of all existing windowing environments in the system of the specified kind.
- Attributes