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.
Показать файл Открыть проект

Открытые методы

Метод Описание
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