|
|
|
|
|
SftPrintPreview.DataProvider Property |
Defines the control that provides the data for printable content (used by ContentProvider window).
Syntax
|
VB.NET |
Handle = object.DataProvider As Integer |
||
|
VB |
Handle = object.DataProvider As Long |
||
|
C#.NET |
int Handle = object.DataProvider; |
||
|
VC++ |
long Handle = object->DataProvider;
|
||
|
C |
HRESULT object->get_DataProvider(long* Handle); |
||
|
Delphi |
Handle := object.DataProvider : Integer; |
||
|
VB.NET |
object.DataProvider = Handle As Integer |
||
|
VB |
object.DataProvider = Handle As Long |
||
|
C#.NET |
int object.DataProvider = Handle; |
||
|
VC++ |
long object->DataProvider = Handle;
|
||
|
C |
HRESULT object->put_DataProvider(long Handle); |
||
|
Delphi |
object.DataProvider := Handle : Integer; |
||
object
A SftPrintPreview object.
Handle
Defines the control that provides the data for printable content (used by ContentProvider window).
Comments
The DataProvider property defines the control that provides the data for printable content (used by ContentProvider window).
This property is supported for use with SftTree/DLL and SftTree/OCX 5.0 only in conjunction with the ContentProvider window. The tree control is rendered using the overall attributes extracted from the ContentProvider window, but items and cells are extracted from the DataProvider window. This can be useful to print fewer columns than are available in a displayed tree control. The ContentProvider window would define fewer columns than are available in the (visible) DataProvider window.