Show / Hide Table of Contents

Class CompassObjectEnabledChangedEventArgs

This class defines the parameters that should be passed for the CompassObjectEnabledChangedEvent.

Inheritance
System.Object
CompassObjectEnabledChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Phoenix.Controls.Compass
Assembly: Phoenix.Controls.Compass.dll
Syntax
public class CompassObjectEnabledChangedEventArgs

Constructors

View Source

CompassObjectEnabledChangedEventArgs(Boolean, List<String>)

Initializes a new instance of the CompassObjectEnabledChangedEventArgs class. Initializes a new instance of CompassObjectEnabledChangedEventArgs.

Declaration
public CompassObjectEnabledChangedEventArgs(bool isEnabled, List<string> typenames)
Parameters
Type Name Description
System.Boolean isEnabled

Whether the properties are enabled or disabled.

System.Collections.Generic.List<System.String> typenames

The list of all properties undergoing the change.

Properties

View Source

IsEnabled

Gets or sets a value indicating whether the compass field is enabled or disabled.

Declaration
public bool IsEnabled { get; set; }
Property Value
Type Description
System.Boolean
View Source

TypeNames

Gets the names of the field being enabled or disabled.

Declaration
public IReadOnlyList<string> TypeNames { get; }
Property Value
Type Description
System.Collections.Generic.IReadOnlyList<System.String>
  • View Source
In This Article
Back to top Generated by DocFX