Show / Hide Table of Contents

Class TreeElement

Inheritance
System.Object
TreeElement
FeatureTreeElement
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.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace:Mapbox.Editor
Assembly:cs.temp.dll.dll
Syntax
[Serializable]
public class TreeElement

Constructors

TreeElement()

Declaration
public TreeElement()

TreeElement(String, Int32, Int32)

Declaration
public TreeElement(string name, int depth, int id)
Parameters
Type Name Description
System.String name
System.Int32 depth
System.Int32 id

Properties

children

Declaration
public List<TreeElement> children { get; set; }
Property Value
Type Description
System.Collections.Generic.List<TreeElement>

depth

Declaration
public int depth { get; set; }
Property Value
Type Description
System.Int32

hasChildren

Declaration
public bool hasChildren { get; }
Property Value
Type Description
System.Boolean

id

Declaration
public int id { get; set; }
Property Value
Type Description
System.Int32

name

Declaration
public string name { get; set; }
Property Value
Type Description
System.String

parent

Declaration
public TreeElement parent { get; set; }
Property Value
Type Description
TreeElement
Back to top © 2017 Mapbox