Set the location of the window, whether it's hidden or currently displayed as an icon
Syntax
'Declaration
Sub SetWindow( _
ByVal As IExcelRect, _
ByVal As System.Boolean, _
ByVal As System.Boolean _
)
'Usage
Dim instance As IExcelReader
Dim rect As IExcelRect
Dim hidden As System.Boolean
Dim iconic As System.Boolean
instance.SetWindow(rect, hidden, iconic)
void SetWindow(
IExcelRect ,
System.bool ,
System.bool
)
Parameters
- rect
- An IExcelRect instance used to defined the window properties.
- hidden
- A flag indicate whether the window is hidden
- iconic
- A flag indicate whether the window is currently display as an icon.
See Also