"Canvases are available only at runtime, so you do all your work with canvases by writing code"
這也解釋了為什麼這個 Image 物件中的小物件沒有出現在 Object Inspector 的 Properties 之中, 而 Picture 卻有出現在 Image 中的 Properties 之中。

Determines the color and pattern for filling graphical shapes and backgrounds.
__property TBrush* Brush = {read=FBrush, write=SetBrush};
Description
Set the Brush property to specify the color and pattern to use when drawing the background or filling in graphical shapes. The value of Brush is a TBrush object. Set the properties of the TBrush object to specify the color and pattern or bitmap to use when filling in spaces on the canvas.
Note: Setting the Brush property assigns the specified TBrush object, rather than replacing the current TBrush object.
Note: Brush must have a Style of bsSolid before you can paint.
TCanvas::Pixels
Specifies the color of the pixels within the current ClipRect.
__property TColor Pixels[int X][int Y] = {read=GetPixel, write=SetPixel};
Description
Read Pixels to learn the color on the drawing surface at a specific pixel position within the current clipping region. If the position is outside the clipping rectangle, reading the value of Pixels returns -1.
Write Pixels to change the color of individual pixels on the drawing surface. Use Pixels for detailed effects on an image. Pixels may also be used to determine the color that should be used for the FillRect method.
Not every device context supports the Pixels property. Reading the Pixels property for such a device context will return a value of -1. Setting the Pixels property for such a device context does nothing.
void __fastcall CopyRect(const TRect &Dest, TCanvas* Canvas, const TRect &Source);TCanvas::CopyRect method 可以將另外一個 Canvas ( 第二個輸入參數 ) 中的特定長方塊 (rectangle) ( 第三個輸入參數 ) 中的影像 copy 到自己這個 Canvas 的特定長方塊( 第一個輸入參數 ) 中。
Description
Use CopyRect to transfer part of the image on another canvas to the image of the TCanvas object. Dest specifies the rectangle on the canvas where the source image will be copied. The Canvas parameter specifies the canvas with the source image. Source specifies a rectangle bounding the portion of the source canvas that will be copied.
The portion of the source canvas is copied using the mode specified by CopyMode.