private void SetSigned(CtfPropertyBag bag)
        {
            if (!bag.TryGetBoolean("signed", out bool signed))
            {
                // integers default to unsigned according to specification 1.82 section 4.1.5
                this.Signed = false;
                return;
            }

            this.Signed = signed;
        }