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

LoadWidth() private method

Loads the width from the reader. This method is called by LoadFromReader().
private LoadWidth ( ) : void
return void
        private void LoadWidth()
        {
            try
            {
                _width = Convert.ToInt32(_reader.GetAttribute("width"));
            }
            catch (Exception ex)
            {
                throw new InvalidXmlDefinitionException("In the 'width' attribute " +
                    "of a 'column' element, the value provided was " +
                    "invalid.  This should be an integer value in pixels.", ex);
            }
        }