<p><span style="line-height:1.78571;">这个属性返回或设置对 Node 或 ListItem 对象的引用,在光标移动到该对象上时,它就被突出显示为系统的突出颜色。</span></p>
<p class="label" style="font-size:12px;">语法</p>
<p><span class="emp"><i>object</i></span>.<span style="font-weight:700;">DropHighlight</span> [ = <span class="emp"><i>value</i></span>]</p>
<p><span style="font-weight:700;">DropHighlight </span>属性的语法包含下面部分:</p>
<table class="MsoNormalTable" border="1" cellpadding="0" style="width:650px;"><tbody><tr><td width="29%" valign="top"><p class="MsoNormal"><span style="font-weight:700;"><span style="font-size:9pt;font-family:宋体;">部分</span></span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
<td width="71%" valign="top"><p class="MsoNormal"><span style="font-weight:700;"><span style="font-size:9pt;font-family:宋体;">描述</span></span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
</tr>
<tr><td width="29%" valign="top"><p class="MsoNormal"><span class="emp"><i><span style="font-size:9pt;">object</span></i></span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
<td width="71%" valign="top"><p class="MsoNormal"><span style="font-size:9pt;font-family:宋体;">对象表达式</span><span style="font-size:9pt;font-family:宋体;">,其值是“应用于”列表中的一个对象。</span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
</tr>
<tr><td width="29%" valign="top"><p class="MsoNormal"><span class="emp"><i><span style="font-size:9pt;">value</span></i></span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
<td width="71%" valign="top"><p class="MsoNormal"><span style="font-weight:700;"><span style="font-size:9pt;font-family:宋体;">Node </span></span><span style="font-size:9pt;font-family:宋体;">或 <span style="font-weight:700;">ListItem </span>对象</span><span style="font-size:9pt;font-family:宋体;"></span></p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal"> </p>
<p class="label" style="font-size:12px;">说明</p>
<p><span style="font-weight:700;">DropHighlight </span>属性一般在拖放操作中与 <span style="font-weight:700;">HitTest </span>方法联用。在光标拖动到 <span style="font-weight:700;">ListItem </span>或 <span style="font-weight:700;">Node </span>对象上时,<span style="font-weight:700;">HitTest </span>方法返回对任何被拖到的对象的引用。接着,<span style="font-weight:700;">DropHighlight </span>属性被设置为点中的对象,同时返回对那个对象的引用。然后 <span style="font-weight:700;">DropHighlight </span>属性就用系统突出颜色突出点中的对象。以下代码将 <span style="font-weight:700;">DropHighlight </span>设置为用 <span style="font-weight:700;">HitTest </span>方法点中的对象。</p>
<p><br />
</p>
<pre class="prettyprint lang-vb">Private Sub TreeView1_DragOver (Source As Control, X As Single, Y As Single, State As Integer)
Set TreeView1.DropHighlight = TreeView1.HitTest(X,Y)
End Sub</pre>
<p><br />
</p>
<p>在后面的 DragDrop 事件中用 <span style="font-weight:700;">DropHighlight </span>属性返回对源控件最终落在其上的对象的引用,如以下代码所示:</p>
<p><br />
</p>
<pre class="prettyprint lang-vb">Private Sub TreeView1_DragDrop (Source As Control, x As Single, y As Single)
'DropHighlight 返回对拖放操作发生在其上的对象的引用。
Me.Caption = TreeView1.DropHighlight.Text
'为了释放 DropHighlight 引用,将它设置为 Nothing。
Set TreeView1.DropHighlight = Nothing
End Sub</pre>
<p><br />
</p>
<p>注意,在前面的例子中,在过程完成之后,<span style="font-weight:700;">DropHighlight </span>属性被设置为 Nothing。为了释放突出效果必须这样做。</p>
<p><br />
</p>
- Access树控件介绍
- 微软树控件的缺点
- 版本兼容出错
- 不支持64位的Office
- Access树控件的优点
- Access扩展控件库--树控件的创建和添加节点
- Access扩展控件库--树控件节点图标
- Access扩展控件库--树控件常用属性
- Appearance 属性(ActiveX 控件)
- BackColor 属性(ActiveX 控件)
- BackPicture 属性(ActiveX 控件)
- BorderStyle 属性(ActiveX 控件)
- Checkboxes 属性
- Container 属性(ActiveX 控件)
- DropHighlight 属性(ListView 和 TreeView 控件)
- EditBox 属性(ActiveX 控件)
- Enabled 属性(ActiveX 控件)
- Font 属性(ActiveX 控件)
- FullRowSelect 属性(ActiveX 控件)
- Height 属性(ActiveX 控件)
- Access扩展控件库--树控件常用方法
- AboutBox 方法
- AddImage 方法
- AddImageGroup 方法
- CollapseAllNode 方法
- Create 方法
- Echo 方法
- ExpandAllNode 方法
- GetVisibleCount 方法
- HitTest 方法(ListView 和 TreeView 控件)
- Move 方法
- Refresh 方法
- SetFocus 方法
- Access扩展控件库--树控件常用事件
- AfterLabelEdit 事件(ListView 和 TreeView 控件)
- BeforeLabelEdit 事件(ListView 和 TreeView 控件)
- Click 事件
- Collapse 事件(TreeView 控件)
- DblClick 事件
- Expand 事件(TreeView 控件)
- GotFocus 事件
- KeyDown 事件
- KeyPress 事件
- KeyUp 事件
- Access树控件注意问题
- Access树控件(treeview) 64位Office下出现横向滚动条不会自动定位的解决办法
- Access中国树控件 在win10电脑 节点行间距太小的解决办法
- 详细属性和事件