Example #1
0
 private void InitBlock()
 {
     _lineStyle = new PenFP(0x0, SingleFP.ONE);
     _fillStyle = new SolidBrushFP(0x0);
     _paintMode = MODE_XOR;
 }
Example #2
0
 private void InitBlock()
 {
     _lineStyle = new PenFP(0x0, SingleFP.ONE);
     _fillStyle = new SolidBrushFP(0x0);
     _paintMode = MODE_XOR;
 }
Example #3
0
 ////////////////////////////////////////////////////////////////////////////
 //--------------------------------- REVISIONS ------------------------------
 // Date       Name                 Tracking #         Description
 // ---------  -------------------  -------------      ----------------------
 // 13JUN2009  James Shen                 	          Initial Creation
 ////////////////////////////////////////////////////////////////////////////
 /**
  * Set a new brush for this graphics object.
  * @param Value a new brush.
  */
 public void SetBrush(BrushFP value)
 {
     _fillStyle = value;
 }
Example #4
0
        ////////////////////////////////////////////////////////////////////////////
        //--------------------------------- REVISIONS ------------------------------
        // Date       Name                 Tracking #         Description
        // ---------  -------------------  -------------      ----------------------
        // 13JUN2009  James Shen                              Initial Creation
        ////////////////////////////////////////////////////////////////////////////

        /**
         * Set a new brush for this graphics object.
         * @param Value a new brush.
         */
        public void SetBrush(BrushFP value)
        {
            _fillStyle = value;
        }