help_handlers.m

来自「任意边界结构正交曲线网格生成程序」· M 代码 · 共 25 行

M
25
字号
function theResult = help_handlers(self, varargin)%    Event-handlers are registered with "ps" using the% "handler" method, which requires the name of an event,% such as 'Print', and the name of the corresponding method% that will handle the event, such as 'doprint'.  Any number% of event/handler pairs can be placed in the argument list,% as in "self = handler(self, theEvent, theHandler, ...)".%    Handlers are always called with three input arguments,% as in "self = doprint(self, theEvent, theMessage)".%    See "help ps/handler". % Copyright (C) 1999 Dr. Charles R. Denham, ZYDECO.%  All Rights Reserved.%   Disclosure without explicit written consent from the%    copyright owner does not constitute publication. % Version of 04-Nov-1999 14:41:34.% Updated    05-Nov-1999 20:08:50.h = help(mfilename);helpdlg(h, 'PS Handlers')if nargout > 0, theResult = self; end

⌨️ 快捷键说明

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