CopyTextToClipboard, Excel_Close, Excel_GetValue, Excel_GetValueEx, Excel_Open, Excel_Paste, Excel_PasteEx, Excel_Save, Excel_SetValue, Excel_SetValueEx
Description
Excel_Close();
This function closes the Excel file previously opened by the Excel_Open function.
Note
This function doesn't save changes made in the Excel file. Changes in the Excel file can be saved by the Excel_Save function.
See Also
Excel_Open, Excel_Save
Description
Excel_GetValue(ExcelCell
,ExcelValue
);
This function gets text value from specified Excel sheet cell.
See Also
Excel_GetValueEx, Excel_SetValue
Description
Excel_GetValueEx( intExcelColumn
, intExcelRow
,ExcelValue
);
This function gets the text value from specified Excel sheet cell.
Parameters
See Also
Excel_GetValue, Excel_SetValue
Description
Excel_Open(ExcelFilename
, intExcelSheet
, intExcelShow
);
This function opens an Excel file, selects the specified sheet and possibly shows the Excel window.
Parameters
Note
Only one Excel file can be opened at the same time. Opened Excel file must be closed before another Excel file can be opened.
See Also
Excel_Save, Excel_Close
Description
Excel_Paste(
ExcelCell
);
This function pastes the text value from clipboard to the specified Excel sheet cell.
See Also
Excel_PasteEx
Description
Excel_PasteEx( intExcelColumn
, intExcelRow
);
This function pastes the text value from clipboard to the specified Excel sheet cell.
Parameters
See Also
Excel_Paste
Description
Excel_Save();
This function saves changes made in the opened Excel file.
See Also
Excel_SetValue, Excel_Paste
Description
Excel_SetValue(ExcelCell
,ExcelValue
);
This function sets a text value to the specified Excel sheet cell.
Parameters
See Also
Excel_SetValueEx, Excel_GetValue
Description
Excel_SetValueEx( intExcelColumn
, intExcelRow
,ExcelValue
);
This function sets a text value to the specified Excel sheet cell.
Parameters
See Also
Excel_SetValue, Excel_GetValue