Spread 8.0 Documentation
SSGetCustomCellType Function
Support Options
DLL Reference > DLL Functions > SSGetCustomCellType Function

Glossary Item Box

SSGetCustomCellType Function


See Also    ActiveX

Applies To

fpSpread DLL control

Description

Returns information about the specified custom cell type.

Syntax

C

BOOL SSGetCustomCellType(HWND hWnd, LPCTSTR lpszName, LPBOOL lpbEditable, LPBOOL lpbCanOverflow, LPBOOL lpbCanBeOverflown, LPSS_CT_PROCS lpProcs);

C++

BOOL TSpread::GetCustomCellType(LPCTSTR lpszName, LPBOOL lpbEditable, LPBOOL lpbCanOverflow, LPBOOL lpbCanBeOverflown, LPSS_CT_PROCS lpProcs);

Parameters

The following parameters are available:

Parameter Description
hWnd Window handle of the fpSpread control
lpszName Provide the name of the custom cell for which to return information
lpbEditable Provide information about the editable state
lpbCanOverflow Provide information about whether the cell can overflow to the next cell
lpbCanBeOverflown Provide information about whether the cell can have other cells overflow into it
lpProcs Call back function interface

Remarks

This function is applied to the entire workbook, including all sheets in the control.

Call the SSEnumCustomCellType function to return the names of the custom cell types in the control to supply for the lpszName parameter. Use the SS_CT_PROCS structure for the lpProcs parameter.

Return Value

TRUE if the function completes successfully; FALSE otherwise.

See Also

SSAddCustomCellType, SSEnumCustomCellType, SSEnumCustomCellTypeLen, SSRemoveCustomCellType functions

ActiveX Correspondence

GetCustomCellType method

Copyright © GrapeCity, inc. All rights reserved.