C# 클래스 Taikandi.Telebot.Types.ReplyKeyboardMarkup

상속: IReply
파일 보기 프로젝트 열기: mrtaikandi/Telebot 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
CreateReplyKeyboardMarkup ( IEnumerable keyboardButtons, bool oneTimeKeyboard = true, bool selective = true ) : ReplyKeyboardMarkup

Creates a ReplyKeyboardMarkup filled with the specified keyboardButtons.

CreateReplyKeyboardMarkup ( IEnumerable keyboardTitles, bool oneTimeKeyboard = true, bool selective = true ) : ReplyKeyboardMarkup

Creates a ReplyKeyboardMarkup filled with the specified keyboardTitles.

ReplyKeyboardMarkup ( bool oneTimeKeyboard = false, bool selective = true ) : System

Initializes a new instance of the ReplyKeyboardMarkup class.

메소드 상세

CreateReplyKeyboardMarkup() 공개 정적인 메소드

Creates a ReplyKeyboardMarkup filled with the specified keyboardButtons.
public static CreateReplyKeyboardMarkup ( IEnumerable keyboardButtons, bool oneTimeKeyboard = true, bool selective = true ) : ReplyKeyboardMarkup
keyboardButtons IEnumerable The keyboard buttons.
oneTimeKeyboard bool /// If set to true requests clients to hide the keyboard as soon as it's been used. Defaults to /// true. ///
selective bool /// If set to true hides custom keyboard for specific users only. Defaults to true. ///
리턴 ReplyKeyboardMarkup

CreateReplyKeyboardMarkup() 공개 정적인 메소드

Creates a ReplyKeyboardMarkup filled with the specified keyboardTitles.
public static CreateReplyKeyboardMarkup ( IEnumerable keyboardTitles, bool oneTimeKeyboard = true, bool selective = true ) : ReplyKeyboardMarkup
keyboardTitles IEnumerable The titles of each keyboard button.
oneTimeKeyboard bool /// If set to true requests clients to hide the keyboard as soon as it's been used. Defaults to /// true. ///
selective bool /// If set to true hides custom keyboard for specific users only. Defaults to true. ///
리턴 ReplyKeyboardMarkup

ReplyKeyboardMarkup() 공개 메소드

Initializes a new instance of the ReplyKeyboardMarkup class.
public ReplyKeyboardMarkup ( bool oneTimeKeyboard = false, bool selective = true ) : System
oneTimeKeyboard bool /// If set to true requests clients to hide the keyboard as soon as it's been used. Defaults to /// false. ///
selective bool /// If set to true hides custom keyboard for specific users only. Defaults to true. ///
리턴 System