getlinestyle.m

来自「matlab处理图像的一些基本方法。其中有一部分mex程序需要安装编译」· M 代码 · 共 28 行

M
28
字号
function ls=getlinestyle%GETLINESTYLE  Return the current line style.%%	STYLE = GETLINESTYLE%%	getlinestyle return the UserData of the cheked on menu%%	See also: GETLINEWIDTH, GETPENCOLOR, GETFILLCOLOR, %		  GETFONT, GETFONTSTYLE, GETFONTSIZE.%%	Claudio  May 16 1995%%% Copyright (c) 1995 by Claudio Rivetti and Mark Young% claudio@alice.uoregon.edu,    mark@alice.uoregon.edu%global Handlefigmnb=findobj(finduimenu(Handlefig), 'label', 'Options');mn=findobj(mnb, 'label', ' Line Style');ch=get(mn, 'children');ck=findobj(ch, 'checked', 'on');         ls=get(ck, 'UserData');return

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?