AnnotationService 생성자

정의

지정된 문서 보기 컨트롤에 사용하기 위한 AnnotationService 클래스의 새 인스턴스를 초기화합니다.

오버로드

AnnotationService(FlowDocumentReader)

지정된 AnnotationService 컨트롤에 사용하기 위한 FlowDocumentReader 클래스의 새 인스턴스를 초기화합니다.

AnnotationService(FlowDocumentScrollViewer)

지정된 AnnotationService 컨트롤에 사용하기 위한 FlowDocumentScrollViewer 클래스의 새 인스턴스를 초기화합니다.

AnnotationService(DocumentViewerBase)

지정된 AnnotationService 또는 DocumentViewer 컨트롤에 사용하기 위한 FlowDocumentPageViewer 클래스의 새 인스턴스를 초기화합니다.

예제

다음 예제에서는 사용 된 AnnotationService 생성자입니다.

// ------------------------ StartAnnotations --------------------------
/// <summary>
///   Enables annotations and displays all that are viewable.</summary>
private void StartAnnotations()
{
    // If there is no AnnotationService yet, create one.
    if (_annotService == null)
        // docViewer is a document viewing control named in Window1.xaml.
        _annotService = new AnnotationService(docViewer);

    // If the AnnotationService is currently enabled, disable it.
    if (_annotService.IsEnabled == true)
        _annotService.Disable();

    // Open a stream to the file for storing annotations.
    _annotStream = new FileStream(
        _annotStorePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);

    // Create an AnnotationStore using the file stream.
    _annotStore = new XmlStreamStore(_annotStream);

    // Enable the AnnotationService using the new store.
    _annotService.Enable(_annotStore);
}// end:StartAnnotations()

설명

AnnotationService 다음 문서 보기 컨트롤과 함께 사용할 수 있습니다.

AnnotationService(FlowDocumentReader)

지정된 AnnotationService 컨트롤에 사용하기 위한 FlowDocumentReader 클래스의 새 인스턴스를 초기화합니다.

public AnnotationService (System.Windows.Controls.FlowDocumentReader viewer);

매개 변수

viewer
FlowDocumentReader

AnnotationService에 연결된 문서 읽기 컨트롤입니다.

예제

다음 예제에서는 사용 된 AnnotationService 생성자입니다.

// ------------------------ StartAnnotations --------------------------
/// <summary>
///   Enables annotations and displays all that are viewable.</summary>
private void StartAnnotations()
{
    // If there is no AnnotationService yet, create one.
    if (_annotService == null)
        // docViewer is a document viewing control named in Window1.xaml.
        _annotService = new AnnotationService(docViewer);

    // If the AnnotationService is currently enabled, disable it.
    if (_annotService.IsEnabled == true)
        _annotService.Disable();

    // Open a stream to the file for storing annotations.
    _annotStream = new FileStream(
        _annotStorePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);

    // Create an AnnotationStore using the file stream.
    _annotStore = new XmlStreamStore(_annotStream);

    // Enable the AnnotationService using the new store.
    _annotService.Enable(_annotStore);
}// end:StartAnnotations()

추가 정보

적용 대상

AnnotationService(FlowDocumentScrollViewer)

지정된 AnnotationService 컨트롤에 사용하기 위한 FlowDocumentScrollViewer 클래스의 새 인스턴스를 초기화합니다.

public AnnotationService (System.Windows.Controls.FlowDocumentScrollViewer viewer);

매개 변수

viewer
FlowDocumentScrollViewer

AnnotationService에 연결된 문서 보기 컨트롤입니다.

예외

viewer이(가) null인 경우

예제

다음 예제에서는 사용 된 AnnotationService 생성자입니다.

// ------------------------ StartAnnotations --------------------------
/// <summary>
///   Enables annotations and displays all that are viewable.</summary>
private void StartAnnotations()
{
    // If there is no AnnotationService yet, create one.
    if (_annotService == null)
        // docViewer is a document viewing control named in Window1.xaml.
        _annotService = new AnnotationService(docViewer);

    // If the AnnotationService is currently enabled, disable it.
    if (_annotService.IsEnabled == true)
        _annotService.Disable();

    // Open a stream to the file for storing annotations.
    _annotStream = new FileStream(
        _annotStorePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);

    // Create an AnnotationStore using the file stream.
    _annotStore = new XmlStreamStore(_annotStream);

    // Enable the AnnotationService using the new store.
    _annotService.Enable(_annotStore);
}// end:StartAnnotations()

추가 정보

적용 대상

AnnotationService(DocumentViewerBase)

지정된 AnnotationService 또는 DocumentViewer 컨트롤에 사용하기 위한 FlowDocumentPageViewer 클래스의 새 인스턴스를 초기화합니다.

public AnnotationService (System.Windows.Controls.Primitives.DocumentViewerBase viewer);

매개 변수

viewer
DocumentViewerBase

AnnotationService에 연결된 문서 보기 컨트롤입니다.

예외

viewer이(가) null인 경우

예제

다음 예제에서는 사용 된 AnnotationService 생성자입니다.

// ------------------------ StartAnnotations --------------------------
/// <summary>
///   Enables annotations and displays all that are viewable.</summary>
private void StartAnnotations()
{
    // If there is no AnnotationService yet, create one.
    if (_annotService == null)
        // docViewer is a document viewing control named in Window1.xaml.
        _annotService = new AnnotationService(docViewer);

    // If the AnnotationService is currently enabled, disable it.
    if (_annotService.IsEnabled == true)
        _annotService.Disable();

    // Open a stream to the file for storing annotations.
    _annotStream = new FileStream(
        _annotStorePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);

    // Create an AnnotationStore using the file stream.
    _annotStore = new XmlStreamStore(_annotStream);

    // Enable the AnnotationService using the new store.
    _annotService.Enable(_annotStore);
}// end:StartAnnotations()

설명

이 생성자를 사용 하 여 사용할 수 DocumentViewerBase 컨트롤을 파생 합니다.

추가 정보

적용 대상