module Gdsii::Access::Sname
Public Instance Methods
sname()
click to toggle source
Get the referenced structure name (returns String).
# File lib/gdsii/mixins.rb, line 188 def sname() @records.get_data(GRT_SNAME); end
sname=(val)
click to toggle source
Set the referenced structure name.
# File lib/gdsii/mixins.rb, line 193 def sname=(val) @records.set(GRT_SNAME, val); end
sname_record()
click to toggle source
Get the referenced structure SNAME record (returns Record).
# File lib/gdsii/mixins.rb, line 183 def sname_record() @records.get(GRT_SNAME); end