Stores Image related properties for a Cell
Ejemplo n.º 1
0
        /// <summary>
        /// Initialise default values
        /// </summary>
        private void Init()
        {
            this.text         = null;
            this.data         = null;
            this.rendererData = null;
            this.tag          = null;
            this.row          = null;
            this.index        = -1;
            this.cellStyle    = null;
            this.checkStyle   = null;
            this.imageStyle   = null;
            this.tooltipText  = null;
            this.colspan      = 1;

            this.state = (byte)(STATE_EDITABLE | STATE_ENABLED);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Initialise default values
        /// </summary>
        private void Init()
        {
            this.text = null;
            this.data = null;
            this.rendererData = null;
            this.tag = null;
            this.row = null;
            this.index = -1;
            this.cellStyle = null;
            this.checkStyle = null;
            this.imageStyle = null;
            this.tooltipText = null;
            this.colspan = 1;

            this.state = (byte)(STATE_EDITABLE | STATE_ENABLED);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Releases all resources used by the Cell
        /// </summary>
        public void Dispose()
        {
            if (!this.disposed)
            {
                this.text = null;
                this.data = null;
                this.tag = null;
                this.rendererData = null;

                if (this.row != null)
                {
                    this.row.Cells.Remove(this);
                }

                this.row = null;
                this.index = -1;
                this.cellStyle = null;
                this.checkStyle = null;
                this.imageStyle = null;
                this.tooltipText = null;

                this.state = (byte) 0;

                this.disposed = true;
            }
        }