📄 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 + -