InkPicture.DynamicRendering 屬性
取得或設定值,這個值表示筆墨是否在繪製時呈現。
命名空間: Microsoft.Ink
組件: Microsoft.Ink (在 Microsoft.Ink.dll 中)
語法
'宣告
<BrowsableAttribute(True)> _
Public Property DynamicRendering As Boolean
'用途
Dim instance As InkPicture
Dim value As Boolean
value = instance.DynamicRendering
instance.DynamicRendering = value
[BrowsableAttribute(true)]
public bool DynamicRendering { get; set; }
[BrowsableAttribute(true)]
public:
property bool DynamicRendering {
bool get ();
void set (bool value);
}
/** @property */
/** @attribute BrowsableAttribute(true) */
public boolean get_DynamicRendering()
/** @property */
/** @attribute BrowsableAttribute(true) */
public void set_DynamicRendering(boolean value)
public function get DynamicRendering () : boolean
public function set DynamicRendering (value : boolean)
屬性值
型別:System.Boolean
如果筆墨在繪製時呈現而且在顯示器上出現,則為 true。
如果筆墨沒有呈現而且也沒有在顯示器上出現,則為 false。
範例
這個 C# 範例會建立功能表項目的事件處理常式,為 InkPicture 控制項 (變數名稱為 theInkPicture) 切換動態呈現的顯示與否。
[C#]
using Microsoft.Ink;
//. . .
private void menuInkDynamicRendering_Click(
object sender,
System.EventArgs e)
{
theInkPicture.DynamicRendering = !theInkPicture.DynamicRendering;
menuInkDynamicRendering.Checked = theInkPicture.DynamicRendering;
}
//. . .
這個 Microsoft® Visual Basic® .NET 範例會建立功能表項目的事件處理常式,為 InkPicture 控制項 (變數名稱為 theInkPicture) 切換動態呈現的顯示與否。
[Visual Basic]
Imports Microsoft.Ink
'. . .
Private Sub MenuInkDynamicRendering_Click(ByVal sender As Object, _
ByVal e As System.EventArgs)
theInkPicture.DynamicRendering = Not theInkPicture.DynamicRendering
menuInkDynamicRendering.Checked = theInkPicture.DynamicRendering
End Sub
'. . .
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0