Beispiel #1
0
        public DhtmlxFormItem AddUserNote(string value)
        {
            if (note == null)
            {
                note = new DhtmlxFormNote()
                {
                    Value = value
                };
            }
            else
            {
                note.Value = value;
            }

            return(this);
        }
Beispiel #2
0
        public DhtmlxFormItem AddUserNote(int width, string value)
        {
            if (note == null)
            {
                note = new DhtmlxFormNote()
                {
                    Width = width,
                    Value = value
                };
            }
            else
            {
                note.Width = width;
                note.Value = value;
            }

            return(this);
        }