Exemplo n.º 1
0
        public Help2Settings CreateCopy()
        {
            Help2Settings result = new Help2Settings();

            result.DocumentExplorerPath = DocumentExplorerPath;
            result.HelpCollection       = HelpCollection;
            result.Filter = Filter;

            return(result);
        }
Exemplo n.º 2
0
 public void CopyFrom(Help2Settings source)
 {
     this.DocumentExplorerPath = source.DocumentExplorerPath;
     this.HelpCollection       = source.HelpCollection;
     this.Filter = source.Filter;
 }