Пример #1
0
 public bool this[THeapCellBorderType aType]
 {
     get
     {
         return(iBorders[(int)aType]);
     }
 }
Пример #2
0
 public HeapCellRendererSelectionBorderItem(Point aPosStart, Point aPosEnd, float aWidth, Color aColour, THeapCellBorderType aType)
 {
     iPosStart = aPosStart;
     iPosEnd   = aPosEnd;
     iWidth    = aWidth;
     iColour   = aColour;
     iType     = aType;
 }
Пример #3
0
 public void SetBorder(THeapCellBorderType aType, bool aEnabled)
 {
     iBorders[(int)aType] = aEnabled;
 }
        private void PaintCellBorder(Graphics aGraphics, HeapCellMetaData aMetaData, Point aStart, Point aEnd, uint aAddress, HeapCell aCell, float aWidth, Color aColour, THeapCellBorderType aType)
        {
            HeapCellRendererSelectionBorderItem spec = new HeapCellRendererSelectionBorderItem(aStart, aEnd, aWidth, aColour, aType);

            iLines.Add(spec);
        }