Cisco Cisco Computer Telephony Integration Option 8.5 開発者ガイド

ページ / 506
   
5-38
CTI OS Developer’s Guide for Cisco Unified Contact Center Enterprise
Release 8.5(1)
Chapter 5      CTI OS ActiveX Controls
CTI OS ActiveX Control Descriptions
Return Value
Return type is String.
GetColumnInfo
Gets the information about the requested column.
Syntax
COM: HRESULT GetColumnInfo([in] short nCol, [out] long *plColType, [out] int *iColWidth, 
[out] int *iColTextAlign, [out] BSTR *bstrColTitle)
VB:
GetColumnInfo(nCol As Short, ByRef plcoltype As Integer, ByRef icolwidth As Integer, 
ByRef bstrcoltitle As String)
.NET: GetColumnInfo(System.Int16 nCol, System.Int32 plcoltype, System.Int32 icolwidth, 
System.String bstrcoltitle)
Parameters
nCol
This is a column index number and an input parameter as type Short.
plcoltype
This is a column type value and an output parameter as type Integer.
icolwidth
This is a column width value and an output parameter as Integer.
bstrcoltitle 
This is a column title text and an output parameter as type String.
Return Value
None.
set_ColumnHeader 
Sets the column header of requested column with given text.
Syntax
COM: HRESULT ColumnHeader(short nCol, [in] BSTR newVal)
VB:
set_ColumnHeader(nCol As Short, newVal As String)
.NET: set_ColumnHeader(System.Int16 nCol, System.String newVal)
Parameters
nCol
This is a column index number and an input parameter as type Short.
newVal
This is a user passing header text and an input parameter as type String.
Return Value
None.