JamBaseShellListViewIsColumnVisibleByDefault Method  | 
 
            Determines whether the column with the specified shellcolumnId is a column shown by default.
            
 
    Namespace: 
   Jam.Shell
    Assembly:
   ShellBrowser.Winforms (in ShellBrowser.Winforms.dll) Version: 6.3.1
Syntaxprotected virtual bool IsColumnVisibleByDefault(
	int shellColumnId,
	out int columnWidth
)
Protected Overridable Function IsColumnVisibleByDefault ( 
	shellColumnId As Integer,
	<OutAttribute> ByRef columnWidth As Integer
) As Boolean
protected:
virtual bool IsColumnVisibleByDefault(
	int shellColumnId, 
	[OutAttribute] int% columnWidth
)
abstract IsColumnVisibleByDefault : 
        shellColumnId : int * 
        columnWidth : int byref -> bool 
override IsColumnVisibleByDefault : 
        shellColumnId : int * 
        columnWidth : int byref -> bool Parameters
- shellColumnId
 - Type: SystemInt32
The shell column id. - columnWidth
 - Type: SystemInt32
Returns the width of the column: > 0 if the column is a default column, else 0 
Return Value
Type: 
Booleantrue if the column should be shown by default; otherwise 
false.
            
See Also