Class SelfExtractorOptions
Class SelfExtractorOptions
名称: Aspose.Zip.Saving 組み合わせ: Aspose.Zip.dll (25.5.0)
自己抽出実行可能なアーカイブを作成するためのオプション。
public class SelfExtractorOptions
Inheritance
相続人
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Examples
using (FileStream zipFile = File.Open("archive.exe", FileMode.Create))
{
using (var archive = new Archive())
{
archive.CreateEntry("entry.bin", "data.bin");
var sfxOptions = new SelfExtractorOptions() { ExtractorTitle = "Extractor", CloseWindowOnExtraction = true, TitleIcon = "C:\pictogram.ico" };
archive.Save(zipFile, new ArchiveSaveOptions() { SelfExtractorOptions = sfxOptions });
}
}
Constructors
SelfExtractorOptions()
public SelfExtractorOptions()
Properties
CloseWindowOnExtraction
引き出し時に抽出器ウィンドウが閉じるかどうかを示す値を取得または設定します。
public bool CloseWindowOnExtraction { get; set; }
不動産価値
ExtractorTitle
エクストラクターのウィンドウのタイトルを取得または設定します。
public string ExtractorTitle { get; set; }
不動産価値
RunAfterExtraction
ファイル抽出が完了した後に実行するプログラムを取得または設定します。
public string RunAfterExtraction { get; set; }
不動産価値
TitleIcon
取得またはエクストラクターアプリケーションのメインウィンドウのタイトルアイコンへのルートを設定します。
public string TitleIcon { get; set; }