ShellBrowserGetColumnInfo Method |
Use this function to get information about the columns, which the Explorer uses in the details view. Provides the default alignment and the default width of a column, like Explorer would use it.
Use
GetColumnText(Int32, Boolean) or
GetColumnText(SHCOLUMNID, Boolean) to get the column title or the text for a specific column.
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public HorizontalAlignment GetColumnInfo(
int pShellIndex,
out int pWidth
)
Public Function GetColumnInfo (
pShellIndex As Integer,
<OutAttribute> ByRef pWidth As Integer
) As HorizontalAlignment
public:
HorizontalAlignment GetColumnInfo(
int pShellIndex,
[OutAttribute] int% pWidth
)
member GetColumnInfo :
pShellIndex : int *
pWidth : int byref -> HorizontalAlignment
Parameters
- pShellIndex
- Type: SystemInt32
Contains the Shellindex of the column, for which the information should be returned. - pWidth
- Type: SystemInt32
Is an \"out\" parameter, which returns the default width of the column in the Windows Explorer.
Return Value
Type:
HorizontalAlignmentThe function returns the default alignment of the column.
See Also