Xceed .NET Libraries Documentation
Xceed.FileSystem Assembly / Xceed.FileSystem Namespace / FileSystemItem Class / DoName Property


    DoName Property (FileSystemItem)
    Gets or sets the filename, without path, of the item.
    Syntax
    'Declaration
     
    Protected MustOverride Property DoName As String
     
    'Usage
     
    Dim instance As FileSystemItem
    Dim value As String
     
    instance.DoName = value
     
    value = instance.DoName

    Property Value

    A string that represents the filename, without path, of the item.
    Remarks

    When assigning a new name to this property, the physical item should be immediately renamed if it exists. If it does not exist, the new name should be cached and applied whenever this item is created. In either cases, if a physical item with the same name already exists, an exception should be thrown.

    The filename, without path, of an item should not end with a path separator character regardless of whether it represents a file or a folder.

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also