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.
Exibir arquivo Open project: jeremytammik/RevitLookup

Public Methods

Method 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 method

public Data ( string label ) : System
label string
return System

DrillDown() public method

Do the act of drilling down on the data
public DrillDown ( ) : void
return void

StrValue() public abstract method

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

ToString() public method

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
return string