|
//////////////////////////////////////////////////////////////////////////////
//
// File: ElementEdge.cs
//
// Identifies the edge of an object where a TextPointer is located
//
// Copyright (C) 2003 by Microsoft Corporation. All rights reserved.
//
//////////////////////////////////////////////////////////////////////////////
namespace System.Windows.Documents
{
/// <summary>
/// This identifies the edge of an object where a TextPointer is located
/// </summary>
[Flags]
internal enum ElementEdge : byte
{
/// <summary>
/// Located before the beginning of a DependencyObject
/// </summary>
BeforeStart = 1,
/// <summary>
/// Located after the beginning of a DependencyObject
/// </summary>
AfterStart = 2,
/// <summary>
/// Located before the end of a DependencyObject
/// </summary>
BeforeEnd = 4,
/// <summary>
/// Located after the end of a DependencyObject
/// </summary>
AfterEnd = 8
}
}
|