module Gdsii::Access::ELFlags
Public Instance Methods
elflags()
click to toggle source
Get the elflags record data (returns Fixnum)
# File lib/gdsii/mixins.rb, line 67 def elflags() @records.get_data(GRT_ELFLAGS); end
elflags=(val)
click to toggle source
Set the elflags record
# File lib/gdsii/mixins.rb, line 70 def elflags=(val) @records.set(GRT_ELFLAGS,val); end
elflags_record()
click to toggle source
Get the elflags record (returns Record)
# File lib/gdsii/mixins.rb, line 64 def elflags_record() @records.get(GRT_ELFLAGS); end