Rock.Web.UI.Controls.NoteControl.NoteControl C# (CSharp) Method

NoteControl() public method

Initializes a new instance of the NoteControl class.
public NoteControl ( ) : System
return System
        public NoteControl()
        {
            _ddlNoteType = new DropDownList();
            _tbNote = new RockTextBox();
            _tbNote.Placeholder = "Write a note...";
            _cbAlert = new CheckBox();
            _cbPrivate = new CheckBox();
            _lbSaveNote = new LinkButton();
            _lbEditNote = new LinkButton();
            _lbDeleteNote = new LinkButton();
            _sbSecurity = new SecurityButton();
            _dtCreateDate = new DateTimePicker();
        }