if (width < 0)
throw new FunctionException(pc,"ImageDrawBeveledRect",3,"width","width must contain a none negative value");
if (height < 0)
throw new FunctionException(pc,"ImageDrawBeveledRect",4,"height","width must contain a none negative value");
img.draw3DRect((int)x, (int)y, (int)width, (int)height, raised, filled);
return null;
}
}