The ObliqueSliceResolution option changes the resolution of the ObliqueImage. The OptionValue is set to 0, 1, 2, or 3. 0 sets the resolution to coarse. 1 sets the resolution to medium. 2 sets the resolution to fine. 3 sets the resolution to very fine.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “ObliqueImage”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ObliqueImage”)
object.Option(“ObliqueSliceResolution”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the ObliqueImage resolution to very fine.
CommandApi.Construct("ModifyModule")
CommandApi.Option("Module","ObliqueImage")
CommandApi.Option("ObliqueSliceResolution", "3")
CommandApi.Do()
Used by: ObliqueSlice
See Also