Comment.AutoSize

Comment.AutoSize property

Indicates if size of comment is adjusted automatically according to its content.

public bool AutoSize { get; set; }

Examples


[C#]
if(!comment1.AutoSize)
{
    //The size of the comment varies with the content
    comment1.AutoSize = true;
}

See Also