vJoyInterfaceWrap.vJoy.SetBtn C# (CSharp) Method

SetBtn() public method

public SetBtn ( bool Value, UInt32 rID, uint nBtn ) : bool
Value bool
rID UInt32
nBtn uint
return bool
        public bool SetBtn(bool Value, UInt32 rID, uint nBtn) { return _SetBtn( Value, rID, (Byte)nBtn); }
        public bool SetDiscPov(Int32 Value, UInt32 rID, uint nPov) { return _SetDiscPov(Value, rID, nPov); }

Usage Example

Ejemplo n.º 1
0
 private bool Start(uint player, vJoy playa)
 {
     return playa.SetBtn(true, player, 5);
 }
All Usage Examples Of vJoyInterfaceWrap.vJoy::SetBtn