PlaceInfo.Create 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
Create(Geopoint) |
Creates a PlaceInfo instance. |
Create(Geopoint, PlaceInfoCreateOptions) |
Creates a PlaceInfo instance. |
Create(Geopoint)
public:
static PlaceInfo ^ Create(Geopoint ^ referencePoint);
/// [Windows.Foundation.Metadata.Overload("Create")]
static PlaceInfo Create(Geopoint const& referencePoint);
[Windows.Foundation.Metadata.Overload("Create")]
public static PlaceInfo Create(Geopoint referencePoint);
function create(referencePoint)
Public Shared Function Create (referencePoint As Geopoint) As PlaceInfo
Parameters
- referencePoint
- Geopoint
The geographic map location that you want to show in a light-dismissible window.
Returns
A PlaceInfo instance that describes the location.
- Attributes
Applies to
Create(Geopoint, PlaceInfoCreateOptions)
public:
static PlaceInfo ^ Create(Geopoint ^ referencePoint, PlaceInfoCreateOptions ^ options);
/// [Windows.Foundation.Metadata.Overload("CreateWithGeopointAndOptions")]
static PlaceInfo Create(Geopoint const& referencePoint, PlaceInfoCreateOptions const& options);
[Windows.Foundation.Metadata.Overload("CreateWithGeopointAndOptions")]
public static PlaceInfo Create(Geopoint referencePoint, PlaceInfoCreateOptions options);
function create(referencePoint, options)
Public Shared Function Create (referencePoint As Geopoint, options As PlaceInfoCreateOptions) As PlaceInfo
Parameters
- referencePoint
- Geopoint
The geographic map location that you want to show in a light-dismissible window.
- options
- PlaceInfoCreateOptions
The optional information that describes this location. This information will appear in the light-dismissible window.
Returns
A PlaceInfo instance that describes the location.
- Attributes