⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thumbnail.as

📁 Yahoo!search API. 用于搜索引擎接口
💻 AS
字号:
/*Copyright (c) 2007, Yahoo! Inc. All rights reserved.Code licensed under the BSD License:http://developer.yahoo.com/flash/license.html*/package com.yahoo.webapis.search{	[Bindable]	/**	 * Thumbnail is a Value Object for the Search API.	 * @langversion ActionScript 3.0	 * @playerversion Flash 9	 * @author Alaric Cole 02/22/07	*/	public class Thumbnail extends Object	{						private var _url:String;				private var _height:Number;		private var _width:Number;						/**		 * Construct a new Thumbnail instance.		 *		 */		public function Thumbnail(url:String = null)		{			this.url = url;		}								/**		 * The url to the Thumbnail.		 */		public function get url():String		{			return _url;		}				public function set url( value:String ):void		{			_url = value;		}								/**		 * The height of the Thumbnail in pixels.		 */		public function get height():Number		{			return _height;		}				public function set height( value:Number ):void		{			_height = value;		}				/**		 * The width of the Thumbnail in pixels.		 */		public function get width():Number		{			return _width;		}				public function set width( value:Number ):void		{			_width = value;		}			}}

⌨️ 快捷键说明

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