Steamworks.SteamUtils.ShowGamepadTextInput C# (CSharp) Method

ShowGamepadTextInput() public static method

Activates the Big Picture text input dialog which only supports gamepad input

public static ShowGamepadTextInput ( EGamepadTextInputMode eInputMode, EGamepadTextInputLineMode eLineInputMode, string pchDescription, uint unCharMax, string pchExistingText ) : bool
eInputMode EGamepadTextInputMode
eLineInputMode EGamepadTextInputLineMode
pchDescription string
unCharMax uint
pchExistingText string
return bool
		public static bool ShowGamepadTextInput(EGamepadTextInputMode eInputMode, EGamepadTextInputLineMode eLineInputMode, string pchDescription, uint unCharMax, string pchExistingText) {
			InteropHelp.TestIfAvailableClient();
			using (var pchDescription2 = new InteropHelp.UTF8StringHandle(pchDescription))
			using (var pchExistingText2 = new InteropHelp.UTF8StringHandle(pchExistingText)) {
				return NativeMethods.ISteamUtils_ShowGamepadTextInput(eInputMode, eLineInputMode, pchDescription2, unCharMax, pchExistingText2);
			}
		}