From: mu'tasem on
Dear sir ...
I have question about, how can enlarge (create) the (Plot -axes ) in new GUI ( Plot - axes) when i press enlarge button, and insert the existing data in the old GUI to the new one.

From: Walter Roberson on
mu'tasem wrote:

> I have question about, how can enlarge (create) the (Plot -axes ) in new
> GUI ( Plot - axes) when i press enlarge button, and insert the existing
> data in the old GUI to the new one.

copyobj()
From: mu'tasem on
Walter Roberson <roberson(a)hushmail.com> wrote in message <i2q4jt$49d$1(a)canopus.cc.umanitoba.ca>...
> mu'tasem wrote:
>
> > I have question about, how can enlarge (create) the (Plot -axes ) in new
> > GUI ( Plot - axes) when i press enlarge button, and insert the existing
> > data in the old GUI to the new one.
>
> copyobj()

but in GU1 i have axes , title, xlable and ylable ... how can copy all of this components to the GUI2
From: Walter Roberson on
mu'tasem wrote:
> Walter Roberson <roberson(a)hushmail.com> wrote in message
> <i2q4jt$49d$1(a)canopus.cc.umanitoba.ca>...
>> mu'tasem wrote:
>>
>> > I have question about, how can enlarge (create) the (Plot -axes ) in
>> new > GUI ( Plot - axes) when i press enlarge button, and insert the
>> existing > data in the old GUI to the new one.
>>
>> copyobj()
>
> but in GU1 i have axes , title, xlable and ylable ... how can copy all
> of this components to the GUI2

"copyobj -- Copy graphics objects and their descendants"

copyobj(findall(GU1,'Type','axes'),GU2);
From: mu'tasem on
Walter Roberson <roberson(a)hushmail.com> wrote in message <qYg4o.35489$xZ2.6465(a)newsfe07.iad>...
> mu'tasem wrote:
> > Walter Roberson <roberson(a)hushmail.com> wrote in message
> > <i2q4jt$49d$1(a)canopus.cc.umanitoba.ca>...
> >> mu'tasem wrote:
> >>
> >> > I have question about, how can enlarge (create) the (Plot -axes ) in
> >> new > GUI ( Plot - axes) when i press enlarge button, and insert the
> >> existing > data in the old GUI to the new one.
> >>
> >> copyobj()
> >
> > but in GU1 i have axes , title, xlable and ylable ... how can copy all
> > of this components to the GUI2
>
> "copyobj -- Copy graphics objects and their descendants"
>
> copyobj(findall(GU1,'Type','axes'),GU2);

Thanks a lot...Done