Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SendKeys.Send("test text {sleep 250} another test text");C#に似たものがあるかどうか知りたいです。
SendKeys.Send("test text {sleep 250} another test text");
使用できることはわかってThread.Sleepいますが、ユーザー入力から文字列を取得しているため、何回スリープする必要があるかを知ることができません。
Thread.Sleep
SendKeys.Send()弦の途中で一時停止する方法はないと思います。
SendKeys.Send()
ユーザー入力から送信する文字列を読み取る場合は、この文字列を部分的な文字列のリストに解析して送信および一時停止することをお勧めします。
つまり、例を使用すると、文字列のリスト:"text text "、" another test test" およびスリープ間隔のリストがあります。250
"text text "
" another test test"
250
スリープ間隔のリストは、当然、送信する文字列のリストよりも常に1項目短くなります。