Habanero.BO.Loaders.XmlUIGridColumnLoader.LoadIsEditable C# (CSharp) Method

LoadIsEditable() private method

Loads the "isReadOnly" attribute from the reader. This method is called by LoadFromReader().
private LoadIsEditable ( ) : void
return void
        private void LoadIsEditable()
        {
            try
            {
                _editable = Convert.ToBoolean(_reader.GetAttribute("editable"));
            }
            catch (Exception ex)
            {
                throw new InvalidXmlDefinitionException("The 'editable' attribute " +
                    "in a 'column' element is invalid. The valid options " +
                    "are 'true' and 'false'.", ex);
            }
        }