AnnotationHelper.GetAnchorInfo(AnnotationService, Annotation) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Belirtilen ek açıklama hakkında yer işareti konumu gibi tutturucu bilgileri sağlayan bir IAnchorInfo nesne döndürür.
public:
static System::Windows::Annotations::IAnchorInfo ^ GetAnchorInfo(System::Windows::Annotations::AnnotationService ^ service, System::Windows::Annotations::Annotation ^ annotation);
public static System.Windows.Annotations.IAnchorInfo GetAnchorInfo (System.Windows.Annotations.AnnotationService service, System.Windows.Annotations.Annotation annotation);
static member GetAnchorInfo : System.Windows.Annotations.AnnotationService * System.Windows.Annotations.Annotation -> System.Windows.Annotations.IAnchorInfo
Public Shared Function GetAnchorInfo (service As AnnotationService, annotation As Annotation) As IAnchorInfo
Parametreler
- service
- AnnotationService
Bu işlem için kullanılacak ek açıklama hizmeti.
- annotation
- Annotation
Yer işareti bilgilerini almak için ek açıklama.
Döndürülenler
IAnchorInfo Belirtilen ek açıklama hakkında bağlayıcı bilgiler sağlayan veya null
çözümlenemeyen bir nesne.
Örnekler
Açıklamalar bölmesi olan basit bir belge okuyucu uygulaması düşünün. Açıklamalar bölmesi, belgeye sabitlenmiş ek açıklamalar listesinden metin görüntüleyen bir liste kutusu olabilir. Kullanıcı liste kutusundan bir öğe seçerse, uygulama belgedeki ilgili ek açıklama nesnesinin bağlı olduğu paragrafı görüntüler.
Aşağıdaki örnek, açıklamalar bölmesi olarak hizmet veren böyle bir liste kutusunun olay işleyicisinin nasıl uygulandığını gösterir.
void annotationsListBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
Annotation comment = (sender as ListBox).SelectedItem as Annotation;
if (comment != null)
{
// IAnchorInfo info;
// service is an AnnotationService object
// comment is an Annotation object
info = AnnotationHelper.GetAnchorInfo(this.service, comment);
TextAnchor resolvedAnchor = info.ResolvedAnchor as TextAnchor;
TextPointer textPointer = (TextPointer)resolvedAnchor.BoundingStart;
textPointer.Paragraph.BringIntoView();
}
}
Private Sub annotationsListBox_SelectionChanged(ByVal sender As Object, ByVal e As SelectionChangedEventArgs)
Dim comment As Annotation = TryCast((TryCast(sender, ListBox)).SelectedItem, Annotation)
If comment IsNot Nothing Then
' service is an AnnotationService object
' comment is an Annotation object
info = AnnotationHelper.GetAnchorInfo(Me.service, comment)
Dim resolvedAnchor As TextAnchor = TryCast(info.ResolvedAnchor, TextAnchor)
Dim textPointer As TextPointer = CType(resolvedAnchor.BoundingStart, TextPointer)
textPointer.Paragraph.BringIntoView()
End If
End Sub