private void frmExtendedSettings_Load(object sender, System.EventArgs e) { // CopySettingsPath chbCopySettingsPath.Checked = oSetting.GetBoolSetting("USER.EnfMVC.ContextMenuSetting.ShowExtended", 0); // MenuId chbMenuId.Checked = oSetting.GetBoolSetting("USER.EnfMVC.ContextMenuSetting.ShowIdentifier", 0); // InplaceEditing chbInplaceEditing.Checked = oSetting.GetBoolSetting("USER.EnfMVC.Debug.InplaceEditingShowAllProperties", 0); // DontChangeSourceText chbDontChangeSourceText.Checked = oSetting.GetBoolSetting("USER.TRANSLATEGUI.DontChangeSourceText", 0); }
public void Function() { Eplan.EplApi.Base.Settings oSettings = new Eplan.EplApi.Base.Settings(); bool bolSetting = oSettings.GetBoolSetting("USER.XUserSettingsGui.UseLoginName", 0); if (bolSetting) { MessageBox.Show("Setting is activated."); } else { MessageBox.Show("Setting is deactivated."); } return; }
public void MyFunction() { Eplan.EplApi.Base.Settings oSettings = new Eplan.EplApi.Base.Settings(); //Einstellung auslesen bool bolSetting = oSettings.GetBoolSetting("USER.ModalDialogs.XSdCustomToolbarComponent.ExtendedActionList", 0); //wenn nicht gesetzt, setzen if (bolSetting == false) { oSettings.SetBoolSetting("USER.ModalDialogs.XSdCustomToolbarComponent.ExtendedActionList", true, 0); MessageBox.Show("Die Einstellung wurde 'aktiviert'.", "USER.ModalDialogs.XSdCustomToolbarComponent.ExtendedActionList", MessageBoxButtons.OK, MessageBoxIcon.Information); } //wenn gesetzt, zurücksetzen else if (bolSetting == true) { oSettings.SetBoolSetting("USER.ModalDialogs.XSdCustomToolbarComponent.ExtendedActionList", false, 0); MessageBox.Show("Die Einstellung wurde 'deaktiviert'.", "USER.ModalDialogs.XSdCustomToolbarComponent.ExtendedActionList", MessageBoxButtons.OK, MessageBoxIcon.Information); } return; }
public void Function() { Eplan.EplApi.Base.Settings oSettings = new Eplan.EplApi.Base.Settings(); bool bolSetting = oSettings.GetBoolSetting( "USER.XUserSettingsGui.UseLoginName", 0 ); if (bolSetting) { MessageBox.Show("Einstellung ist aktiviert."); } else { MessageBox.Show("Einstellung ist deaktiviert."); } return; }