QuickFont.JBitmap.Free C# (CSharp) Method

Free() public method

Just unlocks the bits, so that the bitmap can no longer be blitted to / from.
public Free ( ) : void
return void
        public void Free(){
            bitmap.UnlockBits(bitmapData);
            bitmap.Dispose();
        }

Usage Example

Exemplo n.º 1
0
 public void Remove(JBitmap bmpToRemove)
 {
     bitmapList.Remove(bmpToRemove);
     bmpToRemove.Free();
 }
All Usage Examples Of QuickFont.JBitmap::Free