📄 ga_text.m
字号:
function [handle]=text(w1,x,y,xw,yh,s,fc,bc)
%
% Useage:
% [handle]=text(w1,x,y,xw,yh,s,fc,bc)
%
% Prints a text object with the following attributes
%
% window : w1
% position: x,y
% size : xw,yh
% text : s
% fg col : fc
% bg col : bc
%
handle=uicontrol(w1,...
'style','text',...
'position',[x y xw yh],...
'string',num2str(s),...
'foregroundcolor',fc,...
'backgroundcolor',bc);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -