This commit is contained in:
parent
98288caac1
commit
d9ce622a09
@ -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
|
||||
//
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user