TextVerticalAlignment

Comment.TextVerticalAlignment property

Obtiene y establece el tipo de alineación vertical del texto del comentario.

public TextAlignmentType TextVerticalAlignment { get; set; }

Ejemplos


[C#]
if (comment1.TextVerticalAlignment ==  TextAlignmentType.Fill)
{
    comment1.TextVerticalAlignment = TextAlignmentType.Center;
}

Ver también