MaxLevelCount

TextStyle.MaxLevelCount field

Recuento máximo de niveles de estilo que se pueden definir. Úselo con GetLevel(int index)

public static readonly byte MaxLevelCount;

Ejemplos

for (int i = 0; i < TextStyle.MaxLevelCount; i++)
{
    IParagraphFormat paragraphFormat = GetLevel(i);
    ...
}

Ver también