Returns the value associated with the given key.
value = lowdisc_cget (this,key)
the current object
a string. The name of the option to get. All options which can be set with lowdisc_configure can be get with lowdisc_cget.
the value associated with the key.
This command allows to get the current state of the object, which has been configured with the lowdisc_configure command.
lds = lowdisc_new("faure"); lds = lowdisc_configure(lds,"-dimension",3); method = lowdisc_cget(lds,"-method") nbdim = lowdisc_cget(lds,"-dimension") i = lowdisc_cget(lds,"-sequenceindex") verbose = lowdisc_cget(lds,"-verbose") lds lds = lowdisc_destroy(lds);