Constructor keys.keys
Overload
public keys(OKey cloneOptions)
Parameters
cloneOptions (OKey)
Options to be copied to keys.Options of this variable. If |
Examples
var k = new keys(opt.init.key);
k.Options.KeySpeed = 50;
k.AddKeys("Tab // Space").AddRepeat(3).AddText("text").AddKey(KKey.Enter).AddSleep(500);
k.SendNow(); //sends and clears the variable
k.Add("Tab // Space*3", "!text", KKey.Enter, 500); //the same as the above k.AddKeys... line
for(int i = 0; i < 5; i++) k.SendNow(true); //does not clear the variable