Class LinkedPropertyInfo
Information describing a linked property for this annotation. For instance, a dimension which represents the width of a mass would store linked property info describing the box element's "Width" property.
Inheritance
System.Object
LinkedPropertyInfo
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: Elements.Annotations
Assembly: Hypar.Elements.dll
Syntax
public class LinkedPropertyInfo
Properties
ElementId
The id of the element that this property is linked to.
Declaration
public Guid ElementId { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Index
If the linked property is an array, this is the index of the value in the array this annotation represents.
Declaration
public int? Index { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
OverrideName
The name of the override containing the linked property.
Declaration
public string OverrideName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PropertyName
The name of the linked property.
Declaration
public string PropertyName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
VisibleOnlyOnSelection
If true, this annotation should only be visible when the linked element is selected.
Declaration
public bool VisibleOnlyOnSelection { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |