Provides access to members that control the raster type environment.
Members
Name | Description | |
---|---|---|
GetTimeStamp | Returns a time stamp associated either with the present instance in time or with the optional file path. | |
LoadItemURI | Loads an item URI object from a blob. | |
LoadRasterType | Loads a raster type object from a blob. | |
RasterTypeNames | Names of all raster types installed on the system. | |
ReplacePath | Replaces one or more parts of the specified input path using two arrays that map path values. | |
SaveItemURI | Saves an item URI object to a blob. | |
SaveRasterType | Saves a raster type object to a blob. |
IRasterTypeEnvironment.GetTimeStamp Method
Returns a time stamp associated either with the present instance in time or with the optional file path.
Public Function GetTimeStamp ( _
ByVal FilePath As String _
) As DateTime
public DateTime GetTimeStamp (
string FilePath
);
IRasterTypeEnvironment.LoadItemURI Method
Loads an item URI object from a blob.
Public Function LoadItemURI ( _
ByVal pBlob As IMemoryBlobStream _
) As IItemURI
public IItemURI LoadItemURI (
IMemoryBlobStream pBlob
);
IRasterTypeEnvironment.LoadRasterType Method
Loads a raster type object from a blob.
Public Function LoadRasterType ( _
ByVal pBlob As IMemoryBlobStream _
) As IRasterType
public IRasterType LoadRasterType (
IMemoryBlobStream pBlob
);
IRasterTypeEnvironment.RasterTypeNames Property
Names of all raster types installed on the system.
Public ReadOnly Property RasterTypeNames As IStringArray
public IStringArray RasterTypeNames {get;}
IRasterTypeEnvironment.ReplacePath Method
Replaces one or more parts of the specified input path using two arrays that map path values.
Public Function ReplacePath ( _
ByVal pOldPaths As IStringArray, _
ByVal pNewPaths As IStringArray, _
ByVal inputPath As String _
) As String
public string ReplacePath (
IStringArray pOldPaths,
IStringArray pNewPaths,
string inputPath
);
IRasterTypeEnvironment.SaveItemURI Method
Saves an item URI object to a blob.
Public Function SaveItemURI ( _
ByVal pItemURI As IItemURI _
) As IMemoryBlobStream
public IMemoryBlobStream SaveItemURI (
IItemURI pItemURI
);
IRasterTypeEnvironment.SaveRasterType Method
Saves a raster type object to a blob.
Public Function SaveRasterType ( _
ByVal pRasterType As IRasterType _
) As IMemoryBlobStream
public IMemoryBlobStream SaveRasterType (
IRasterType pRasterType
);
Classes that implement IRasterTypeEnvironment
Classes | Description |
---|---|
RasterTypeEnvironment | The raster type environment. |