// Token: 0x0600670A RID: 26378 RVA: 0x001CD590 File Offset: 0x001CB790
        private void SetBooleanProperty(TypographyProperties.PropertyId propertyId, bool flagValue)
        {
            uint num = 1U << (int)propertyId;

            if (flagValue)
            {
                this._idPropertySetFlags |= num;
            }
            else
            {
                this._idPropertySetFlags &= ~num;
            }
            base.OnPropertiesChanged();
        }
        // Token: 0x06006709 RID: 26377 RVA: 0x001CD570 File Offset: 0x001CB770
        private bool IsBooleanPropertySet(TypographyProperties.PropertyId propertyId)
        {
            uint num = 1U << (int)propertyId;

            return((this._idPropertySetFlags & num) > 0U);
        }