The MoveUp method moves the ENVIAnnotationLayer up one level in the order stack.
Example
e = ENVI()
file = FILEPATH('qb_boulder_msi', $
ROOT_DIR=e.ROOT_DIR, SUBDIRECTORY = ['data'])
raster = e.OpenRaster(file)
View = e.GetView()
RasterLayer = View.CreateLayer(raster)
annotation = ENVIAnnotationSet(/GEOGRAPHIC)
annotation.AddCircle, $
-105.22101050, 39.9917, $
[300.0, 200.0], $
LINE_COLOR='lime green', NAME='Park polygon'
annotation.AddText, $
-105.22118409, 39.99424191, $
'East Boulder!C Community Park', $
GLYPH_COLOR='lime green', NAME='Park label'
outFile = e.GetTemporaryFilename()
annotation.Save, outFile
AnnLayer = View.CreateLayer(annotation)
annotation2 = ENVIAnnotationSet(/GEOGRAPHIC)
annotation2.AddText, $
-105.20407487D, 39.99911740D, $
'Baseline!C Reservoir', $
GLYPH_COLOR='light sky blue', $
NAME='Reservoir label'
outFile2 = e.GetTemporaryFilename()
annotation2.Save, outFile2
AnnLayer2 = View.CreateLayer(annotation2)
AnnLayer2.MoveUp
Syntax
ENVIAnnotationLayer.MoveUp [, ERROR=variable]
Keywords
ERROR
Set this keyword to a named variable that will contain any error message issued during execution of this routine. If no error occurs, the ERROR variable will be set to a null string (''). If an error occurs and the routine is a function, then the function result will be undefined.
When this keyword is not set and an error occurs, ENVI returns to the caller and execution halts. In this case, the error message is contained within !ERROR_STATE and can be caught using IDL's CATCH routine. See IDL Help for more information on !ERROR_STATE and CATCH.
See Manage Errors for more information on error handling in ENVI programming.
Version History
API Version
4.3
See Also
ENVIAnnotationLayer