//--------------------------------------------------------------------//
        //                                              C o n s t r u c t o r //
        // P C L C h a r C o l l e c t i o n                                  //
        //                                                                    //
        //--------------------------------------------------------------------//

        public PCLCharCollection(
            PCLCharCollections.eBitType bitType,
            Int32 bitNo,
            String descMSL,
            String descUnicode)
        {
            _bitType     = bitType;
            _bitNo       = bitNo;
            _descMSL     = descMSL;
            _descUnicode = descUnicode;
        }
Example #2
0
        //--------------------------------------------------------------------//
        //                                              C o n s t r u c t o r //
        // P C L C h a r C o l l i t e m                                      //
        //                                                                    //
        //--------------------------------------------------------------------//

        public PCLCharCollItem(Int32 bitNo,
                               PCLCharCollections.eBitType bitType,
                               String desc,
                               Boolean isEnabled,
                               Boolean isChecked)
        {
            _bitNo     = bitNo;
            _bitType   = bitType;
            _desc      = desc;
            _isEnabled = isEnabled;
            _isChecked = isChecked;
        }