This property sets the default folder that appears in the Open Annotation File and Save Annotation File dialog when an annotation file is being opened or saved.

[Visual Basic]Public Property AnnotationFilePath As String
[C#]public string AnnotationFilePath {get; set;}

Property Value

A string that represents the folder

Explanation

The AnnotationFilePath property sets sets the default folder that appears in the Open Annotation File and Save Annotation File dialog when an annotation file is being opened or saved. If an blank string, "", is set, the current path will be used.

Example

The default folder is "C:\Images". File extensions are "xml", "dat", and "All Files".

[Visual Basic.NET]
    ToolBarStandard1.AnnotationFilePath = "c:\images"
    ToolBarStandard1.AnnotationFileExtension = "xml,dat Files|*.xml;*.dat|All Files|*.*"

[Visual C#.NET]
    ToolBarStandard1.AnnotationFilePath = "c:\images";
    ToolBarStandard1.AnnotationFileExtension = "xml,dat Files|*.xml;*.dat|All Files|*.*";

See Also

ToolBarStandard Members | Newtone.ImageKit.Wpf.ToolBarStandard

 

The ImageKit WPF is created by Newtone Corporation