ME3Explorer.SequenceObjects.SVar.appendToComment C# (CSharp) Method

appendToComment() public method

public appendToComment ( string s ) : void
s string
return void
        void appendToComment(string s)
        {
            if (comment.Text.Length > 0)
            {
                comment.TranslateBy(0, -1 * comment.Height);
                comment.Text += s + "\n";
            }
            else
            {
                comment.Text += s + "\n";
                comment.TranslateBy(0, -1 * comment.Height);
            }
        }