C# 클래스 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.
파일 보기 프로젝트 열기: jeremytammik/RevitLookup

공개 메소드들

메소드 설명
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.

메소드 상세

Data() 공개 메소드

public Data ( string label ) : System
label string
리턴 System

DrillDown() 공개 메소드

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

StrValue() 공개 추상적인 메소드

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

ToString() 공개 메소드

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
리턴 string