Initializes a Raster Image Globe Overlay with the provided values.
[Visual Basic .NET] |
---|
Public Function InitializeWithString( _ ByVal Uri As String, _ ByVal Extent As System.Array _ ) As IAgStkGraphicsRasterImageGlobeOverlay |
[C#] |
---|
public IAgStkGraphicsRasterImageGlobeOverlay InitializeWithString( string Uri, System.Array Extent ); |
[Managed C++] |
---|
public: IAgStkGraphicsRasterImageGlobeOverlay^ InitializeWithString( String __gc ^ Uri, System::Array ^ Extent ); |
[Unmanaged C++] |
---|
public: HRESULT InitializeWithString( BSTR Uri, SAFEARRAY * * Extent, IAgStkGraphicsRasterImageGlobeOverlay ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsRasterImageGlobeOverlay initializeWithString( String Uri, AgSafeArray Extent ); |
[Python - STK API ] |
---|
def InitializeWithString(self, Uri:str, Extent:list) -> "IAgStkGraphicsRasterImageGlobeOverlay": |
- Uri
- The String that represents the Uri that points to the raster file.
- Extent
- An array representing the Cartographic Extent of the overlay. The elements should be provided in the order west longitude, south latitude, east longitude, north latitude.
Shows the format of the Extent parameter when creating a raster imgae globe overlay.
[C#] | ||
---|---|---|
|
Shows the format of the Extent parameter when creating a raster imgae globe overlay.
[Visual Basic .NET] | ||
---|---|---|
|