C# Class SIL.FieldWorks.Common.RootSites.StringCollectorEnv

This subclass is used to accumulate a string equivalent to the result that would be produced by calling Display().
Inheritance: CollectorEnv
ファイルを表示 Open project: sillsdev/FieldWorks

Protected Properties

Property Type Description
m_builder StringBuilder

Public Methods

Method Description
StringCollectorEnv ( IVwEnv baseEnv, ISilDataAccess sda, int hvoRoot ) : System

Initializes a new instance of the StringCollectorEnv class.

Protected Methods

Method Description
AddResultString ( string s ) : void

Accumulate a string into our result. The base implementation does nothing.

Method Details

AddResultString() protected method

Accumulate a string into our result. The base implementation does nothing.
protected AddResultString ( string s ) : void
s string The s.
return void

StringCollectorEnv() public method

Initializes a new instance of the StringCollectorEnv class.
public StringCollectorEnv ( IVwEnv baseEnv, ISilDataAccess sda, int hvoRoot ) : System
baseEnv IVwEnv The base env.
sda ISilDataAccess Date access to get prop values etc.
hvoRoot int The root object to display, if m_baseEnv is null. /// If baseEnv is not null, hvoRoot is ignored.
return System

Property Details

m_builder protected_oe property

The builder to which we append the text we're collecting.
protected StringBuilder m_builder
return StringBuilder