Question: Change the name of an option in plots ?

Lets say I would like to construct a procedure which 

a) Allowed to call the view option from plots:-display by a different name? Lets say zoom. 

So the argument would PlotGraph(x^2,zoom = [-5..5,-5..5]) 

Is that by any means theoretically possible ? 

PlotGraph := proc(func::anything, zoom := {(x::range := a .. b), (y::range := c .. d)}) plots:-display(plot(func), view = zoom); end proc;

PlotGraph(x^2 , zoom = [0 .. 1, -5 .. 5]);


Error, (in plots:-display) expecting option view to be of type {"default", list({"default", range(realcons)}), range(realcons)} but received zoom = [0 .. 1, -5 .. 5]

 

So question to forum what am I doing wrong? 
 

 

Please Wait...