/// <summary>show the form for the multi line text</summary>
        /// <param name="value">the value prior to editing</param>
        /// <returns>the string after editing</returns>
        public SearchElementObject EditValue(SearchElementObject value)
        {
            ElementEditForm dialog = new ElementEditForm(value.Element, value.WixFiles);

            dialog.ShowDialog();

            return(value);
        }
Example #2
0
        /// <summary>show the form for the multi line text</summary>
        /// <param name="value">the value prior to editing</param>
        /// <returns>the string after editing</returns>
        public SearchElementObject EditValue(SearchElementObject value)
        {
            ElementEditForm dialog = new ElementEditForm(value.Element, value.WixFiles);

            dialog.ShowDialog();

            return value;
        }