Northwoods.GoSilverlight 1.1.3 Assembly
LayoutInitial Enumeration
See Also  Send Feedback
Northwoods.GoXam Namespace : LayoutInitial Enumeration

This enumeration controls the initial validity of Northwoods.GoXam.Layout.IDiagramLayouts managed by LayoutManager, as the value of LayoutManager.Initial.

Syntax

Visual Basic (Declaration) 
Public Enum LayoutInitial 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
C# 
public enum LayoutInitial : System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
InvalidateAll Set all layouts to be invalid when the diagram is "reset"; all layouts will be performed soon.
InvalidateIfNodesUnlocatedSet all layouts to be valid when the diagram is "reset", except declare invalid those layouts that position nodes that do not have a Northwoods.GoXam.Node.Location.
NoneDo not change the value of Northwoods.GoXam.Layout.IDiagramLayout.ValidLayout when the diagram is "reset".
ValidateAll Set all layouts to be valid when the diagram is "reset"; no layout is performed until some other changes cause a layout to become invalid.

Remarks

LayoutManager.LayoutDiagram describes some of the circumstances in which a diagram has had changes which would suggest invalidating (or validating) all of the layouts in a diagram.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Northwoods.GoXam.LayoutInitial

See Also