param_inline.js

来自「JsDoc Toolkit 是一个把js描述格式化成文档的工具。开发者只需按Js」· JavaScript 代码 · 共 38 行

JS
38
字号
/**	@constructor	@param columns The number of columns.*/function Layout(/**int*/columns){	/**		@param [id] The id of the element.		@param elName The name of the element.	*/	this.getElement = function(		/** string */ elName,		/** number|string */ id	) {	};		/** 		@constructor	 */	this.Canvas = function(top, left, /**int*/width, height) {		/** Is it initiated yet? */		this.initiated = true;	}		this.rotate = function(/**nothing*/) {	}		/** 	@param x	@param y	@param {zoppler} z*/	this.init = function(x, y, /**abbler*/z) {		/** The xyz. */		this.xyz = x+y+z;		this.getXyz = function() {		}	}}

⌨️ 快捷键说明

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