.NET向けSpire.Doc 14.2.7のリリースをお知らせします。このバージョンではテーブル内の行を非表示にする機能がサポートされており、ユーザビリティとパフォーマンスを強化するためのいくつかの調整とバグ修正が含まれています。
以下は、このリリースで行われた変更の一覧です。
| カテゴリー | ID | 説明 |
| 新機能 | SPIREDOC-11444 | テーブル内の行を非表示にする機能を追加しました。
Spire.Doc.Document doc = new Spire.Doc.Document();
doc.LoadFromFile(inputFile1);TableRow row = doc.FirstSection.Body.Tables[0].FirstRow;
row.Hidden = true;doc.SaveToFile(outputDocxFile1);doc = new Document(outputDocxFile1);
row = doc.FirstSection.Body.Tables[0].FirstRow;
Assert.True(row.Hidden);
foreach (TableCell cell in row.Cells)
{
foreach (Paragraph para in cell.Paragraphs)
{
foreach (ParagraphBase run in para.ChildObjects)
{
if (run is TextRange || run is Break || run is Symbol)
{
Assert.True(run.CharacterFormat.Hidden);
}
}
}
} |
| 調整 | - | 名前空間 「Spire.Doc.Interface」 配下のインターフェイスおよびクラスを削除:
IDocumentSerializable、 IXDLSAttributeReader、 IXDLSAttributeWriter、 IXDLSContentReader、 IXDLSContentWriter、 IXDLSFactory、 IXDLSSerializableCollection |
| 調整 | - | 名前空間 「Spire.Doc.Documents.XML」 配下のインターフェイスおよびクラスを削除:
DocumentSerializable、 DocumentSerializableCollection、 XDLSHolder、 XDLSReader |
| 調整 | - | IShapeAttrSourceインターフェースを削除しました。 |
| 調整 | - | ShapeBaseから以下の公開メソッドを削除しました:
public object GetDirectShapeAttr(int key) public object FetchInheritedShapeAttr(int key) public object FetchShapeAttr(int key) public void SetShapeAttr(int key, object value) public void RemoveShapeAttr(int key) public object GetDirectShapeAttribute(int key) public object GetInheritedShapeAttribute(int key) public object GetShapeAttribute(int key) public void SetShapeAttribute(int key, object value) public void RemoveShapeAttribute(int key) public bool HasKey(int key) |
| 不具合修正 | SPIREDOC-11799 | WordをPDFに変換する際に出力が一貫しない問題を修正しました。 |
以下のリンクから Spire.Doc 14.2.7 をダウンロードできます:






