Cell 参照に基づいて画像を挿入する
Contents
[
Hide
]
空白の画像があり、数式バーでセル参照を設定して画像にデータやコンテンツを表示する必要がある場合があります。 Aspose.Cells はこの機能をサポートしています (Microsoft Excel 2010)。
Cell 参照に基づく画像の挿入
Aspose.Cells は、ワークシート セルの内容を画像の形で表示することをサポートします。表示するデータを含むセルに画像をリンクできます。セルまたはセル範囲はグラフィック オブジェクトにリンクされているため、そのセルまたはセル範囲のデータに加えた変更は、グラフィック オブジェクトに自動的に反映されます。を呼び出して、ワークシートに画像を追加します。画像を追加の方法シェイプコレクションコレクション (ワークシート物体)。を使用してセル範囲を指定します。方式の属性写真物体。
コード例
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Instantiate a new Workbook | |
Workbook workbook = new Workbook(); | |
// Get the first worksheet's cells collection | |
Cells cells = workbook.Worksheets[0].Cells; | |
// Add string values to the cells | |
cells["A1"].PutValue("A1"); | |
cells["C10"].PutValue("C10"); | |
// Get the conditional icon's image data | |
byte[] imagedata = ConditionalFormattingIcon.GetIconImageData(IconSetType.TrafficLights31, 0); | |
// Create a stream based on the image data | |
MemoryStream stream = new MemoryStream(imagedata); | |
// Add a blank picture to the D1 cell | |
Picture pic = (Picture)workbook.Worksheets[0].Shapes.AddPicture(0, 3, stream, 10, 10); | |
// Specify the formula that refers to the source range of cells | |
pic.Formula = "A1:C10"; | |
// Update the shapes selected value in the worksheet | |
workbook.Worksheets[0].Shapes.UpdateSelectedValue(); | |
// Save the Excel file. | |
workbook.Save(dataDir + "referencedpicture.out.xlsx"); |