private void applicationEvents_Archive(IArchiver sender) { sender.PushSection("main.form"); try { sender.ArchiveProperty("Top", this, 50); sender.ArchiveProperty("Left", this, 50); sender.ArchiveProperty("Width", this, 500); sender.ArchiveProperty("Height", this, 500); sender.ArchiveProperty("Checked", this.acShowTools, true); tools.Archive(sender, "Tools"); } finally { sender.PopSection(); } }
private void applicationEvents_Archive(IArchiver sender) { sender.PushSection("main.form"); try { sender.ArchiveProperty("Top", this, 50); sender.ArchiveProperty("Left", this, 50); sender.ArchiveProperty("Width", this, 600); sender.ArchiveProperty("Height", this, 400); } finally { sender.PopSection(); } }
private void applicationEvents_Archive(IArchiver sender) { sender.PushSection( "Psl.Applications.ArchiverCluster" ) ; try { sender.ArchiveProperty( "ShowTools", acArchiverToolsVisible, "Checked", false ) ; } finally { sender.PopSection() ; } }