Type | Description | |||
String | Gets a string representation of the object such as: exHTItemsArea,exHTEmptySpace,exHTValidColumn |
The following sample displays brief information about the object from the current cursor position:
' HostEvent event - Notifies the application once the host fires an event. Private Sub G2Host1_HostEvent(ByVal EventID As EXG2HOSTLibCtl.HostEventEnum) With G2Host1 Debug.Print( .HostContext.ToString ) End With End Sub With G2Host1 .DataSource("Items") = "C:\Program Files\Exontrol\ExG2Host\Sample\sample.accdb" .DataMember("Items") = "Employees" .DataField(exItemsDataSource) = "Items" .HostReadOnly = HostReadOnlyEnum.exHostAllowUpdate Or HostReadOnlyEnum.exHostAllowAddNew End With