다음을 통해 공유


InkPicture.DynamicRendering 속성

업데이트: 2007년 11월

잉크를 그리면서 동시에 렌더링할지 여부를 나타내는 값을 가져오거나 설정합니다.

네임스페이스:  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에서 지원

참고 항목

참조

InkPicture 클래스

InkPicture 멤버

Microsoft.Ink 네임스페이스

Ink

InkOverlay.AutoRedraw