PowerTCP Zip Compression for .NET
Delimiter Property




Gets or sets a character to be used as a Delimiter when adding items to an Archive.
Syntax
<CategoryAttribute("Archive")>
<BrowsableAttribute(True)>
<DescriptionAttribute("Set or Get the Delimiter used when adding files to the archive.")>
<DefaultValueAttribute()>
Public Property Delimiter As Char
Dim instance As Archive
Dim value As Char
 
instance.Delimiter = value
 
value = instance.Delimiter
[Category("Archive")]
[Browsable(true)]
[Description("Set or Get the Delimiter used when adding files to the archive.")]
[DefaultValue()]
public char Delimiter {get; set;}
[Category("Archive")]
[Browsable(true)]
[Description("Set or Get the Delimiter used when adding files to the archive.")]
[DefaultValue()]
public: __property char get_Delimiter();
public: __property void set_Delimiter( 
   char value
);
[Category("Archive")]
[Browsable(true)]
[Description("Set or Get the Delimiter used when adding files to the archive.")]
[DefaultValue()]
public:
property char Delimiter {
   char get();
   void set (    char value);
}

Property Value

A character. Defaults to a comma (,) for backwards compatibility.
Remarks

When a string is used to add items to an archive, it is possible to add multiple files or directories using a delimiter. By default, the Archive component uses a comma (,) to maintain backwards compatibility. However, a comma is a valid filename character. This property allows the developer to use an alternative delimiter.

See Also

Reference

Archive Class
Archive Members


PowerTCP Zip for .NET Documentation Version 2.1.1
© 2018 Dart Communications. All Rights Reserved.
Send comments on this topic