/// <summary> /// Request the status of pen. /// If you requested, you can receive result by PenSignal.onReceivedPenStatus method. /// </summary> public void ReqPenStatus() { if (IsV1Comm) { mCommV1.ReqPenStatus(); } else { mCommV2.ReqPenStatus(); } }
void PenCommV2Callbacks.onPenAuthenticated(IPenComm sender) { mPenCommV2.ReqAddUsingNote(); mPenCommV2.ReqOfflineDataList(); mPenCommV2.ReqPenStatus(); this.BeginInvoke(new MethodInvoker(delegate() { groupBox8.Enabled = false; })); }
void PenCommV2Callbacks.onPenAuthenticated(IPenComm sender) { mPenCommV2.ReqAddUsingNote(); mPenCommV2.ReqOfflineDataList(); mPenCommV2.ReqPenStatus(); }