This commit is contained in:
Kathy Ruffing 2012-12-05 16:42:04 +00:00
parent 98288caac1
commit d9ce622a09
2 changed files with 7 additions and 1 deletions

View File

@ -976,6 +976,7 @@ namespace VEPROMS
this.ppCbAutoIndent.TabIndex = 56;
this.ppCbAutoIndent.Text = "Automatic Indent";
this.ppCbAutoIndent.UseVisualStyleBackColor = false;
this.ppCbAutoIndent.CheckedChanged += new System.EventHandler(this.ppCbAutoIndent_CheckedChanged);
//
// ppCbEditableData
//

View File

@ -853,7 +853,12 @@ namespace VEPROMS
if (!_Initializing)
_SectionConfig.Section_PrintHdr = isEditable ? "Y" : "N";
}
private void ppCbAutoIndent_CheckedChanged(object sender, EventArgs e)
{
bool isEditable = ppCbAutoIndent.Checked;
if (!_Initializing)
_SectionConfig.SubSection_AutoIndent = isEditable ? "Y" : "N";
}
private void ppCbIncTOC_CheckedChanged(object sender, EventArgs e)
{
bool isInToc = ppCbIncTOC.Checked;