private void _setElement(GraphicAttributeElements type, bool value) { if (value) { Elements |= type; } else { Elements &= (~type); } }
private bool _getElement(GraphicAttributeElements type) { return((Elements & type) != 0); }