ShapeElement.UpdateGeometryLuminosity 方法 (DiagramClientView, Brush)
更新筆刷的明暗度。
命名空間: Microsoft.VisualStudio.Modeling.Diagrams
組件: Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0 (在 Microsoft.VisualStudio.Modeling.Sdk.Diagrams.11.0.dll 中)
語法
'宣告
Public Function UpdateGeometryLuminosity ( _
view As DiagramClientView, _
brush As Brush _
) As Color
public Color UpdateGeometryLuminosity(
DiagramClientView view,
Brush brush
)
參數
- view
型別:Microsoft.VisualStudio.Modeling.Diagrams.DiagramClientView
圖表的 [用戶端] 檢視中。
- brush
型別:System.Drawing.Brush
筆刷。
傳回值
型別:System.Drawing.Color
亮度更新之前的筆刷的色彩。
實作
IGeometryHost.UpdateGeometryLuminosity(DiagramClientView, Brush)
範例
if (this.HasFilledBackground(geometryHost))
{
Color oldColor = geometryHost.UpdateGeometryLuminosity(e.View, interiorBrush);
graphics.FillPath(interiorBrush, interiorPath);
graphics.DrawPath(solidLinePen, interiorPath);
SolidBrush brush = interiorBrush as SolidBrush;
if (brush != null) { brush.Color = oldColor; }
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。