LocalValueEntry Structure
.NET Framework 3.0
Represents a property identifier and the property value for a locally set dependency property.
Namespace: System.Windows
Assembly: WindowsBase (in windowsbase.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Assembly: WindowsBase (in windowsbase.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
Instances of this class are returned when getting the value of the Current property of a LocalValueEnumerator. All LocalValueEntry properties are read-only.
This class has no public constructor. In order to obtain instances of this class you must call GetLocalValueEnumerator, and then get the value of Current from the returned LocalValueEnumerator.
The following example iterates locally set values of a DependencyObject and queries LocalValueEntry properties.
Sub RestoreDefaultProperties(ByVal sender As Object, ByVal e As RoutedEventArgs) Dim uic As UIElementCollection = Sandbox.Children For Each uie As Shape In uic Dim locallySetProperties As LocalValueEnumerator = uie.GetLocalValueEnumerator() While locallySetProperties.MoveNext() Dim propertyToClear As DependencyProperty = locallySetProperties.Current.Property If Not propertyToClear.ReadOnly Then uie.ClearValue(propertyToClear) End If End While Next End Sub
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: