Appearance.Form1.chkFillDirection_CheckedChanged C# (CSharp) Method

chkFillDirection_CheckedChanged() private method

private chkFillDirection_CheckedChanged ( object sender, System e ) : void
sender object
e System
return void
		private void chkFillDirection_CheckedChanged(object sender, System.EventArgs e)
		{
			if (chkFillDirection.Checked == true)
				axToolbarControl1.FillDirection = esriToolbarFillDirection.esriToolbarFillVertical;
			else
				axToolbarControl1.FillDirection = esriToolbarFillDirection.esriToolbarFillHorizontal;
		}