File: src\Framework\System\Windows\Automation\Peers\InkPresenterAutomationPeer.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
using System;
using System.Runtime.InteropServices;
using System.Security;
using System.Text;
using System.Windows;
using System.Windows.Automation.Provider;
using System.Windows.Controls;
using System.Windows.Interop;
using System.Windows.Media;
 
using MS.Internal;
using MS.Win32;
 
namespace System.Windows.Automation.Peers
{
 
    /// 
    public class InkPresenterAutomationPeer : FrameworkElementAutomationPeer
    {
        ///
        public InkPresenterAutomationPeer(InkPresenter owner)
            : base(owner)
        {}
    
        ///
        protected override string GetClassNameCore()
        {
            return "InkPresenter";
        }
 
        ///
        protected override AutomationControlType GetAutomationControlTypeCore()
        {
            return AutomationControlType.Custom;
        }
    }
}