-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathUniverSheetData.cs
More file actions
32 lines (27 loc) · 1.03 KB
/
UniverSheetData.cs
File metadata and controls
32 lines (27 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (c) Argo Zhang (argo@163.com). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/
namespace BootstrapBlazor.Components;
/// <summary>
/// UniverSheetData 组件数据类
/// </summary>
public class UniverSheetData
{
/// <summary>
/// 获得/设置 消息名称 默认 null 未设置
/// </summary>
/// <remarks>为 null 时组件会处理内置几个 <see cref="CommandName"/></remarks>
public string? MessageName { get; set; }
/// <summary>
/// 获得/设置 命令名称 默认 null 未设置
/// </summary>
public string? CommandName { get; set; }
/// <summary>
/// 获得/设置 UniverSheet workbook 数据 默认 null 未设置
/// </summary>
public object? WorkbookData { get; set; }
/// <summary>
/// 获得/设置 附加业务数据 默认 null 未设置
/// </summary>
public object? Data { get; set; }
}