<p><strong><span style="font-size:16px;">Move方法</span></strong></p>
<p>移动控件。不支持命名参数。</p>
<p><br />
</p>
<p><span></span></p>
<p class="label"><b>语法</b></p>
<p><span class="emp"><i>object</i></span>.<b>Movable<b> <i>Left</i></b>,<i>Top</i>,<i>Width</i>,<i>Height</i></b></p>
<p><br />
</p>
<p><br />
</p>
<p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;">该<b>移动</b>方法的语法有以下部分:</p>
<div class="tablediv" style="color:#000000;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><table class="dtTABLE" style="border:1px solid #BBBBBB;"><tbody><tr><th width="18%">部分</th>
<th width="82%">描述</th>
</tr>
<tr><td width="18%" style="color:#2A2A2A;"><i>Object</i></td>
<td width="82%" style="color:#2A2A2A;">可选的。评估为“适用于”列表中的对象的对象表达式。如果<i><i>object</i></i>被省略,则具有焦点的表单被假定为<i><i>object</i></i>。</td>
</tr>
<tr><td width="18%" style="color:#2A2A2A;"><i>Left</i></td>
<td width="82%" style="color:#2A2A2A;">需要。单精度值表示<i><i>object</i></i>左边缘的水平坐标(x轴)。</td>
</tr>
<tr><td width="18%" style="color:#2A2A2A;"><i>Top</i></td>
<td width="82%" style="color:#2A2A2A;">可选的。单精度值,表示<i><i>object</i></i>上边缘的垂直坐标(y轴)。</td>
</tr>
<tr><td width="18%" style="color:#2A2A2A;"><i>Width</i></td>
<td width="82%" style="color:#2A2A2A;">可选的。单精度值指示<i>object</i>的新宽度。</td>
</tr>
<tr><td width="18%" style="color:#2A2A2A;"><i>Height</i></td>
<td width="82%" style="color:#2A2A2A;">可选的。单精度值表示<i><i>object</i></i>的新高度。</td>
</tr>
</tbody>
</table>
</div>
<p><br />
</p>
<p><br />
</p>
<p class="label"><b>说明</b></p>
<p><b></b></p>
<p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><b只有<i>Left参数是必需的。但是,要指定任何其他参数,必须在您要指定的参数之前指定出现在语法中的所有参数。例如,你不能指定<i>Width</i>,而不指定<i>Left</i>和<i>Top</i>。任何未指定的尾随参数保持不变。</b只有<i></p>
<p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;">对于Frame控件中的窗体和控件,坐标系始终以<strong>缇</strong>为单位。在屏幕上移动窗体或Move Frame中的控件始终相对于左上角的原点(0,0)。当在Form对象或<strong>PictureBox</strong><strong>(或</strong><strong>MDIForm</strong><strong>对象上的MDI子窗体)</strong>中移动控件时,将使用容器对象的坐标系。在设计时使用<strong>ScaleMode</strong>属性设置坐标系或测量单位。您可以使用<strong>Scale</strong>方法在运行时更改坐标系。</p>
<h4 class="dtH4" style="color:#000000;font-size:1.077em;font-family:'Segoe UI Semibold', 'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-weight:normal;"><b>例</b></h4>
<p style="color:#2A2A2A;font-family:'Segoe UI', 'Lucida Grande', Verdana, Arial, Helvetica, sans-serif;font-size:13px;"><b>此示例使用<b>Move</b>方法在屏幕上移动一个窗体。</b></p>
<pre class="prettyprint lang-vb">Private Sub Form_Click ()
Dim Inch, Msg ' Declare variables.
Msg = "Choose OK to resize and move this form by "
Msg = Msg & "changing the value of properties."
MsgBox Msg ' Display message.
Inch = 1440 ' Set inch in twips.
Width = 4 * Inch ' Set width.
Height = 2 * Inch ' Set height.
Left = 0 ' Set left to origin.
Top = 0 ' Set top to origin.
Msg = "Now choose OK to resize and move this form "
Msg = Msg & "using the Move method."
MsgBox Msg ' Display message.
Move Screen.Width - 2 * Inch, Screen.Height - Inch, 2 * Inch, Inch
End Sub</pre>
- 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电脑 节点行间距太小的解决办法
- 详细属性和事件