正确答案
(1)利用set(句柄,‘属性名称’,属性值)语句可以设置指定对象的属性,get(句柄,‘属性名称’)语句可以获得指定对象的属性。
(2)>>set(h)
Alphamap
BackingStore:[{on}
Off]
CloseRequestFcn:string-or-functionhandle-or-cellarray
Color
Colormap
CurrentAxes
CurrentCharacter
CurrentObject
……
从列出的属性内容可以看到,设置背景颜色的属性名为Color,因此
>>set(h,’color’,’w’)
即可将图形窗口的背景色改为白色。
试题解析