entwshwidget.wsc

来自「Apress - Managing Enterprise Systems Wit」· WSC 代码 · 共 50 行

WSC
50
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?