Message.edit()¶
-
Message.
edit
()¶ Bound method edit_text of
Message
.An alias exists as edit.
Use as a shortcut for:
client.edit_message_text( chat_id=message.chat.id, message_id=message.message_id, text="hello" )
Example
message.edit_text("hello")
- Parameters
text (
str
) – New text of the message.parse_mode (
str
, optional) – By default, texts are parsed using both Markdown and HTML styles. You can combine both syntaxes together. Pass “markdown” or “md” to enable Markdown-style parsing only. Pass “html” to enable HTML-style parsing only. Pass None to completely disable style parsing.entities (List of
MessageEntity
) – List of special entities that appear in message text, which can be specified instead of parse_mode.disable_web_page_preview (
bool
, optional) – Disables link previews for links in this message.reply_markup (
InlineKeyboardMarkup
, optional) – An InlineKeyboardMarkup object.
- Returns
On success, the edited
Message
is returned.- Raises
RPCError – In case of a Telegram RPC error.