Show / Hide Table of Contents

Class LevelContext

Level Context provides the depth of a Level within a Statistical Classification together with its membership. Both depth and membership can be specified per Statistical Classification.

Inheritance
Object
NotificationObject
LevelContext
Implements
INotifyPropertyChanged
Inherited Members
NotificationObject.PropertyChanged
NotificationObject.RaisePropertyChanged(String)
NotificationObject.RaisePropertyChanged(String[])
NotificationObject.RaisePropertyChanged<T>(Expression<Func<T>>)
NotificationObject.OnPropertyChanged(String)
NotificationObject.ResumePropertyEvents()
NotificationObject.SuspendPropertyEvents()
NotificationObject.PropertyEventsSuspended
NotificationObject.PropagateChildChanges(INotifyCollectionChanged, String)
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class LevelContext : NotificationObject, INotifyPropertyChanged

Properties

DisplayLabel

Gets a label to represent the item.

Declaration
public string DisplayLabel { get; }
Property Value
Type Description
String

Items

A Statistical Classification is composed of categories structured in one or more Levels. Each category is represented by a Classification Item, which defines the content and the borders of the category

Declaration
public ObservableCollection<ClassificationItem> Items { get; set; }
Property Value
Type Description
ObservableCollection<ClassificationItem>

Level

The structure of a Statistical Classification is defined by its Levels (classification level). Include here links to the relevant Level.

Declaration
public ClassificationLevel Level { get; set; }
Property Value
Type Description
ClassificationLevel

LevelNumber

The number associated with the Level Context. Levels are numbered consecutively starting with Level 1 at the highest (most aggregated) Level.

Declaration
public int LevelNumber { get; set; }
Property Value
Type Description
Int32

Implements

System.ComponentModel.INotifyPropertyChanged
In This Article
Back to top Generated by DocFX