module Gdsii::Access::Datatype

Access Datatype attribute

Public Instance Methods

datatype() click to toggle source

Get the datatype number (returns Fixnum)

# File lib/gdsii/mixins.rb, line 35
def datatype() @records.get_data(GRT_DATATYPE); end
datatype=(val) click to toggle source

Set the datatype number

# File lib/gdsii/mixins.rb, line 38
def datatype=(val) @records.set(GRT_DATATYPE, val); end
datatype_record() click to toggle source

Get the datatype record (returns Record)

# File lib/gdsii/mixins.rb, line 32
def datatype_record() @records.get(GRT_DATATYPE); end