示例#1
0
            internal static unsafe void Invoke(IntPtr obj, ECheckBoxState InCheckedState)
            {
                long *p = stackalloc long[] { 0L, 0L };
                byte *b = (byte *)p;

                *(b + 0) = (byte)InCheckedState;
                Main.GetProcessEvent(obj, SetCheckedState_ptr, new IntPtr(p));;
            }
        }
示例#2
0
/// <summary>Sets the checked state.</summary>
        public void SetCheckedState(ECheckBoxState InCheckedState)
        {
            CheckIsValid();
            SetCheckedState(_this.Get(), (int)InCheckedState);
        }
示例#3
0
 ///<summary>Sets the checked state.</summary>
 public void SetCheckedState(ECheckBoxState InCheckedState) =>
 CheckBox_methods.SetCheckedState_method.Invoke(ObjPointer, InCheckedState);