Description
Sets the boundary area type to Pattern.
Syntax
Parameters
See Also
Example
Define area target boundary and position from list of lat/lon/alt (using common tasks)
[C#] |
---|
// By using the CommonTasks interface,
// make an array of lattitude and longitude boundary points
Array boundary = new object[,]
{
{ 48.897, 18.637 },
{ 46.534, 13.919 },
{ 44.173, 21.476 }
};
// SetAreaTypePattern expects a two dimensional array of latitude and longitude values
areaTarget.CommonTasks.SetAreaTypePattern(ref boundary);
|
|
Define area target boundary and position from list of lat/lon/alt (using common tasks)
[Visual Basic .NET] |
---|
' By using the CommonTasks interface,
' make an array of lattitude and longitude boundary points
Dim boundary As Array = New Object(,) {{48.897, 18.637}, {46.534, 13.919}, {44.173, 21.476}}
' SetAreaTypePattern expects a two dimensional array of latitude and longitude values
areaTarget.CommonTasks.SetAreaTypePattern(boundary)
|
|