vr1AddCustomShellColumn method

Applies to
TForm1

Declaration
procedure vr1AddCustomShellColumn(Sender: TCustomVirtualExplorerTree; const FirstAvailableIndex: Integer; Header: TVTHeader);

Implementation

procedure TForm1.vr1AddCustomShellColumn(
  Sender: TCustomVirtualExplorerTree; const FirstAvailableIndex: Integer;
  Header: TVTHeader);
var NewColumn: TVETColumn;
begin try
CustomIndex := FirstAvailableIndex;
NewColumn := TVETColumn( Header.Columns.Add);
NewColumn.ColumnDetails := cdCustom;
NewColumn.Text := 'Priority Level';
NewColumn.Width := 90;
except end;End;


HTML generated by Time2HELP
http://www.time2help.com