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

📄 entwshwidget.wsc

📁 Apress - Managing Enterprise Systems With The Windows Script Host Source Code
💻 WSC
字号:
<?xml version="1.0"?>
<component>

<registration
    description="ENTWSH Test Widget Component"
    progid="ENTWSH.Widget"
    version="1.00"
    classid="{35f5fa40-6ace-11d4-bce1-00104b164591}"
	remotable="true"
>
</registration>

<public>
	<property name="Color">
		<get/>
		<put/>
	</property>
	<property name="Age" internalName = "nAge"/>	
    <method name="Search">
    </method>
    <event name="FoundFile">
      <parameter name="filepath"/>
     </event>
</public>

<script language="VBScript">
<![CDATA[

dim Color
dim nAge

function get_Color()
	get_Color = Color
end function

function put_Color(newValue)
	Color = newValue
     
end function

Function Search()
  fireEvent "FoundFile", "heh"
End Function

]]>
</script>
</component>


⌨️ 快捷键说明

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