FieldImage.(constructor)
构造 FieldImage
类的新实例
Signature:
constructor(src: string | typeof Field.SKIP_SETUP, width: string | number, height: string | number, alt?: string, onClick?: (p1: FieldImage) => void, flipRtl?: boolean, config?: FieldImageConfig);
参数
参数 | 类型 | 说明 |
---|---|---|
src | 字符串 |Field.SKIP_SETUP 的类型 | 图片的网址。如果您希望跳过设置过程,则也接受 Field.SKIP_SETUP(仅供希望在自己的构造函数运行后处理配置和设置字段值的子类使用)。 |
width | 字符串 |号码 | 图片的宽度。 |
高度 | 字符串 |号码 | 图片的高度。 |
alt | 字符串 | (可选)(可选)区块收起时的替代文本。 |
_trackEvent() | (p1:FieldImage)=>无效 | (可选)点击图片时要调用的可选函数。如果定义了 onClick,还必须定义 alt。 |
flipRtl | 布尔值 | (可选)是否在 RTL 界面中翻转图标。 |
config | FieldImageConfig | (可选)用于配置该字段的选项映射。如需查看此参数支持的属性列表,请参阅 [字段创建文档]https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/image#creation。 |