(Access) 的 Report.FillColor 屬性
您可以使用 [ 填滿色彩 ] 屬性指定中方塊和圓形與 線條 和 Circle 方法繪製在報表上的填滿色彩。 您也可以搭配 Visual Basic 使用此屬性,在使用色彩印表機列印或預覽色彩監視器上的報表時,在自訂報表上建立特殊的視覺效果。 讀取/寫入的 Long。
語法
運算式。FillColor
表達 代表 Report 物件的變數。
註解
您可以設定這個屬性只能在區段的 OnPrint 事件屬性所指定的事件程序。
下列範例使用 Circle 方法繪製圓形及圓形內建立圓形圖。 然後,它會使用 FillColor 和 FillStyle 屬性將圓形圖配量設為紅色。 它也會從圓圈的左上角繪製一條線。
使用 RGB 或 QBColor 函 式來設定此屬性。 [ 填滿色彩 ] 屬性設定有 Long 資料類型。
範例
若要在 Microsoft Access 中嘗試此範例,請建立一個新報表。 將詳細資料區段的 OnPrint 屬性設定為 [事件程序]。 在報表的模組中輸入下列程式碼,然後切換至 [預覽列印]。
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Const conPI = 3.14159265359
Dim sngHCtr As Single
Dim sngVCtr As Single
Dim sngRadius As Single
Dim sngStart As Single
Dim sngEnd As Single
sngHCtr = Me.ScaleWidth / 2 ' Horizontal center.
sngVCtr = Me.ScaleHeight / 2 ' Vertical center.
sngRadius = Me.ScaleHeight / 3 ' Circle radius.
Me.Circle (sngHCtr, sngVCtr), sngRadius ' Draw circle.
sngStart = -0.00000001 ' Start of pie slice.
sngEnd = -2 * conPI / 3 ' End of pie slice.
Me.FillColor = RGB(255, 0, 0) ' Color pie slice red.
Me.FillStyle = 0 ' Fill pie slice.
' Draw Pie slice within circle
Me.Circle (sngHCtr, sngVCtr), sngRadius, , sngStart, sngEnd
' Draw line to center of circle.
Dim intColor As Integer
Dim sngTop As Single, sngLeft As Single
Dim sngWidth As Single, sngHeight As Single
Me.ScaleMode = 3 ' Set scale to pixels.
sngTop = Me.ScaleTop ' Top inside edge.
sngLeft = Me.ScaleLeft ' Left inside edge.
sngWidth = Me.ScaleWidth / 2 ' Width inside edge.
sngHeight = Me.ScaleHeight / 2 ' Height inside edge.
intColor = RGB(255, 0, 0) ' Make color red.
' Draw line.
Me.Line (sngTop, sngLeft)-(sngWidth, sngHeight), intColor
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。