KAS.KASModuleWinch.RefreshControlState C# (CSharp) 메소드

RefreshControlState() 공개 메소드

public RefreshControlState ( ) : void
리턴 void
        public void RefreshControlState()
        {
            if (controlActivated) {
              if (controlInverted) {
            controlField = "Enabled(Inverted)";
              } else {
            controlField = "Enabled";
              }
            } else {
              if (controlInverted) {
            controlField = "Disabled(Inverted)";
              } else {
            controlField = "Disabled";
              }
            }
        }