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