Alvas.FileControls Class Library

PathInfo Class

Shows an information about the path.

For a list of all members of this type, see PathInfo Members.

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         Alvas.Windows.Forms.FileControls.PathInfo

[Visual Basic]
Public Class PathInfo
    Inherits Component
[C#]
public class PathInfo : Component

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

This sample shows how to use PathInfo.

private void button1_Click(object sender, System.EventArgs e)
{
    PathInfo pi = new PathInfo();
    pi.FileName = "c:\\";
    Graphics g = this.CreateGraphics();
    g.DrawIcon(pi.Icon, 100, 100);
}
 

Requirements

Namespace: Alvas.Windows.Forms.FileControls

Assembly: Alvas.Windows.Forms.FileControls (in Alvas.Windows.Forms.FileControls.dll)

See Also

PathInfo Members | Alvas.Windows.Forms.FileControls Namespace