;+
; NAME:
;	SMEI_SEQUENCE::GET_ANNOTATIONS
;
;
; PURPOSE:
;	Return the state of the various plot annotation flags
;
;
; CATEGORY:
;	SMEI_SEQUENCE
;
;
; CALLING SEQUENCE:
;	flag = seqref -> get_annotation(<selector>)
;
;
; KEYWORD PARAMETERS:
;	grid	Query plotting of a grid or not
;	date	Query adding the date
;	file	Query adding the filename
;	range	Query adding the range.
;
;
; OUTPUTS:
;	flag	byte	The state of the requested option
;
;
; MODIFICATION HISTORY:
;	Original: 12/12/02; SJT
;-

function smei_sequence::get_annotations, grid = grid, date = date, $
                                          file = file, range = range

if keyword_set(grid) then return, self.options.grid
if keyword_set(date) then return, self.options.date
if keyword_set(file) then return, self.options.file
if keyword_set(range) then return, self.options.range

return, 0b

end
