C# Class RevitLookup.Snoop.Data.Data

This is the base class for all types of "Snoop.Data". Basically, we want something smarter than the original data type so that we can hook it up to an editor and allow its output to go different places.
Afficher le fichier Open project: jeremytammik/RevitLookup

Méthodes publiques

Méthode Description
Data ( string label ) : System
DrillDown ( ) : void

Do the act of drilling down on the data

StrValue ( ) : string

The value for the Property, expressed as a string

ToString ( ) : string

Format the Label and Value as a single string. The Snoop Forms will handle the Label/Value pair individually, but in other contexts, this could be used to make a flat list of Label/Value pairs.

Method Details

Data() public méthode

public Data ( string label ) : System
label string
Résultat System

DrillDown() public méthode

Do the act of drilling down on the data
public DrillDown ( ) : void
Résultat void

StrValue() public abstract méthode

The value for the Property, expressed as a string
public abstract StrValue ( ) : string
Résultat string

ToString() public méthode

Format the Label and Value as a single string. The Snoop Forms will handle the Label/Value pair individually, but in other contexts, this could be used to make a flat list of Label/Value pairs.
public ToString ( ) : string
Résultat string