ArcFM Responder Mobile Developer Guide
BindTo Method






The source.
Binds to a DataSource to provide annotation and SQL realization services. The DataSetConfig instance will attach to the DataSource events (i.e., AnnotateDataSet, AnnotateDataTable, and RealizeSql) and will annotate based on the DataSetConfig information.
Syntax
'Declaration
 
Public Sub BindTo( _
   ByVal source As DataSource _
) 
'Usage
 
Dim instance As DataSetConfig
Dim source As DataSource
 
instance.BindTo(source)
public void BindTo( 
   DataSource source
)
public procedure BindTo( 
    source: DataSource
); 
public function BindTo( 
   source : DataSource
);
public: void BindTo( 
   DataSource* source
) 
public:
void BindTo( 
   DataSource^ source
) 

Parameters

source
The source.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataSetConfig Class
DataSetConfig Members

Send Feedback