Appearance.Form1.chkFillDirection_CheckedChanged C# (CSharp) 메소드

chkFillDirection_CheckedChanged() 개인적인 메소드

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