ComponentOne for WinUI
OnLoadedCallback プロパティ
使用例 

C1.WinUI.Grid.Excel アセンブリ > C1.WinUI.Grid 名前空間 > LoadExcelOptions クラス : OnLoadedCallback プロパティ
Gets or sets a callback that is invoked after the Excel data has been parsed.
シンタックス
'宣言
 
Public Property OnLoadedCallback As System.Action(Of String())
public System.Action<string[]> OnLoadedCallback {get; set;}

プロパティ値

An System.Action`1 callback that provides the names of the sheets.
使用例
grid.LoadExcel("ExcelFileSample.xlsx", 
    new LoadExcelOptions { 
        OnLoadedCallback = sheetNames => 
        { 
            // sheetNames contains all sheets' names from the loaded Excel file.
        }
    });
参照

参照

LoadExcelOptions クラス
LoadExcelOptions メンバ