AutoSize
Comment.AutoSize property
表示评论的大小是否根据其内容自动调整。
public bool AutoSize { get; set; }
例子
[C#]
if(!comment1.AutoSize)
{
//评论大小随内容变化
comment1.AutoSize = true;
}
也可以看看
- class Comment
- 命名空间 Aspose.Cells
- 部件 Aspose.Cells
表示评论的大小是否根据其内容自动调整。
public bool AutoSize { get; set; }
[C#]
if(!comment1.AutoSize)
{
//评论大小随内容变化
comment1.AutoSize = true;
}