[This is preliminary documentation and is subject to change.]

When overriden in derived class shows file properties for given file or directory.

Namespace: Tools.TotalCommanderT
Assembly: Tools.TotalCommander (in Tools.TotalCommander.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[MethodNotSupportedAttribute]
protected virtual ExecExitCode ShowFileInfo(
	IntPtr hMainWin,
	string RemoteName
)
Visual Basic
<MethodNotSupportedAttribute> _
Protected Overridable Function ShowFileInfo ( _
	hMainWin As IntPtr, _
	RemoteName As String _
) As ExecExitCode
Visual C++
[MethodNotSupportedAttribute]
protected:
virtual ExecExitCode ShowFileInfo(
	IntPtr hMainWin, 
	String^ RemoteName
)
F#
[<MethodNotSupportedAttribute>]
abstract ShowFileInfo : 
        hMainWin:IntPtr * 
        RemoteName:string -> ExecExitCode 
[<MethodNotSupportedAttribute>]
override ShowFileInfo : 
        hMainWin:IntPtr * 
        RemoteName:string -> ExecExitCode 
JScript
protected function ShowFileInfo(
	hMainWin : IntPtr, 
	RemoteName : String
) : ExecExitCode

Parameters

hMainWin
Type: System..::..IntPtr
Handle to parent window which can be used for showing a property sheet.
RemoteName
Type: System..::..String
Full path of file or directory to show properties of

Return Value

One of ExecExitCode values.

Remarks

Note
This method is called only when plugin implements ExecuteFile(IntPtr, String%, String) function and thah function calls base class method.

Exceptions

ExceptionCondition
System..::..UnauthorizedAccessExceptionThe user does not have required access
System.Security..::..SecurityExceptionSecurity error detected
System.IO..::..IOExceptionAn IO error occured
System..::..InvalidOperationExceptionExcution cannot be done from other reason
System..::..NotSupportedExceptionThe actual implementation is marked with MethodNotSupportedAttribute which means that the plugin doesnot support operation provided by the method and all most derived implementations of following methods are marked with MethodNotSupportedAttribute as well: FtpModeAdvertisement(IntPtr, String, String), OpenFile(IntPtr, String%), ShowFileInfo(IntPtr, String), ExecuteCommand(IntPtr, String%, String)

See Also