VGetSearchWin メソッド

解説
サーチウィンドウの座標を検索します。

書式
Sub VGetSearchWin (Sequence As String, Object As String, ByRef Left As Integer, ByRef Top As Integer, ByRef Width As Integer, ByRef Height As Integer)

パラメーター

  • Sequence
    カレントプロジェクトのビジョンシーケンス名を表す文字列式
  • Object
    シーケンスのオブジェクト名を表す文字列式
  • Left
    ピクセル単位で表わされる左の座標を表す整数変数
  • Top
    ピクセル単位で表わされる上の座標を表す整数変数
  • Width
    ピクセル単位で表わされる幅を表す整数変数
  • Height
    ピクセル単位で表わされる高さを表す整数変数

参照
VGetModelWin メソッド, VSetModelWin メソッド, VSetSearchWin メソッド

VGetSearchWin 使用例
VB 例:

Dim left As Integer, top As Integer  
Dim width As Integer, height As Integer  
  
With m_spel  
    .VGetSearchWin("testSeq", "corr01", left, top, _   
       width, height)  
    .VSetSearchWin("testSeq", "corr01", newLeft, top, _  
       width, height)  
    .VRun("testSeq")  
End With  

C# 例:

int left, top, width, height;  
  
m_spel.VGetSearchWin("testSeq", "corr01", out left, out top,  
       out width, out height);  
m_spel.VSetSearchWin("testSeq", "corr01", newLeft, top,   
       width, height);  
m_spel.VRun("testSeq");