TransformPatternIdentifiers.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / AccessibleTech / longhorn / Automation / UIAutomationTypes / System / Windows / Automation / TransformPatternIdentifiers.cs / 1 / TransformPatternIdentifiers.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: Automation Identifiers for Transform Pattern 
//
// History: 
//  04/15/2005 : [....] Added
//
//---------------------------------------------------------------------------
 
using System;
using MS.Internal.Automation; 
 
namespace System.Windows.Automation
{ 

    ///wrapper class for Transform pattern 
#if (INTERNAL_COMPILE)
    internal static class TransformPatternIdentifiers 
#else
    public static class TransformPatternIdentifiers 
#endif 
    {
        //----------------------------------------------------- 
        //
        //  Public Constants / Readonly Fields
        //
        //----------------------------------------------------- 

        #region Public Constants and Readonly Fields 
 
        /// Returns the Transform pattern identifier
        public static readonly AutomationPattern Pattern = AutomationPattern.Register(AutomationIdentifierGuids.Transform_Pattern, "TransformPatternIdentifiers.Pattern"); 

        /// Property ID: CanMove - This window can be moved
        public static readonly AutomationProperty CanMoveProperty = AutomationProperty.Register(AutomationIdentifierGuids.Transform_CanMove_Property, "TransformPatternIdentifiers.CanMoveProperty");
 
        /// Property ID: CanResize - This window can be resized
        public static readonly AutomationProperty CanResizeProperty = AutomationProperty.Register(AutomationIdentifierGuids.Transform_CanResize_Property, "TransformPatternIdentifiers.CanResizeProperty"); 
 
        /// Property ID: CanRotate - This window can be rotated
        public static readonly AutomationProperty CanRotateProperty = AutomationProperty.Register(AutomationIdentifierGuids.Transform_CanRotate_Property, "TransformPatternIdentifiers.CanRotateProperty"); 


        #endregion Public Constants and Readonly Fields
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK