v2.26
IColumnStyleManager Interface Reference

Allows the user to obtain column styles. This interface can be obtained from IProject interface. More...

Inheritance diagram for IColumnStyleManager:

Public Member Functions

HRESULT GetIds ([out, retval] SAFEARRAY(int) *pIds)
 Gets the identifiers of column styles. More...
 
HRESULT Contains ([in] int id, [out, retval] VARIANT_BOOL *pContains)
 Indicates whether the manager contains the column style specified by the identifier. More...
 
HRESULT GetColumnStyle ([in] int id, [out, retval] IColumnStyle **ppColumnStyle)
 Returns the column style specified by the identifier. More...
 

Detailed Description

Allows the user to obtain column styles. This interface can be obtained from IProject interface.

See also
IProject, IColumnStyle

Member Function Documentation

◆ Contains()

HRESULT IColumnStyleManager::Contains ( [in] int  id,
[out, retval] VARIANT_BOOL *  pContains 
)

Indicates whether the manager contains the column style specified by the identifier.

Parameters
[in]idIdentifier of the column style.
[out]pContainsTRUE if the manager contains the column style, FALSE otherwise.

◆ GetColumnStyle()

HRESULT IColumnStyleManager::GetColumnStyle ( [in] int  id,
[out, retval] IColumnStyle **  ppColumnStyle 
)

Returns the column style specified by the identifier.

Parameters
[in]idIdentifier of the column style.
[out]ppColumnStylethe requested column style, or nullptr if the column style is not found.

◆ GetIds()

HRESULT IColumnStyleManager::GetIds ( [out, retval] SAFEARRAY(int) *  pIds)

Gets the identifiers of column styles.

Returns
An array containing the identifiers of column styles.