ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.InternalCheckedListBox.InnerArraySetState C# (CSharp) Method

InnerArraySetState() private method

private InnerArraySetState ( int index, int stateMask, bool value ) : void
index int
stateMask int
value bool
return void
            internal void InnerArraySetState(int index, int stateMask, bool value)
            {
                if (_miSetState == null)
                    _miSetState = InnerArray.GetType().GetMethod("SetState", new Type[] { typeof(int), typeof(int), typeof(bool) }, null);

                _miSetState.Invoke(InnerArray, new object[] { index, stateMask, value });
            }