AutoSize

Comment.AutoSize property

Gibt an, ob die Größe des Kommentars automatisch an seinen Inhalt angepasst wird.

public bool AutoSize { get; set; }

Beispiele


[C#]
if(!comment1.AutoSize)
{
    //Die Größe des Kommentars variiert mit dem Inhalt
    comment1.AutoSize = true;
}

Siehe auch