?? frame.m
字號:
%
% Syntax: h = frame(strCaption,intCoords,RGBcolor)
%
% Result: h is a handle to a new frame, titled strCaption and positioned
% at intCoords = [left,bottom,width,height]. The frame's Background-
% Color property has been set to RGBcolor.
%
% Petur Snaeland, 01.05.1995.
%
function [hFrame] = frame(strCaption,intCoords,RGBcolor)
hFrame = uicontrol('Style','frame','String',strCaption, ...
'Position',intCoords,'BackgroundColor',RGBcolor);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -