AutoSize

Comment.AutoSize property

Indikerar om storleken på kommentaren justeras automatiskt enligt dess innehåll.

public bool AutoSize { get; set; }

Exempel


[C#]
if(!comment1.AutoSize)
{
    //Storleken på kommentaren varierar med innehållet
    comment1.AutoSize = true;
}

Se även