Table of Contents

Class Emoji

Namespace
Alternet.Common
Assembly
Alternet.Common.v10.dll

A utility class used to match emoji symbols in the text.

public class Emoji
Inheritance
Emoji

Properties

SupportEmojiCharacters

Gets or sets a boolean value indicating whether emoji characters are supported. It is true by default.

SupportInvisibleCharacters

Gets or sets a boolean value indicating whether invisible characters are supported. It is true by default.

Methods

CanBeEmojiChar(char)

Indicates whether the given char is an emoji character.

IsAsciiChar(char)

Indicates whether the given char is an ASCII character.

IsEmojiOrInvisibleCharacterToTheLeft(string, int, out int)

Determines emoji or invisible characters in the given text to the left of the specified position.

IsEmojiOrInvisibleCharacterToTheRight(string, int, out int)

Determines emoji or invisible characters in the given text to the right of the specified position.

IsEmojiToTheLeft(string, int, out int)

Determines emoji characters in the given text to the left of the specified position.

IsEmojiToTheRight(string, int, out int)

Determines emoji characters in the given text to the right of the specified position.

IsInvisibleCharToTheLeft(string, int, out int)

Determines invisible characters in the given text to the left of the specified position.

IsInvisibleCharToTheRight(string, int, out int)

Determines invisible characters in the given text to the right of the specified position.

IsSpecialChar(char)

Indicates whether the given char is a special character.