You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47617 lines
1.9 MiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Aspose.Cells</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Aspose.Cells.AutoFilter">
  8. <summary>
  9. Represents autofiltering for the specified worksheet.
  10. </summary>
  11. <example>
  12. <code>
  13. [C#]
  14. //Creating a file stream containing the Excel file to be opened
  15. FileStream fstream = new FileStream("C:\\book1.xls", FileMode.Open);
  16. //Instantiating a Workbook object and open a stream.
  17. Workbook workbook = new Workbook(fstream);
  18. //Accessing the first worksheet in the Excel file
  19. Worksheet worksheet = workbook.Worksheets[0];
  20. //Creating AutoFilter by giving the cells range of the heading row
  21. worksheet.AutoFilter.Range = "A1:B1";
  22. //Filtering columns with specified values
  23. worksheet.AutoFilter.Filter(1, "Bananas");
  24. //Saving the modified Excel file.
  25. workbook.Save("C:\\output.xls");
  26. //Closing the file stream to free all resources
  27. fstream.Close();
  28. [Visual Basic]
  29. 'Creating a file stream containing the Excel file to be opened
  30. Dim fstream As FileStream = New FileStream("C:\\book1.xls", FileMode.Open)
  31. 'Instantiating a Workbook object
  32. Dim workbook As Workbook = New Workbook(fstream)
  33. 'Accessing the first worksheet in the Excel file
  34. Dim worksheet As Worksheet = workbook.Worksheets(0)
  35. 'Creating AutoFilter by giving the cells range of the heading row
  36. worksheet.AutoFilter.Range = "A1:B1"
  37. 'Filtering columns with specified values
  38. Worksheet.AutoFilter.Filter(1, "Bananas")
  39. 'Saving the modified Excel file
  40. workbook.Save("C:\\output.xls")
  41. 'Closing the file stream to free all resources
  42. fstream.Close()
  43. </code>
  44. </example>
  45. </member>
  46. <member name="M:Aspose.Cells.AutoFilter.SetRange(System.Int32,System.Int32,System.Int32)">
  47. <summary>
  48. Sets the range to which the specified AutoFilter applies.
  49. </summary>
  50. <param name="row">Row index.</param>
  51. <param name="startColumn">Start column index.</param>
  52. <param name="endColumn">End column Index.</param>
  53. </member>
  54. <member name="M:Aspose.Cells.AutoFilter.AddFilter(System.Int32,System.String)">
  55. <summary>
  56. Adds a filter for a filter column.
  57. </summary>
  58. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  59. (from the left of the list; the leftmost field is field 0).
  60. </param>
  61. <param name="criteria">The specified criteria (a string; for example, "101").
  62. It only can be null or be one of the cells' value in this column.
  63. </param>
  64. <remarks>
  65. MS Excel 2007 supports multiple selection in a filter column.
  66. </remarks>
  67. </member>
  68. <member name="M:Aspose.Cells.AutoFilter.AddDateFilter(System.Int32,Aspose.Cells.DateTimeGroupingType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  69. <summary>
  70. Adds a date filter.
  71. </summary>
  72. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  73. (from the left of the list; the leftmost field is field 0).
  74. </param>
  75. <param name="dateTimeGroupingType">
  76. <see cref="T:Aspose.Cells.DateTimeGroupingType" />
  77. </param>
  78. <param name="year">The year.</param>
  79. <param name="month">The month.</param>
  80. <param name="day">The day.</param>
  81. <param name="hour">The hour.</param>
  82. <param name="minute">The minute.</param>
  83. <param name="second">The second.</param>
  84. <remarks>
  85. If DateTimeGroupingType is Year, only the param year effects.
  86. If DateTiemGroupingType is Month, only the param year and month effect.
  87. </remarks>
  88. </member>
  89. <member name="M:Aspose.Cells.AutoFilter.RemoveDateFilter(System.Int32,Aspose.Cells.DateTimeGroupingType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  90. <summary>
  91. Removes a date filter.
  92. </summary>
  93. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  94. (from the left of the list; the leftmost field is field 0).
  95. </param>
  96. <param name="dateTimeGroupingType">
  97. <see cref="T:Aspose.Cells.DateTimeGroupingType" />
  98. </param>
  99. <param name="year">The year.</param>
  100. <param name="month">The month.</param>
  101. <param name="day">The day.</param>
  102. <param name="hour">The hour.</param>
  103. <param name="minute">The minute.</param>
  104. <param name="second">The second.</param>
  105. <remarks>
  106. If DateTimeGroupingType is Year, only the param year effects.
  107. If DateTiemGroupingType is Month, only the param year and month effect.
  108. </remarks>
  109. </member>
  110. <member name="M:Aspose.Cells.AutoFilter.RemoveFilter(System.Int32,System.String)">
  111. <summary>
  112. Removes a filter for a filter column.
  113. </summary>
  114. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  115. (from the left of the list; the leftmost field is field 0).
  116. </param>
  117. <param name="criteria">The specified criteria (a string; for example, "101").
  118. It only can be null or be one of the cells' value in this column.
  119. </param>
  120. </member>
  121. <member name="M:Aspose.Cells.AutoFilter.Filter(System.Int32,System.String)">
  122. <summary>
  123. Filters a list with specified criteria.
  124. </summary>
  125. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  126. (from the left of the list; the leftmost field is field 0).
  127. </param>
  128. <param name="criteria">The specified criteria (a string; for example, "101"). </param>
  129. <remarks>
  130. Aspose.Cells will remove all other filter setting on this field as Ms Excel 97-2003.
  131. </remarks>
  132. </member>
  133. <member name="M:Aspose.Cells.AutoFilter.FilterTop10(System.Int32,System.Boolean,System.Boolean,System.Int32)">
  134. <summary>
  135. Filter the top 10 item in the list
  136. </summary>
  137. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  138. (from the left of the list; the leftmost field is field 0).</param>
  139. <param name="isTop">Indicates whether filter from top or bottom</param>
  140. <param name="isPercent">Indicates whether the items is percent or count </param>
  141. <param name="itemCount">The item count</param>
  142. </member>
  143. <member name="M:Aspose.Cells.AutoFilter.DynamicFilter(System.Int32,Aspose.Cells.DynamicFilterType)">
  144. <summary>
  145. Adds a dynamic filter.
  146. </summary>
  147. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  148. (from the left of the list; the leftmost field is field 0).</param>
  149. <param name="dynamicFilterType">
  150. Dynamic filter type.
  151. </param>
  152. </member>
  153. <member name="M:Aspose.Cells.AutoFilter.AddFontColorFilter(System.Int32,Aspose.Cells.CellsColor)">
  154. <summary>
  155. Adds a font color filter.
  156. </summary>
  157. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  158. (from the left of the list; the leftmost field is field 0).</param>
  159. <param name="color">The <see cref="T:Aspose.Cells.CellsColor" /> object.
  160. </param>
  161. </member>
  162. <member name="M:Aspose.Cells.AutoFilter.AddFillColorFilter(System.Int32,Aspose.Cells.BackgroundType,Aspose.Cells.CellsColor,Aspose.Cells.CellsColor)">
  163. <summary>
  164. Adds a fill color filter.
  165. </summary>
  166. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  167. (from the left of the list; the leftmost field is field 0).</param>
  168. <param name="pattern">The background pattern type.</param>
  169. <param name="foregroundColor">The foreground color.</param>
  170. <param name="backgroundColor">The background color.</param>
  171. </member>
  172. <member name="M:Aspose.Cells.AutoFilter.AddIconFilter(System.Int32,Aspose.Cells.IconSetType,System.Int32)">
  173. <summary>
  174. Adds an icon filter.
  175. </summary>
  176. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  177. (from the left of the list; the leftmost field is field 0).</param>
  178. <param name="iconSetType">The icon set type.</param>
  179. <param name="iconId">The icon id.</param>
  180. <remarks>
  181. Only supports to add the icon filter.
  182. Not supports checking which row is visible if the filter is icon filter.
  183. </remarks>
  184. </member>
  185. <member name="M:Aspose.Cells.AutoFilter.MatchBlanks(System.Int32)">
  186. <summary>
  187. Match all blank cell in the list.
  188. </summary>
  189. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  190. (from the left of the list; the leftmost field is field 0).</param>
  191. </member>
  192. <member name="M:Aspose.Cells.AutoFilter.MatchNonBlanks(System.Int32)">
  193. <summary>
  194. Match all not blank cell in the list.
  195. </summary>
  196. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  197. (from the left of the list; the leftmost field is field 0).</param>
  198. </member>
  199. <member name="M:Aspose.Cells.AutoFilter.Custom(System.Int32,Aspose.Cells.FilterOperatorType,System.Object)">
  200. <summary>
  201. Filters a list with a custom criteria.
  202. </summary>
  203. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  204. (from the left of the list; the leftmost field is field 0).</param>
  205. <param name="operatorType1">The filter operator type</param>
  206. <param name="criteria1">The custom criteria</param>
  207. </member>
  208. <member name="M:Aspose.Cells.AutoFilter.Custom(System.Int32,Aspose.Cells.FilterOperatorType,System.Object,System.Boolean,Aspose.Cells.FilterOperatorType,System.Object)">
  209. <summary>
  210. Filters a list with custom criteria.
  211. </summary>
  212. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  213. (from the left of the list; the leftmost field is field 0).</param>
  214. <param name="operatorType1">The filter operator type</param>
  215. <param name="criteria1">The custom criteria</param>
  216. <param name="isAnd">
  217. </param>
  218. <param name="operatorType2">The filter operator type</param>
  219. <param name="criteria2">The custom criteria</param>
  220. </member>
  221. <member name="M:Aspose.Cells.AutoFilter.ShowAll">
  222. <summary>
  223. Unhide all rows.
  224. </summary>
  225. </member>
  226. <member name="M:Aspose.Cells.AutoFilter.RemoveFilter(System.Int32)">
  227. <summary>
  228. Remove the specific filter.
  229. </summary>
  230. <param name="fieldIndex">The specific filter index</param>
  231. </member>
  232. <member name="M:Aspose.Cells.AutoFilter.Refresh">
  233. <summary>
  234. Refresh auto filters to hide or unhide the rows.
  235. </summary>
  236. <returns>
  237. Returns all hidden rows' indexes.
  238. </returns>
  239. </member>
  240. <member name="M:Aspose.Cells.AutoFilter.Refresh(System.Boolean)">
  241. <summary>
  242. Gets all hidden rows' indexes.
  243. </summary>
  244. <param name="hideRows">
  245. If true, hide the filtered rows.
  246. </param>
  247. <returns>
  248. Returns all hidden rows indexes.
  249. </returns>
  250. </member>
  251. <member name="P:Aspose.Cells.AutoFilter.Sorter">
  252. <summary>
  253. Gets the data sorter.
  254. </summary>
  255. </member>
  256. <member name="P:Aspose.Cells.AutoFilter.Range">
  257. <summary>
  258. Represents the range to which the specified AutoFilter applies.
  259. </summary>
  260. </member>
  261. <member name="P:Aspose.Cells.AutoFilter.FilterColumns">
  262. <summary>
  263. Gets the collection of the filter columns.
  264. </summary>
  265. </member>
  266. <member name="T:Aspose.Cells.AutoFitMergedCellsType">
  267. <summary>
  268. Represents the type of auto fitting merged cells.
  269. </summary>
  270. </member>
  271. <member name="F:Aspose.Cells.AutoFitMergedCellsType.None">
  272. <summary>
  273. Ignore merged cells.
  274. </summary>
  275. <remarks>
  276. Default.
  277. </remarks>
  278. </member>
  279. <member name="F:Aspose.Cells.AutoFitMergedCellsType.FirstLine">
  280. <summary>
  281. Only expands the height of the first row.
  282. </summary>
  283. </member>
  284. <member name="F:Aspose.Cells.AutoFitMergedCellsType.LastLine">
  285. <summary>
  286. Only expands the height of the last row.
  287. </summary>
  288. </member>
  289. <member name="F:Aspose.Cells.AutoFitMergedCellsType.EachLine">
  290. <summary>
  291. Only expands the height of each row.
  292. </summary>
  293. </member>
  294. <member name="T:Aspose.Cells.AutoFitWrappedTextType">
  295. <summary>
  296. Represents the type of auto fitting wrapped text.
  297. </summary>
  298. </member>
  299. <member name="F:Aspose.Cells.AutoFitWrappedTextType.Default">
  300. <summary>
  301. Works as MS Excel.
  302. </summary>
  303. </member>
  304. <member name="F:Aspose.Cells.AutoFitWrappedTextType.Paragraph">
  305. <summary>
  306. Auto fit width with the longest paragraph.
  307. </summary>
  308. </member>
  309. <member name="T:Aspose.Cells.CellsFactory">
  310. <summary>
  311. Utility for instantiating classes of Cells model.
  312. </summary>
  313. </member>
  314. <member name="M:Aspose.Cells.CellsFactory.CreateStyle">
  315. <summary>
  316. Creates a new style.
  317. </summary>
  318. <returns>Returns a style object.</returns>
  319. </member>
  320. <member name="T:Aspose.Cells.Charts.ChartTextDirectionType">
  321. <summary>
  322. Represents the text direction type of the chart.
  323. </summary>
  324. </member>
  325. <member name="F:Aspose.Cells.Charts.ChartTextDirectionType.Horizontal">
  326. <summary>
  327. Horizontal direction type.
  328. </summary>
  329. </member>
  330. <member name="F:Aspose.Cells.Charts.ChartTextDirectionType.Vertical">
  331. <summary>
  332. Vertical direction type.
  333. </summary>
  334. </member>
  335. <member name="F:Aspose.Cells.Charts.ChartTextDirectionType.Rotate90">
  336. <summary>
  337. Rotate 90 angle.
  338. </summary>
  339. </member>
  340. <member name="F:Aspose.Cells.Charts.ChartTextDirectionType.Rotate270">
  341. <summary>
  342. Rotate 270 angle.
  343. </summary>
  344. </member>
  345. <member name="F:Aspose.Cells.Charts.ChartTextDirectionType.Stacked">
  346. <summary>
  347. Stacked text.
  348. </summary>
  349. </member>
  350. <member name="T:Aspose.Cells.Charts.DataLablesSeparatorType">
  351. <summary>
  352. Represents the separator type of DataLabels.
  353. </summary>
  354. <remarks>
  355. NOTE: This member is now obsolete. Instead,
  356. please use DataLabelsSeparatorType enum.
  357. This property will be removed 12 months later since September 2020.
  358. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  359. </member>
  360. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Auto">
  361. <summary>
  362. Represents automatic separator
  363. </summary>
  364. </member>
  365. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Space">
  366. <summary>
  367. Represents space(" ")
  368. </summary>
  369. </member>
  370. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Comma">
  371. <summary>
  372. Represents comma(",")
  373. </summary>
  374. </member>
  375. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Semicolon">
  376. <summary>
  377. Represents semicolon(";")
  378. </summary>
  379. </member>
  380. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Period">
  381. <summary>
  382. Represents period(".")
  383. </summary>
  384. </member>
  385. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.NewLine">
  386. <summary>
  387. Represents newline("\n")
  388. </summary>
  389. </member>
  390. <member name="F:Aspose.Cells.Charts.DataLablesSeparatorType.Custom">
  391. <summary>
  392. Represents custom separator
  393. </summary>
  394. </member>
  395. <member name="T:Aspose.Cells.Charts.PlotDataByType">
  396. <summary>
  397. Represents the type of data plot by row or column.
  398. </summary>
  399. </member>
  400. <member name="F:Aspose.Cells.Charts.PlotDataByType.Row">
  401. <summary>
  402. By row.
  403. </summary>
  404. </member>
  405. <member name="F:Aspose.Cells.Charts.PlotDataByType.Column">
  406. <summary>
  407. By column.
  408. </summary>
  409. </member>
  410. <member name="T:Aspose.Cells.DefaultEditLanguage">
  411. <summary>
  412. Represents the default edit language.
  413. </summary>
  414. </member>
  415. <member name="F:Aspose.Cells.DefaultEditLanguage.Auto">
  416. <summary>
  417. Represents auto detecting edit language according to the text itself.
  418. </summary>
  419. </member>
  420. <member name="F:Aspose.Cells.DefaultEditLanguage.English">
  421. <summary>
  422. Represents English language.
  423. </summary>
  424. </member>
  425. <member name="F:Aspose.Cells.DefaultEditLanguage.CJK">
  426. <summary>
  427. Represents Chinese, Japanese, Korean language.
  428. </summary>
  429. </member>
  430. <member name="T:Aspose.Cells.EmfRenderSetting">
  431. <summary>
  432. Setting for rendering Emf metafile.
  433. </summary>
  434. </member>
  435. <member name="F:Aspose.Cells.EmfRenderSetting.EmfOnly">
  436. <summary>
  437. Only rendering Emf records.
  438. </summary>
  439. </member>
  440. <member name="F:Aspose.Cells.EmfRenderSetting.EmfPlusPrefer">
  441. <summary>
  442. Prefer rendering EmfPlus records.
  443. </summary>
  444. </member>
  445. <member name="T:Aspose.Cells.IStreamProvider">
  446. <summary>
  447. Represents the exported stream provider.
  448. </summary>
  449. </member>
  450. <member name="M:Aspose.Cells.IStreamProvider.InitStream(Aspose.Cells.StreamProviderOptions)">
  451. <summary>
  452. Gets the stream.
  453. </summary>
  454. <param name="options">
  455. </param>
  456. </member>
  457. <member name="M:Aspose.Cells.IStreamProvider.CloseStream(Aspose.Cells.StreamProviderOptions)">
  458. <summary>
  459. Closes the stream.
  460. </summary>
  461. <param name="options">
  462. </param>
  463. </member>
  464. <member name="T:Aspose.Cells.IWarningCallback">
  465. <summary>
  466. Callback interface of warning.
  467. </summary>
  468. </member>
  469. <member name="M:Aspose.Cells.IWarningCallback.Warning(Aspose.Cells.WarningInfo)">
  470. <summary>
  471. Our callback only needs to implement the "Warning" method.
  472. </summary>
  473. <param name="warningInfo"> warning info</param>
  474. </member>
  475. <member name="T:Aspose.Cells.DigitalSignatures.XAdESType">
  476. <summary>
  477. Type of XML Advanced Electronic Signature (XAdES).
  478. </summary>
  479. </member>
  480. <member name="F:Aspose.Cells.DigitalSignatures.XAdESType.None">
  481. <summary>
  482. XAdES is off.
  483. </summary>
  484. </member>
  485. <member name="F:Aspose.Cells.DigitalSignatures.XAdESType.XAdES">
  486. <summary>
  487. Basic XAdES.
  488. </summary>
  489. </member>
  490. <member name="T:Aspose.Cells.FontSetting">
  491. <summary>
  492. Represents a range of characters within the cell text.
  493. </summary>
  494. <example>
  495. <code>
  496. [C#]
  497. //Instantiating a Workbook object
  498. Workbook workbook = new Workbook();
  499. //Adding a new worksheet to the Excel object
  500. workbook.Worksheets.Add();
  501. //Obtaining the reference of the newly added worksheet by passing its sheet index
  502. Worksheet worksheet = workbook.Worksheets[0];
  503. //Accessing the "A1" cell from the worksheet
  504. Aspose.Cells.Cell cell = worksheet.Cells["A1"];
  505. //Adding some value to the "A1" cell
  506. cell.PutValue("Visit Aspose!");
  507. //getting charactor
  508. FontSetting charactor = cell.Characters(6, 7);
  509. //Setting the font of selected characters to bold
  510. charactor.Font.IsBold = true;
  511. //Setting the font color of selected characters to blue
  512. charactor.Font.Color = Color.Blue;
  513. //Saving the Excel file
  514. workbook.Save("D:\\book1.xls");
  515. [VB.NET]
  516. 'Instantiating a Workbook object
  517. Dim workbook As New Workbook()
  518. 'Adding a new worksheet to the Excel object
  519. workbook.Worksheets.Add()
  520. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  521. Dim worksheet As Worksheet = workbook.Worksheets(0)
  522. 'Accessing the "A1" cell from the worksheet
  523. Dim cell As Aspose.Cells.Cell = worksheet.Cells("A1")
  524. 'Adding some value to the "A1" cell
  525. cell.PutValue("Visit Aspose!")
  526. 'getting charactor
  527. Dim charactor As FontSetting = cell.Characters(6, 7)
  528. 'Setting the font of selected characters to bold
  529. charactor.Font.IsBold = True
  530. 'Setting the font color of selected characters to blue
  531. charactor.Font.Color = Color.Blue
  532. 'Saving the Excel file
  533. workbook.Save("D:\book1.xls")
  534. </code>
  535. </example>
  536. </member>
  537. <member name="M:Aspose.Cells.FontSetting.#ctor(System.Int32,System.Int32,Aspose.Cells.WorksheetCollection)">
  538. <summary>
  539. </summary>
  540. <param name="startIndex">
  541. </param>
  542. <param name="length">
  543. </param>
  544. <param name="sheets">
  545. </param>
  546. </member>
  547. <member name="M:Aspose.Cells.FontSetting.SetWordArtStyle(Aspose.Cells.Drawing.PresetWordArtStyle)">
  548. <summary>
  549. Sets the preset WordArt style.
  550. </summary>
  551. <param name="style">The preset WordArt style.</param>
  552. <remarks>Only for the text of shape/chart.</remarks>
  553. </member>
  554. <member name="P:Aspose.Cells.FontSetting.Type">
  555. <summary>
  556. Gets the type of text node.
  557. </summary>
  558. </member>
  559. <member name="P:Aspose.Cells.FontSetting.StartIndex">
  560. <summary>
  561. Gets the start index of the characters.
  562. </summary>
  563. </member>
  564. <member name="P:Aspose.Cells.FontSetting.Length">
  565. <summary>
  566. Gets the length of the characters.
  567. </summary>
  568. </member>
  569. <member name="P:Aspose.Cells.FontSetting.Font">
  570. <summary>
  571. Returns the font of this object.
  572. </summary>
  573. </member>
  574. <member name="P:Aspose.Cells.FontSetting.TextOptions">
  575. <summary>
  576. Returns the text options.
  577. </summary>
  578. </member>
  579. <member name="T:Aspose.Cells.FormulaParseOptions">
  580. <summary>
  581. Represents options when parsing formula.
  582. </summary>
  583. </member>
  584. <member name="P:Aspose.Cells.FormulaParseOptions.LocaleDependent">
  585. <summary>
  586. Whether the formula is locale formatted. Default is false.
  587. </summary>
  588. </member>
  589. <member name="P:Aspose.Cells.FormulaParseOptions.R1C1Style">
  590. <summary>
  591. Whether the formula is R1C1 reference style. Default is false.
  592. </summary>
  593. </member>
  594. <member name="P:Aspose.Cells.FormulaParseOptions.CheckAddIn">
  595. <summary>
  596. Whether check addins in existing external links of current workbook for user defined function without external link.
  597. Default is true(if user defined function matches one addin in existing external links, then take it as the addin).
  598. </summary>
  599. </member>
  600. <member name="P:Aspose.Cells.FormulaParseOptions.Parse">
  601. <summary>
  602. Whether parse given formula. Default is true.
  603. If it is false, then given formula string will be kept as it is for the cell until user call other methods to parse them
  604. or parsed formula data is required by other operations such as calculating formulas.
  605. </summary>
  606. </member>
  607. <member name="T:Aspose.Cells.LightCellsDataHandler">
  608. <summary>
  609. Represents cells data handler for reading large spreadsheet files in light weight mode.
  610. </summary>
  611. <remarks>
  612. When reading a workbook by this mode, <see cref="M:Aspose.Cells.LightCellsDataHandler.StartSheet(Aspose.Cells.Worksheet)" /> will be checked when reading every worksheet in the workbook.
  613. For one sheet, if <see cref="M:Aspose.Cells.LightCellsDataHandler.StartSheet(Aspose.Cells.Worksheet)" /> gives true, then all data and properties of rows/cells of this sheet will be checked
  614. and processed by the implementation of this interface. For every row, <see cref="M:Aspose.Cells.LightCellsDataHandler.StartRow(System.Int32)" /> will be called to check whether it need to be processed.
  615. If a row needs to be processed, properties of this row will be read firstly and user can access its properties by <see cref="M:Aspose.Cells.LightCellsDataHandler.ProcessRow(Aspose.Cells.Row)" />.
  616. if row's cells need to be processed too, then <see cref="M:Aspose.Cells.LightCellsDataHandler.ProcessRow(Aspose.Cells.Row)" /> should returns true and then <see cref="M:Aspose.Cells.LightCellsDataHandler.StartCell(System.Int32)" /> will be
  617. called for every existing cell in this row to check whether one cell need to be processed. If one cell needs to be processed,
  618. then <see cref="M:Aspose.Cells.LightCellsDataHandler.ProcessCell(Aspose.Cells.Cell)" /> will be called to process the cell by the implementation of this interface.
  619. </remarks>
  620. </member>
  621. <member name="M:Aspose.Cells.LightCellsDataHandler.StartSheet(Aspose.Cells.Worksheet)">
  622. <summary>
  623. Starts to process a worksheet.
  624. </summary>
  625. <remarks>
  626. It will be called before reading cells data of a worksheet.
  627. </remarks>
  628. <param name="sheet">the worksheet to read cells data.</param>
  629. <returns>
  630. whether this sheet's cells data needs to be processed. false to ignore this sheet.
  631. </returns>
  632. </member>
  633. <member name="M:Aspose.Cells.LightCellsDataHandler.StartRow(System.Int32)">
  634. <summary>
  635. Prepares to process a row.
  636. </summary>
  637. <param name="rowIndex">the index of next row to be processed</param>
  638. <returns>whether this row(properties or cells data) needs to be processed. false to ignore this row and its cells and check the next row.</returns>
  639. </member>
  640. <member name="M:Aspose.Cells.LightCellsDataHandler.ProcessRow(Aspose.Cells.Row)">
  641. <summary>
  642. Starts to process one row.
  643. </summary>
  644. <remarks>
  645. It will be called after row's properties such as height, style, ...etc. have been read. However, cells in this row has not been read yet.
  646. </remarks>
  647. <param name="row">
  648. Row object which is being processed currently.
  649. </param>
  650. <returns>whether this row's cells need to be processed. false to ignore all cells in this row.</returns>
  651. </member>
  652. <member name="M:Aspose.Cells.LightCellsDataHandler.StartCell(System.Int32)">
  653. <summary>
  654. Prepares to process a cell.
  655. </summary>
  656. <remarks>
  657. It will be called when reaching an existing cell in current row. Current row is the row of last call of <see cref="M:Aspose.Cells.LightCellsDataHandler.ProcessRow(Aspose.Cells.Row)" />.
  658. </remarks>
  659. <param name="columnIndex">column index of the cell to be processed</param>
  660. <returns>whether this cell needs to be processed. false to ignore the cell and check the next one until reach the end of cells data of current row</returns>
  661. </member>
  662. <member name="M:Aspose.Cells.LightCellsDataHandler.ProcessCell(Aspose.Cells.Cell)">
  663. <summary>
  664. Starts to process one cell.
  665. </summary>
  666. <remarks>
  667. It will be called after one cell's data has been read.
  668. </remarks>
  669. <param name="cell">
  670. Cell object which is being processed currently
  671. </param>
  672. <returns>whether this cell needs to be kept in cells model of current sheet.
  673. Commonly it should be false so that all cells will not be kept in memory after being processed and then memory be saved.
  674. For some special purpose such as user needs to access some cells later after the whole workbook having been processed,
  675. user can make this method return true to keep those special cells in Cells model and access them later by APIs such as Cells[row, column].
  676. However, keeping cells data in Cells model will requires more memory and if all cells are kept then reading template file
  677. in LightCells mode will become same with reading it in normal way.</returns>
  678. </member>
  679. <member name="T:Aspose.Cells.LightCellsDataProvider">
  680. <summary>
  681. Represents Data provider for saving large spreadsheet files in light weight mode.
  682. </summary>
  683. <remarks>
  684. When saving a workbook by this mode, <see cref="M:Aspose.Cells.LightCellsDataProvider.StartSheet(System.Int32)" /> will be checked when saving every worksheet in the workbook.
  685. For one sheet, if <see cref="M:Aspose.Cells.LightCellsDataProvider.StartSheet(System.Int32)" /> gives true, then all data and properties of rows/cells of this sheet to be saved
  686. will be provided by the implementation of this interface. In the first place, <see cref="M:Aspose.Cells.LightCellsDataProvider.NextRow" /> will be called to get the next row index to be saved.
  687. If a valid row index is returned(the row index must be in ascending order for the rows to be saved),
  688. then a Row object representing this row will be provided for implementation to set its properties by <see cref="M:Aspose.Cells.LightCellsDataProvider.StartRow(Aspose.Cells.Row)" />.
  689. For one row, <see cref="M:Aspose.Cells.LightCellsDataProvider.NextCell" /> will be checked firstly. If a valid column index be returned(the column index must be in ascending order for all cells of one row to be saved),
  690. then a Cell object representing this cell will be provided for implementation to set its data and properties by <see cref="M:Aspose.Cells.LightCellsDataProvider.StartCell(Aspose.Cells.Cell)" />.
  691. After data of this cell is set, this cell will be saved directly to the generated spreadsheet file and the next cell will be checked and processed.
  692. </remarks>
  693. </member>
  694. <member name="M:Aspose.Cells.LightCellsDataProvider.StartSheet(System.Int32)">
  695. <summary>
  696. Starts to save a worksheet.
  697. </summary>
  698. <remarks>
  699. It will be called at the beginning of saving a worksheet during saving a workbook.
  700. If the provider needs to refer to <i><code>sheetIndex</code></i> later
  701. in startRow(Row) or startCell(Cell) method,
  702. that is, if the process needs to know which worksheet is being processed,
  703. the implementation should retain the <i><code>sheetIndex</code></i> value here.
  704. </remarks>
  705. <param name="sheetIndex">index of current sheet to be saved.</param>
  706. <returns>
  707. true if this provider will provide data for the given sheet; false if given sheet should use its normal data model(Cells).
  708. </returns>
  709. </member>
  710. <member name="M:Aspose.Cells.LightCellsDataProvider.NextRow">
  711. <summary>
  712. Gets the next row to be saved.
  713. </summary>
  714. <remarks>
  715. It will be called at the beginning of saving a row and its cells data(before <see cref="M:Aspose.Cells.LightCellsDataProvider.StartRow(Aspose.Cells.Row)" />).
  716. </remarks>
  717. <returns>
  718. the next row index to be saved. -1 means the end of current sheet data has been reached and no further row of current sheet to be saved.
  719. </returns>
  720. </member>
  721. <member name="M:Aspose.Cells.LightCellsDataProvider.StartRow(Aspose.Cells.Row)">
  722. <summary>
  723. Starts to save data of one row.
  724. </summary>
  725. <remarks>
  726. It will be called at the beginning of saving a row and its cells data.
  727. If current row has some custom properties such as height, style, ...etc.,
  728. implementation should set those properties to given Row object here.
  729. </remarks>
  730. <param name="row">
  731. Row object for implementation to fill data. Its row index is the returned value of latest call of <see cref="M:Aspose.Cells.LightCellsDataProvider.NextRow" />.
  732. If the row has been initialized in the inner cells model, the existing row object will be used.
  733. Otherwise a temporary Row object will be used for implementation to fill data.
  734. </param>
  735. </member>
  736. <member name="M:Aspose.Cells.LightCellsDataProvider.NextCell">
  737. <summary>
  738. Gets next cell to be saved.
  739. </summary>
  740. <remarks>
  741. It will be called at the beginning of saving one cell.
  742. </remarks>
  743. <returns>
  744. column index of the next cell to be saved. -1 means the end of current row data has been reached and no further cell of current row to be saved.
  745. </returns>
  746. </member>
  747. <member name="M:Aspose.Cells.LightCellsDataProvider.StartCell(Aspose.Cells.Cell)">
  748. <summary>
  749. Starts to save data of one cell.
  750. </summary>
  751. <remarks>
  752. </remarks>
  753. <param name="cell">
  754. Cell object for implementation to fill data. Its column index is the returned value of latest call of <see cref="M:Aspose.Cells.LightCellsDataProvider.NextCell" />.
  755. If the cell has been initialized in the inner cells model, the existed cell object will be used.
  756. Otherwise a temporary Cell object will be used for implementation to fill data.
  757. </param>
  758. </member>
  759. <member name="M:Aspose.Cells.LightCellsDataProvider.IsGatherString">
  760. <summary>
  761. Checks whether the current string value of cell needs to be gathered into a global pool.
  762. </summary>
  763. <remarks>
  764. Gathering string values will take advantage only when there are many duplicated string values for the cells provided by this implementation.
  765. In this situation gathering string will save much memory and generate smaller resultant file.
  766. If there are many string values for the cells provided by LightCellsDataProvider but few of them are same,
  767. gathering string will cost more memory and time and has no advantage for the resultant file.
  768. </remarks>
  769. <returns>
  770. true if string value need to be gathered into a global pool for the resultant file.
  771. </returns>
  772. </member>
  773. <member name="T:Aspose.Cells.LoadFilter">
  774. <summary>
  775. Represents the filter that provides options for loading data when loading workbook from template.
  776. </summary>
  777. <remarks>
  778. User may specify the filter options or implement their own LoadFilter to specify how to load data.
  779. </remarks>
  780. <example>
  781. The following example shows how to determine the filter options according to worksheet's properties.
  782. <code>
  783. [C#]
  784. Workbook wb = new Workbook(template, new LoadOptions() { LoadFilter = new LoadFilterSheet() });
  785. //Custom LoadFilter implementation
  786. class LoadFilterSheet : LoadFilter
  787. {
  788. public override void StartSheet(Worksheet sheet)
  789. {
  790. if (sheet.Name == "Sheet1")
  791. {
  792. LoadDataFilterOptions = Aspose.Cells.LoadDataFilterOptions.All;
  793. }
  794. else
  795. {
  796. LoadDataFilterOptions = Aspose.Cells.LoadDataFilterOptions.None;
  797. }
  798. }
  799. }
  800. </code></example>
  801. </member>
  802. <member name="M:Aspose.Cells.LoadFilter.#ctor">
  803. <summary>
  804. Constructs one LoadFilter with default filter options LoadDataFilterOptions.All.
  805. </summary>
  806. </member>
  807. <member name="M:Aspose.Cells.LoadFilter.#ctor(Aspose.Cells.LoadDataFilterOptions)">
  808. <summary>
  809. Constructs one LoadFilter with given filter options.
  810. </summary>
  811. <param name="opts">the default filter options</param>
  812. </member>
  813. <member name="M:Aspose.Cells.LoadFilter.StartSheet(Aspose.Cells.Worksheet)">
  814. <summary>
  815. Prepares filter options before loading given worksheet.
  816. User's implementation of LoadFilter can change the LoadDataFilterOptions here
  817. to denote how to load data for this worksheet.
  818. </summary>
  819. <param name="sheet">The worksheet to be loaded.
  820. There are only few properties can be used for the given worksheet object here
  821. because most data and properties have not been loaded. The available properties are:
  822. Name, Index, VisibilityType</param>
  823. </member>
  824. <member name="P:Aspose.Cells.LoadFilter.LoadDataFilterOptions">
  825. <summary>
  826. The filter options to denote what data should be loaded.
  827. </summary>
  828. </member>
  829. <member name="P:Aspose.Cells.LoadFilter.SheetsInLoadingOrder">
  830. <summary>
  831. Specifies the sheets(indices) and order to be loaded.
  832. Default is null, that denotes to load all sheets in the default order in template file.
  833. If not null and some sheet's index is not in the returned array, then the sheet will not be loaded.
  834. </summary>
  835. </member>
  836. <member name="T:Aspose.Cells.HtmlLoadOptions">
  837. <summary>
  838. Represents options when importing a html file.
  839. </summary>
  840. </member>
  841. <member name="T:Aspose.Cells.AbstractTextLoadOptions">
  842. <summary>
  843. Common options for loading text values
  844. </summary>
  845. </member>
  846. <member name="T:Aspose.Cells.LoadOptions">
  847. <summary>
  848. Represents the options of loading the file.
  849. </summary>
  850. </member>
  851. <member name="M:Aspose.Cells.LoadOptions.#ctor">
  852. <summary>
  853. Creates an options of loading the file.
  854. </summary>
  855. </member>
  856. <member name="M:Aspose.Cells.LoadOptions.#ctor(Aspose.Cells.LoadFormat)">
  857. <summary>
  858. Creates an options of loading the file.
  859. </summary>
  860. <param name="loadFormat">The loading format.</param>
  861. </member>
  862. <member name="M:Aspose.Cells.LoadOptions.SetPaperSize(Aspose.Cells.PaperSizeType)">
  863. <summary>
  864. Sets the default print paper size from default printer's setting.
  865. </summary>
  866. <param name="type">The default paper size.</param>
  867. <remarks>
  868. If there is no setting about paper size,MS Excel will use default printer's setting.
  869. </remarks>
  870. </member>
  871. <member name="P:Aspose.Cells.LoadOptions.LoadFormat">
  872. <summary>
  873. Gets the load format.
  874. </summary>
  875. </member>
  876. <member name="P:Aspose.Cells.LoadOptions.Password">
  877. <summary>
  878. Gets and set the password of the workbook.
  879. </summary>
  880. </member>
  881. <member name="P:Aspose.Cells.LoadOptions.ParsingFormulaOnOpen">
  882. <summary>
  883. Indicates whether parsing the formula when reading the file.
  884. </summary>
  885. <remarks>
  886. Only applies for Excel Xlsx, Xltx, Xltm and Xlsm file
  887. because the formulas in the files are stored with a string formula.
  888. </remarks>
  889. </member>
  890. <member name="P:Aspose.Cells.LoadOptions.ParsingPivotCachedRecords">
  891. <summary>
  892. Indicates whether parsing pivot cached records when loading the file.
  893. The default value is false.
  894. </summary>
  895. <remarks>
  896. Only applies for Excel Xlsx, Xltx, Xltm , Xlsm and xlsb file</remarks>
  897. </member>
  898. <member name="P:Aspose.Cells.LoadOptions.LanguageCode">
  899. <summary>
  900. Gets or sets the user interface language of the Workbook version based on CountryCode that has saved the file.
  901. </summary>
  902. </member>
  903. <member name="P:Aspose.Cells.LoadOptions.Region">
  904. <summary>
  905. Gets or sets the system regional settings based on CountryCode at the time the file was loaded.
  906. </summary>
  907. <remarks>If you do not want to use the region saved in the file,
  908. please reset it after reading the file.</remarks>
  909. </member>
  910. <member name="P:Aspose.Cells.LoadOptions.CultureInfo">
  911. <summary>
  912. Gets or sets the system culture info at the time the file was loaded.
  913. </summary>
  914. </member>
  915. <member name="P:Aspose.Cells.LoadOptions.StandardFont">
  916. <summary>
  917. Sets the default standard font name
  918. </summary>
  919. </member>
  920. <member name="P:Aspose.Cells.LoadOptions.StandardFontSize">
  921. <summary>
  922. Sets the default standard font size.
  923. </summary>
  924. </member>
  925. <member name="P:Aspose.Cells.LoadOptions.InterruptMonitor">
  926. <summary>
  927. Gets and sets the interrupt monitor.
  928. </summary>
  929. </member>
  930. <member name="P:Aspose.Cells.LoadOptions.IgnoreNotPrinted">
  931. <summary>
  932. Ignore the data which are not printed if directly printing the file
  933. </summary>
  934. <remarks>
  935. Only for xlsx file.
  936. </remarks>
  937. </member>
  938. <member name="P:Aspose.Cells.LoadOptions.CheckDataValid">
  939. <summary>
  940. Check whether data is valid in the template file.
  941. </summary>
  942. </member>
  943. <member name="P:Aspose.Cells.LoadOptions.CheckExcelRestriction">
  944. <summary>
  945. Whether check restriction of excel file when user modify cells related objects.
  946. For example, excel does not allow inputting string value longer than 32K.
  947. When you input a value longer than 32K such as by Cell.PutValue(string), if this property is true, you will get an Exception.
  948. If this property is false, we will accept your input string value as the cell's value so that later
  949. you can output the complete string value for other file formats such as CSV.
  950. However, if you have set such kind of value that is invalid for excel file format,
  951. you should not save the workbook as excel file format later. Otherwise there may be unexpected error for the generated excel file.
  952. </summary>
  953. </member>
  954. <member name="P:Aspose.Cells.LoadOptions.KeepUnparsedData">
  955. <summary>
  956. Whether keep the unparsed data in memory for the Workbook when it is loaded from template file. Default is true.
  957. </summary>
  958. <remarks>
  959. For scenarios that user only needs to read some contents from template file and does not need to save the workbook back,
  960. set this property as false may improve performance, especially when using it together with some kind of LoadFilter,
  961. </remarks>
  962. </member>
  963. <member name="P:Aspose.Cells.LoadOptions.LoadFilter">
  964. <summary>
  965. The filter to denote how to load data.
  966. </summary>
  967. </member>
  968. <member name="P:Aspose.Cells.LoadOptions.LightCellsDataHandler">
  969. <summary>
  970. The data handler for processing cells data when reading template file.
  971. </summary>
  972. </member>
  973. <member name="P:Aspose.Cells.LoadOptions.MemorySetting">
  974. <summary>
  975. Gets or sets the memory usage options.
  976. </summary>
  977. </member>
  978. <member name="P:Aspose.Cells.LoadOptions.WarningCallback">
  979. <summary>
  980. Gets or sets warning callback.
  981. </summary>
  982. </member>
  983. <member name="P:Aspose.Cells.LoadOptions.AutoFitterOptions">
  984. <summary>
  985. Gets and sets the auto fitter options
  986. </summary>
  987. <remarks>
  988. Only for xlsx file now.
  989. </remarks>
  990. </member>
  991. <member name="P:Aspose.Cells.LoadOptions.FontConfigs">
  992. <summary>
  993. Gets and sets individual font configs.
  994. Only works for the <see cref="T:Aspose.Cells.Workbook" /> which uses this <see cref="T:Aspose.Cells.LoadOptions" /> to load.&gt;
  995. </summary>
  996. </member>
  997. <member name="P:Aspose.Cells.AbstractTextLoadOptions.Encoding">
  998. <summary>
  999. Gets and sets the default encoding. Only applies for csv file.
  1000. </summary>
  1001. </member>
  1002. <member name="P:Aspose.Cells.AbstractTextLoadOptions.LoadStyleStrategy">
  1003. <summary>
  1004. Indicates the strategy to apply style for parsed values when converting string value to number or datetime.
  1005. </summary>
  1006. </member>
  1007. <member name="P:Aspose.Cells.AbstractTextLoadOptions.ConvertNumericData">
  1008. <summary>
  1009. Gets or sets a value that indicates whether the string in text file is converted to numeric data.
  1010. </summary>
  1011. </member>
  1012. <member name="P:Aspose.Cells.AbstractTextLoadOptions.ConvertDateTimeData">
  1013. <summary>
  1014. Gets or sets a value that indicates whether the string in text file is converted to date data.
  1015. </summary>
  1016. </member>
  1017. <member name="P:Aspose.Cells.AbstractTextLoadOptions.KeepPrecision">
  1018. <summary>
  1019. Indicates whether not parsing a string value if the length is 15.
  1020. </summary>
  1021. </member>
  1022. <member name="M:Aspose.Cells.HtmlLoadOptions.#ctor">
  1023. <summary>
  1024. Creates an options of loading the file.
  1025. </summary>
  1026. </member>
  1027. <member name="M:Aspose.Cells.HtmlLoadOptions.#ctor(Aspose.Cells.LoadFormat)">
  1028. <summary>
  1029. Creates an options of loading the file.
  1030. </summary>
  1031. <param name="loadFormat">The loading format.</param>
  1032. </member>
  1033. <member name="P:Aspose.Cells.HtmlLoadOptions.AttachedFilesDirectory">
  1034. <summary>
  1035. The directory that the attached files will be saved to.
  1036. </summary>
  1037. <remarks>
  1038. NOTE: This member is now obsolete. Instead,
  1039. please use HtmlLoadOptions.StreamProvider property.
  1040. This property will be removed 12 months later since December 2014.
  1041. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1042. </member>
  1043. <member name="P:Aspose.Cells.HtmlLoadOptions.LoadFormulas">
  1044. <summary>
  1045. Indicates whether importing formulas if the original html file contains formulas
  1046. </summary>
  1047. </member>
  1048. <member name="P:Aspose.Cells.HtmlLoadOptions.SupportDivTag">
  1049. <summary>
  1050. Indicates whether support the layout of &lt;div&gt; tag when the html file contains &lt;div&gt; tags. The default value is false.
  1051. </summary>
  1052. </member>
  1053. <member name="P:Aspose.Cells.HtmlLoadOptions.DeleteRedundantSpaces">
  1054. <summary>
  1055. Indicates whether delete redundant spaces when the text wraps lines using &lt;br&gt;tag.The default value is false.
  1056. </summary>
  1057. </member>
  1058. <member name="P:Aspose.Cells.HtmlLoadOptions.AutoFitColsAndRows">
  1059. <summary>
  1060. Indicates whether auto-fit columns and rows. The default value is false.
  1061. </summary>
  1062. </member>
  1063. <member name="P:Aspose.Cells.HtmlLoadOptions.ConvertFormulasData">
  1064. <summary>
  1065. if true, convert string to formula when string value starts with character '=',the default value is false.
  1066. </summary>
  1067. </member>
  1068. <member name="P:Aspose.Cells.HtmlLoadOptions.StreamProvider">
  1069. <summary>
  1070. Gets or sets the StreamProviderImportHtmlFile for importing objects.
  1071. </summary>
  1072. </member>
  1073. <member name="P:Aspose.Cells.HtmlLoadOptions.ProgId">
  1074. <summary>
  1075. Gets the program id of creating the file.
  1076. Only for MHT files.
  1077. </summary>
  1078. </member>
  1079. <member name="T:Aspose.Cells.Rendering.PdfCustomPropertiesExport">
  1080. <summary>
  1081. Specifies the way <see cref="T:Aspose.Cells.Properties.CustomDocumentPropertyCollection" /> are exported to PDF file.
  1082. </summary>
  1083. </member>
  1084. <member name="F:Aspose.Cells.Rendering.PdfCustomPropertiesExport.None">
  1085. <summary>
  1086. No custom properties are exported.
  1087. </summary>
  1088. </member>
  1089. <member name="F:Aspose.Cells.Rendering.PdfCustomPropertiesExport.Standard">
  1090. <summary>
  1091. Custom properties are exported as entries in Info dictionary.
  1092. </summary>
  1093. <remarks>
  1094. Custom properties with the following names are not exported:
  1095. "Title", "Author", "Subject", "Keywords", "Creator", "Producer", "CreationDate", "ModDate", "Trapped".
  1096. </remarks>
  1097. </member>
  1098. <member name="T:Aspose.Cells.RegexType">
  1099. <summary>
  1100. Represents the regex type for searching string.
  1101. </summary>
  1102. </member>
  1103. <member name="F:Aspose.Cells.RegexType.None">
  1104. <summary>
  1105. Not regex, take the searched value as plain string.
  1106. </summary>
  1107. </member>
  1108. <member name="F:Aspose.Cells.RegexType.Wildcards">
  1109. <summary>
  1110. Windows wildcards. Same with wildcards('*','?','~') in ms excel.
  1111. </summary>
  1112. </member>
  1113. <member name="F:Aspose.Cells.RegexType.Regex">
  1114. <summary>
  1115. Common regular expression.
  1116. </summary>
  1117. </member>
  1118. <member name="T:Aspose.Cells.CopyFormatType">
  1119. <summary>
  1120. Represents type of copying format when inserting rows.
  1121. </summary>
  1122. </member>
  1123. <member name="F:Aspose.Cells.CopyFormatType.SameAsAbove">
  1124. <summary>
  1125. Formats same as above row.
  1126. </summary>
  1127. </member>
  1128. <member name="F:Aspose.Cells.CopyFormatType.SameAsBelow">
  1129. <summary>
  1130. Formats same as below row.
  1131. </summary>
  1132. </member>
  1133. <member name="F:Aspose.Cells.CopyFormatType.Clear">
  1134. <summary>
  1135. Clears formatting.
  1136. </summary>
  1137. </member>
  1138. <member name="T:Aspose.Cells.ThreadedCommentAuthor">
  1139. <summary>
  1140. Represents the person who creates the threaded comments;
  1141. </summary>
  1142. </member>
  1143. <member name="P:Aspose.Cells.ThreadedCommentAuthor.Name">
  1144. <summary>
  1145. Gets and sets the name.
  1146. </summary>
  1147. </member>
  1148. <member name="P:Aspose.Cells.ThreadedCommentAuthor.UserId">
  1149. <summary>
  1150. Gets and sets the id of the user.
  1151. </summary>
  1152. </member>
  1153. <member name="P:Aspose.Cells.ThreadedCommentAuthor.ProviderId">
  1154. <summary>
  1155. Gets the id of the provider.
  1156. </summary>
  1157. </member>
  1158. <member name="T:Aspose.Cells.ThreadedCommentAuthorCollection">
  1159. <summary>
  1160. Represents all persons who .
  1161. </summary>
  1162. </member>
  1163. <member name="M:Aspose.Cells.ThreadedCommentAuthorCollection.Add(System.String,System.String,System.String)">
  1164. <summary>
  1165. Adds one thread comment person.
  1166. </summary>
  1167. <param name="name">The name of the person.</param>
  1168. <param name="userId">
  1169. </param>
  1170. <param name="providerId">The id of the provider</param>
  1171. <returns>
  1172. </returns>
  1173. </member>
  1174. <member name="P:Aspose.Cells.ThreadedCommentAuthorCollection.CurrentPerson">
  1175. <summary>
  1176. Gets and sets the current user.
  1177. </summary>
  1178. </member>
  1179. <member name="P:Aspose.Cells.ThreadedCommentAuthorCollection.Item(System.Int32)">
  1180. <summary>
  1181. Gets the person who create threaded comments.
  1182. </summary>
  1183. <param name="index">The index</param>
  1184. <returns>
  1185. </returns>
  1186. </member>
  1187. <member name="P:Aspose.Cells.ThreadedCommentAuthorCollection.Item(System.String)">
  1188. <summary>
  1189. Gets the person who create threaded comments.
  1190. </summary>
  1191. <param name="name">The index</param>
  1192. <returns>
  1193. </returns>
  1194. </member>
  1195. <member name="T:Aspose.Cells.Drawing.CustomXmlShape">
  1196. <summary>
  1197. Represents Custom xml shape ,such as Ink.
  1198. </summary>
  1199. </member>
  1200. <member name="T:Aspose.Cells.Drawing.Shape">
  1201. <summary>
  1202. Represents the msodrawing object.
  1203. </summary>
  1204. </member>
  1205. <member name="M:Aspose.Cells.Drawing.Shape.GetResultOfSmartArt">
  1206. <summary>
  1207. Converting smart art to grouped shapes.
  1208. </summary>
  1209. </member>
  1210. <member name="M:Aspose.Cells.Drawing.Shape.ToFrontOrBack(System.Int32)">
  1211. <summary>
  1212. Brings the shape to the front or sends the shape to back.
  1213. </summary>
  1214. <param name="orders">
  1215. If it's less than zero, sets the shape to back.
  1216. If it's greater than zero, brings the shape to front.
  1217. </param>
  1218. </member>
  1219. <member name="M:Aspose.Cells.Drawing.Shape.GetLockedProperty(Aspose.Cells.Drawing.ShapeLockType)">
  1220. <summary>
  1221. Gets the value of locked property.
  1222. </summary>
  1223. <param name="type">The type of the shape locked property.</param>
  1224. <returns>Returns the value of locked property.</returns>
  1225. </member>
  1226. <member name="M:Aspose.Cells.Drawing.Shape.SetLockedProperty(Aspose.Cells.Drawing.ShapeLockType,System.Boolean)">
  1227. <summary>
  1228. Set the locked property.
  1229. </summary>
  1230. <param name="type">The locked type.</param>
  1231. <param name="value">The value of the property.</param>
  1232. </member>
  1233. <member name="M:Aspose.Cells.Drawing.Shape.AddHyperlink(System.String)">
  1234. <summary>
  1235. Adds a hyperlink to the shape.
  1236. </summary>
  1237. <param name="address">Address of the hyperlink.</param>
  1238. <returns>Return the new hyperlink object.</returns>
  1239. </member>
  1240. <member name="M:Aspose.Cells.Drawing.Shape.RemoveHyperlink">
  1241. <summary>
  1242. Remove the hyperlink of the shape.
  1243. </summary>
  1244. </member>
  1245. <member name="M:Aspose.Cells.Drawing.Shape.MoveToRange(System.Int32,System.Int32,System.Int32,System.Int32)">
  1246. <summary>
  1247. Moves the shape to a specified range.
  1248. </summary>
  1249. <param name="upperLeftRow">Upper left row index.</param>
  1250. <param name="upperLeftColumn">Upper left column index.</param>
  1251. <param name="lowerRightRow">Lower right row index</param>
  1252. <param name="lowerRightColumn">Lower right column index</param>
  1253. </member>
  1254. <member name="M:Aspose.Cells.Drawing.Shape.AlignTopRightCorner(System.Int32,System.Int32)">
  1255. <summary>
  1256. Moves the picture to the top-right corner.
  1257. </summary>
  1258. <param name="topRow">the row index.</param>
  1259. <param name="rightColumn">the column index.</param>
  1260. </member>
  1261. <member name="M:Aspose.Cells.Drawing.Shape.ToImage(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
  1262. <summary>
  1263. Creates the shape image and saves it to a stream in the specified format.
  1264. </summary>
  1265. <param name="stream">The output stream.</param>
  1266. <param name="imageFormat">The format in which to save the image.</param>
  1267. <remarks>
  1268. <p>The following formats are supported:
  1269. .bmp, .gif, .jpg, .jpeg, .tiff, .emf.</p>
  1270. </remarks>
  1271. </member>
  1272. <member name="M:Aspose.Cells.Drawing.Shape.ToImage(System.String,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  1273. <summary>
  1274. Saves the shape to a file.
  1275. </summary>
  1276. </member>
  1277. <member name="M:Aspose.Cells.Drawing.Shape.ToImage(System.IO.Stream,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  1278. <summary>
  1279. Saves the shape to a stream.
  1280. </summary>
  1281. </member>
  1282. <member name="M:Aspose.Cells.Drawing.Shape.ToImage(Aspose.Cells.Rendering.ImageOrPrintOptions)">
  1283. <summary>
  1284. Returns the bitmap object of the shape .
  1285. </summary>
  1286. </member>
  1287. <member name="M:Aspose.Cells.Drawing.Shape.GetLinkedCell(System.Boolean,System.Boolean)">
  1288. <summary>
  1289. Gets the range linked to the control's value.
  1290. </summary>
  1291. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  1292. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  1293. <returns>The range linked to the control's value.</returns>
  1294. </member>
  1295. <member name="M:Aspose.Cells.Drawing.Shape.SetLinkedCell(System.String,System.Boolean,System.Boolean)">
  1296. <summary>
  1297. Sets the range linked to the control's value.
  1298. </summary>
  1299. <param name="formula">The range linked to the control's value.</param>
  1300. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  1301. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  1302. </member>
  1303. <member name="M:Aspose.Cells.Drawing.Shape.GetInputRange(System.Boolean,System.Boolean)">
  1304. <summary>
  1305. Gets the range used to fill the control.
  1306. </summary>
  1307. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  1308. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  1309. <returns>The range used to fill the control.</returns>
  1310. </member>
  1311. <member name="M:Aspose.Cells.Drawing.Shape.SetInputRange(System.String,System.Boolean,System.Boolean)">
  1312. <summary>
  1313. Sets the range used to fill the control.
  1314. </summary>
  1315. <param name="formula">The range used to fill the control.</param>
  1316. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  1317. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  1318. </member>
  1319. <member name="M:Aspose.Cells.Drawing.Shape.UpdateSelectedValue">
  1320. <summary>
  1321. Update the selected value by the value of the linked cell.
  1322. </summary>
  1323. </member>
  1324. <member name="M:Aspose.Cells.Drawing.Shape.CalculateTextSize">
  1325. <summary>
  1326. Recalculate the text area
  1327. </summary>
  1328. <returns>Text's Size in an array(width and height).</returns>
  1329. </member>
  1330. <member name="M:Aspose.Cells.Drawing.Shape.FormatCharacters(System.Int32,System.Int32,Aspose.Cells.Font,Aspose.Cells.StyleFlag)">
  1331. <summary>
  1332. Formats some characters with the font setting.
  1333. </summary>
  1334. <param name="startIndex">The start index.</param>
  1335. <param name="length">The length.</param>
  1336. <param name="font">The font setting.</param>
  1337. <param name="flag">The flag of the font setting.</param>
  1338. </member>
  1339. <member name="M:Aspose.Cells.Drawing.Shape.FormatCharacters(System.Int32,System.Int32,Aspose.Cells.Font)">
  1340. <summary>
  1341. Formats some characters with the font setting.
  1342. </summary>
  1343. <param name="startIndex">The start index.</param>
  1344. <param name="length">The length.</param>
  1345. <param name="font">The font setting.</param>
  1346. <remarks>
  1347. NOTE: This member is now obsolete. Instead,
  1348. please use Shape.FormatCharacters(int startIndex, int length, Font font, StyleFlag flag) method.
  1349. This property will be removed 12 months later since March 2016.
  1350. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1351. </member>
  1352. <member name="M:Aspose.Cells.Drawing.Shape.Characters(System.Int32,System.Int32)">
  1353. <summary>
  1354. Returns a Characters object that represents a range of characters within the text.
  1355. </summary>
  1356. <param name="startIndex">The index of the start of the character.</param>
  1357. <param name="length">The number of characters.</param>
  1358. <returns>Characters object.</returns>
  1359. <remarks>This method only works on shape with title.</remarks>
  1360. </member>
  1361. <member name="M:Aspose.Cells.Drawing.Shape.GetCharacters">
  1362. <summary>
  1363. Returns all Characters objects
  1364. that represents a range of characters within the text .
  1365. </summary>
  1366. <returns>All Characters objects </returns>
  1367. </member>
  1368. <member name="M:Aspose.Cells.Drawing.Shape.RemoveActiveXControl">
  1369. <summary>
  1370. Remove activeX control.
  1371. </summary>
  1372. </member>
  1373. <member name="P:Aspose.Cells.Drawing.Shape.MacroName">
  1374. <summary>
  1375. Gets and sets the name of macro.
  1376. </summary>
  1377. </member>
  1378. <member name="P:Aspose.Cells.Drawing.Shape.IsEquation">
  1379. <summary>
  1380. Indicates whether the shape only contains an equation.
  1381. </summary>
  1382. </member>
  1383. <member name="P:Aspose.Cells.Drawing.Shape.IsSmartArt">
  1384. <summary>
  1385. Indicates whether the shape is smart art.
  1386. </summary>
  1387. <remarks>
  1388. Only for ooxml file.
  1389. </remarks>
  1390. </member>
  1391. <member name="P:Aspose.Cells.Drawing.Shape.ZOrderPosition">
  1392. <summary>
  1393. Returns the position of a shape in the z-order.
  1394. </summary>
  1395. </member>
  1396. <member name="P:Aspose.Cells.Drawing.Shape.Name">
  1397. <summary>
  1398. Gets and sets the name of the shape.
  1399. </summary>
  1400. </member>
  1401. <member name="P:Aspose.Cells.Drawing.Shape.AlternativeText">
  1402. <summary>
  1403. Returns or sets the descriptive (alternative) text string of the <see cref="T:Aspose.Cells.Drawing.Shape" /> object.
  1404. </summary>
  1405. </member>
  1406. <member name="P:Aspose.Cells.Drawing.Shape.Title">
  1407. <summary>
  1408. Specifies the title (caption) of the current shape object.
  1409. </summary>
  1410. </member>
  1411. <member name="P:Aspose.Cells.Drawing.Shape.LineFormat">
  1412. <summary>
  1413. Returns a MsoLineFormat object that contains line formatting properties for the specified shape.
  1414. </summary>
  1415. <remarks>NOTE: This member is now obsolete. Instead,
  1416. please use Shape.Line property.
  1417. This property will be removed 12 months later since July 2016.
  1418. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1419. </member>
  1420. <member name="P:Aspose.Cells.Drawing.Shape.FillFormat">
  1421. <summary>
  1422. Returns a MsoFillFormat object that contains fill formatting properties for the specified shape.
  1423. </summary>
  1424. <remarks>NOTE: This member is now obsolete. Instead,
  1425. please use Shape.Fill property.
  1426. This property will be removed 12 months later since July 2016.
  1427. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1428. </member>
  1429. <member name="P:Aspose.Cells.Drawing.Shape.Format">
  1430. <summary>
  1431. Represents the setting of the shape's formatting.
  1432. </summary>
  1433. <remarks>NOTE: This member is now obsolete. Instead,
  1434. please use Shape.Fill and Shape.Line properties.
  1435. This property will be removed 6 months later since August 2016.
  1436. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1437. </member>
  1438. <member name="P:Aspose.Cells.Drawing.Shape.Line">
  1439. <summary>
  1440. Gets line style
  1441. </summary>
  1442. </member>
  1443. <member name="P:Aspose.Cells.Drawing.Shape.Fill">
  1444. <summary>
  1445. Returns a <see cref="P:Aspose.Cells.Drawing.Shape.FillFormat" /> object that contains fill formatting properties for the specified shape.
  1446. </summary>
  1447. </member>
  1448. <member name="P:Aspose.Cells.Drawing.Shape.ShadowEffect">
  1449. <summary>
  1450. Represents a <seealso cref="P:Aspose.Cells.Drawing.Shape.ShadowEffect" /> object that specifies shadow effect for the chart element or shape.
  1451. </summary>
  1452. </member>
  1453. <member name="P:Aspose.Cells.Drawing.Shape.Reflection">
  1454. <summary>
  1455. Represents a <seealso cref="T:Aspose.Cells.Drawing.ReflectionEffect" /> object that specifies reflection effect for the chart element or shape.
  1456. </summary>
  1457. </member>
  1458. <member name="P:Aspose.Cells.Drawing.Shape.Glow">
  1459. <summary>
  1460. Represents a <seealso cref="T:Aspose.Cells.Drawing.GlowEffect" /> object that specifies glow effect for the chart element or shape.
  1461. </summary>
  1462. </member>
  1463. <member name="P:Aspose.Cells.Drawing.Shape.SoftEdges">
  1464. <summary>
  1465. Gets and sets the radius of blur to apply to the edges, in unit of points.
  1466. </summary>
  1467. </member>
  1468. <member name="P:Aspose.Cells.Drawing.Shape.ThreeDFormat">
  1469. <summary>
  1470. Gets and sets 3d format of the shape.
  1471. </summary>
  1472. </member>
  1473. <member name="P:Aspose.Cells.Drawing.Shape.TextFrame">
  1474. <summary>
  1475. Returns a TextFrame object that contains the alignment and anchoring properties for the specified shape.
  1476. </summary>
  1477. <remarks>NOTE: This member is now obsolete. Instead,
  1478. please use Shape.TextBody.TextAlignment property.
  1479. This property will be removed 12 months later since May 2016.
  1480. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  1481. </member>
  1482. <member name="P:Aspose.Cells.Drawing.Shape.FormatPicture">
  1483. <summary>
  1484. Gets and sets the options of the picture format.
  1485. </summary>
  1486. </member>
  1487. <member name="P:Aspose.Cells.Drawing.Shape.IsHidden">
  1488. <summary>
  1489. Indicates whether the object is visible.
  1490. </summary>
  1491. </member>
  1492. <member name="P:Aspose.Cells.Drawing.Shape.IsLockAspectRatio">
  1493. <summary>
  1494. True means that don't allow changes in aspect ratio.
  1495. </summary>
  1496. </member>
  1497. <member name="P:Aspose.Cells.Drawing.Shape.RotationAngle">
  1498. <summary>
  1499. Gets and sets the rotation of the shape.
  1500. </summary>
  1501. </member>
  1502. <member name="P:Aspose.Cells.Drawing.Shape.Hyperlink">
  1503. <summary>
  1504. Gets the hyperlink of the shape.
  1505. </summary>
  1506. </member>
  1507. <member name="P:Aspose.Cells.Drawing.Shape.Id">
  1508. <summary>
  1509. Gets the identifier of this shape.
  1510. </summary>
  1511. </member>
  1512. <member name="P:Aspose.Cells.Drawing.Shape.Spid">
  1513. <summary>
  1514. Specifies an optional string that an application can use to Identify the particular shape.
  1515. </summary>
  1516. </member>
  1517. <member name="P:Aspose.Cells.Drawing.Shape.Spt">
  1518. <summary>
  1519. Specifies an optional number that an application can use to associate the particular shape with a defined shape type.
  1520. </summary>
  1521. </member>
  1522. <member name="P:Aspose.Cells.Drawing.Shape.IsGroup">
  1523. <summary>
  1524. Indicates whether the shape is a group.
  1525. </summary>
  1526. </member>
  1527. <member name="P:Aspose.Cells.Drawing.Shape.IsWordArt">
  1528. <summary>
  1529. Indicates whether this shape is a word art.
  1530. </summary>
  1531. <remarks>
  1532. Only for the Legacy Shape of xls file.
  1533. </remarks>
  1534. </member>
  1535. <member name="P:Aspose.Cells.Drawing.Shape.TextEffect">
  1536. <summary>
  1537. Returns a TextEffectFormat object that contains text-effect formatting properties for the specified shape.
  1538. Applies to Shape objects that represent WordArt.
  1539. </summary>
  1540. </member>
  1541. <member name="P:Aspose.Cells.Drawing.Shape.IsLocked">
  1542. <summary>
  1543. True if the object is locked, False if the object can be modified when the sheet is protected.
  1544. </summary>
  1545. </member>
  1546. <member name="P:Aspose.Cells.Drawing.Shape.IsPrintable">
  1547. <summary>
  1548. True if the object is printable
  1549. </summary>
  1550. </member>
  1551. <member name="P:Aspose.Cells.Drawing.Shape.MsoDrawingType">
  1552. <summary>
  1553. Gets and sets mso drawing type.
  1554. </summary>
  1555. </member>
  1556. <member name="P:Aspose.Cells.Drawing.Shape.AutoShapeType">
  1557. <summary>
  1558. Gets the auto shape type.
  1559. </summary>
  1560. </member>
  1561. <member name="P:Aspose.Cells.Drawing.Shape.Placement">
  1562. <summary>
  1563. Represents the way the drawing object is attached to the cells below it.
  1564. The property controls the placement of an object on a worksheet.
  1565. </summary>
  1566. </member>
  1567. <member name="P:Aspose.Cells.Drawing.Shape.UpperLeftRow">
  1568. <summary>
  1569. Represents upper left corner row index.
  1570. </summary>
  1571. <remarks>If the shape is in the shape or in the group , UpperLeftRow will be ignored.</remarks>
  1572. </member>
  1573. <member name="P:Aspose.Cells.Drawing.Shape.UpperDeltaY">
  1574. <summary>
  1575. Gets or sets the shape's vertical offset from its upper left corner row.
  1576. <remarks>The range of value is 0 to 256.</remarks></summary>
  1577. </member>
  1578. <member name="P:Aspose.Cells.Drawing.Shape.UpperLeftColumn">
  1579. <summary>
  1580. Represents upper left corner column index.
  1581. </summary>
  1582. </member>
  1583. <member name="P:Aspose.Cells.Drawing.Shape.UpperDeltaX">
  1584. <summary>
  1585. Gets or sets the shape's horizontal offset from its upper left corner column.
  1586. <remarks>The range of value is 0 to 1024.</remarks></summary>
  1587. </member>
  1588. <member name="P:Aspose.Cells.Drawing.Shape.LowerRightRow">
  1589. <summary>
  1590. Represents lower right corner row index.
  1591. </summary>
  1592. </member>
  1593. <member name="P:Aspose.Cells.Drawing.Shape.LowerDeltaY">
  1594. <summary>
  1595. Gets or sets the shape's vertical offset from its lower right corner row.
  1596. <remarks>The range of value is 0 to 256.</remarks></summary>
  1597. </member>
  1598. <member name="P:Aspose.Cells.Drawing.Shape.LowerRightColumn">
  1599. <summary>
  1600. Represents lower right corner column index.
  1601. </summary>
  1602. </member>
  1603. <member name="P:Aspose.Cells.Drawing.Shape.LowerDeltaX">
  1604. <summary>
  1605. Gets or sets the shape's horizontal offset from its lower right corner column.
  1606. <remarks>The range of value is 0 to 1024.</remarks></summary>
  1607. </member>
  1608. <member name="P:Aspose.Cells.Drawing.Shape.Right">
  1609. <summary>
  1610. Represents the width of the shape's horizontal offset from its lower right corner column, in unit of pixels.
  1611. </summary>
  1612. </member>
  1613. <member name="P:Aspose.Cells.Drawing.Shape.Bottom">
  1614. <summary>
  1615. Represents the width of the shape's vertical offset from its lower bottom corner row, in unit of pixels.
  1616. </summary>
  1617. </member>
  1618. <member name="P:Aspose.Cells.Drawing.Shape.Width">
  1619. <summary>
  1620. Represents the width of shape, in unit of pixels.
  1621. </summary>
  1622. </member>
  1623. <member name="P:Aspose.Cells.Drawing.Shape.WidthInch">
  1624. <summary>
  1625. Represents the width of the shape, in unit of inch.
  1626. </summary>
  1627. </member>
  1628. <member name="P:Aspose.Cells.Drawing.Shape.WidthPt">
  1629. <summary>
  1630. Represents the width of the shape, in unit of point.
  1631. </summary>
  1632. </member>
  1633. <member name="P:Aspose.Cells.Drawing.Shape.WidthCM">
  1634. <summary>
  1635. Represents the width of the shape, in unit of centimeters.
  1636. </summary>
  1637. </member>
  1638. <member name="P:Aspose.Cells.Drawing.Shape.Height">
  1639. <summary>
  1640. Represents the height of shape, in unit of pixel.
  1641. </summary>
  1642. </member>
  1643. <member name="P:Aspose.Cells.Drawing.Shape.HeightInch">
  1644. <summary>
  1645. Represents the height of the shape, in unit of inches.
  1646. </summary>
  1647. </member>
  1648. <member name="P:Aspose.Cells.Drawing.Shape.HeightPt">
  1649. <summary>
  1650. Represents the height of the shape, in unit of points.
  1651. </summary>
  1652. </member>
  1653. <member name="P:Aspose.Cells.Drawing.Shape.HeightCM">
  1654. <summary>
  1655. Represents the height of the shape, in unit of inches.
  1656. </summary>
  1657. </member>
  1658. <member name="P:Aspose.Cells.Drawing.Shape.Left">
  1659. <summary>
  1660. Represents the horizontal offset of shape from its left column, in unit of pixels.
  1661. </summary>
  1662. </member>
  1663. <member name="P:Aspose.Cells.Drawing.Shape.LeftInch">
  1664. <summary>
  1665. Represents the horizontal offset of shape from its left column, in unit of inches.
  1666. </summary>
  1667. </member>
  1668. <member name="P:Aspose.Cells.Drawing.Shape.LeftCM">
  1669. <summary>
  1670. Represents the horizontal offset of shape from its left column, in unit of centimeters.
  1671. </summary>
  1672. </member>
  1673. <member name="P:Aspose.Cells.Drawing.Shape.Top">
  1674. <summary>
  1675. Represents the vertical offset of shape from its top row, in unit of pixels.
  1676. </summary>
  1677. <remarks>If the shape is in the chart, represents the vertical offset of shape from its top border.</remarks>
  1678. </member>
  1679. <member name="P:Aspose.Cells.Drawing.Shape.TopInch">
  1680. <summary>
  1681. Represents the vertical offset of shape from its top row, in unit of inches.
  1682. </summary>
  1683. </member>
  1684. <member name="P:Aspose.Cells.Drawing.Shape.TopCM">
  1685. <summary>
  1686. Represents the vertical offset of shape from its top row, in unit of centimeters.
  1687. </summary>
  1688. </member>
  1689. <member name="P:Aspose.Cells.Drawing.Shape.TopToCorner">
  1690. <summary>
  1691. Gets and sets the vertical offset of shape from worksheet top border, in unit of pixels.
  1692. </summary>
  1693. </member>
  1694. <member name="P:Aspose.Cells.Drawing.Shape.LeftToCorner">
  1695. <summary>
  1696. Gets and sets the horizonal offset of shape from worksheet left border.
  1697. </summary>
  1698. </member>
  1699. <member name="P:Aspose.Cells.Drawing.Shape.X">
  1700. <summary>
  1701. Gets and sets the horizontal offset of shape from worksheet left border,in unit of pixels.
  1702. </summary>
  1703. </member>
  1704. <member name="P:Aspose.Cells.Drawing.Shape.Y">
  1705. <summary>
  1706. Gets and sets the vertical offset of shape from worksheet top border,in unit of pixels.
  1707. </summary>
  1708. </member>
  1709. <member name="P:Aspose.Cells.Drawing.Shape.WidthScale">
  1710. <summary>
  1711. Gets and sets the width scale, in unit of percent of the original picture width.
  1712. If the shape is not picture ,the WidthScale property only returns 100;
  1713. </summary>
  1714. </member>
  1715. <member name="P:Aspose.Cells.Drawing.Shape.HeightScale">
  1716. <summary>
  1717. Gets and sets the height scale,in unit of percent of the original picture height.
  1718. If the shape is not picture ,the HeightScale property only returns 100;
  1719. </summary>
  1720. </member>
  1721. <member name="P:Aspose.Cells.Drawing.Shape.TopInShape">
  1722. <summary>
  1723. Represents the vertical offset of shape from the top border of the parent shape,
  1724. in unit of 1/4000 of height of the parent shape.
  1725. </summary>
  1726. <remarks>Only Applies when this shape in the group or chart.</remarks>
  1727. </member>
  1728. <member name="P:Aspose.Cells.Drawing.Shape.LeftInShape">
  1729. <summary>
  1730. Represents the horizontal offset of shape from the left border of the parent shape,
  1731. in unit of 1/4000 of width of the parent shape.
  1732. </summary>
  1733. <remarks>Only Applies when this shape in the group or chart.</remarks>
  1734. </member>
  1735. <member name="P:Aspose.Cells.Drawing.Shape.WidthInShape">
  1736. <summary>
  1737. Represents the width of the shape, in unit of 1/4000 of the parent shape.
  1738. </summary>
  1739. <remarks>Only Applies when this shape in the group or chart.</remarks>
  1740. </member>
  1741. <member name="P:Aspose.Cells.Drawing.Shape.HeightInShape">
  1742. <summary>
  1743. Represents the vertical offset of shape from the top border of the parent shape, in unit of 1/4000 of height of the parent shape..
  1744. </summary>
  1745. <remarks>Only Applies when this shape in the group or chart.</remarks>
  1746. </member>
  1747. <member name="P:Aspose.Cells.Drawing.Shape.Group">
  1748. <summary>
  1749. Gets the group shape which contains this shape.
  1750. </summary>
  1751. </member>
  1752. <member name="P:Aspose.Cells.Drawing.Shape.Type">
  1753. <summary>
  1754. Gets the auto shape type.
  1755. </summary>
  1756. </member>
  1757. <member name="P:Aspose.Cells.Drawing.Shape.HasLine">
  1758. <summary>
  1759. Gets and sets the line border of the shape is visible.
  1760. </summary>
  1761. </member>
  1762. <member name="P:Aspose.Cells.Drawing.Shape.IsFilled">
  1763. <summary>
  1764. Indicates whether the fill format is visible.
  1765. </summary>
  1766. </member>
  1767. <member name="P:Aspose.Cells.Drawing.Shape.IsFlippedHorizontally">
  1768. <summary>
  1769. Gets and sets whether shape is horizontally flipped .
  1770. </summary>
  1771. </member>
  1772. <member name="P:Aspose.Cells.Drawing.Shape.IsFlippedVertically">
  1773. <summary>
  1774. Gets and sets whether shape is vertically flipped .
  1775. </summary>
  1776. </member>
  1777. <member name="P:Aspose.Cells.Drawing.Shape.ActualLowerRightRow">
  1778. <summary>
  1779. Get the actual bottom row.
  1780. </summary>
  1781. </member>
  1782. <member name="P:Aspose.Cells.Drawing.Shape.ConnectionPoints">
  1783. <summary>
  1784. Get the connection points
  1785. </summary>
  1786. <returns>
  1787. </returns>
  1788. </member>
  1789. <member name="P:Aspose.Cells.Drawing.Shape.RelativeToOriginalPictureSize">
  1790. <summary>
  1791. Indicates whether shape is relative to original picture size.
  1792. </summary>
  1793. </member>
  1794. <member name="P:Aspose.Cells.Drawing.Shape.LinkedCell">
  1795. <summary>
  1796. Gets or sets the worksheet range linked to the control's value.
  1797. </summary>
  1798. </member>
  1799. <member name="P:Aspose.Cells.Drawing.Shape.InputRange">
  1800. <summary>
  1801. Gets or sets the worksheet range used to fill the specified combo box.
  1802. </summary>
  1803. </member>
  1804. <member name="P:Aspose.Cells.Drawing.Shape.TextShapeType">
  1805. <summary>
  1806. Gets and sets the preset text shape type.
  1807. </summary>
  1808. </member>
  1809. <member name="P:Aspose.Cells.Drawing.Shape.TextBody">
  1810. <summary>
  1811. Gets and sets the setting of the shape's text.
  1812. </summary>
  1813. </member>
  1814. <member name="P:Aspose.Cells.Drawing.Shape.Font">
  1815. <summary>
  1816. Represents the font of shape.
  1817. </summary>
  1818. </member>
  1819. <member name="P:Aspose.Cells.Drawing.Shape.TextOptions">
  1820. <summary>
  1821. Represents the text options of the shape.
  1822. </summary>
  1823. </member>
  1824. <member name="P:Aspose.Cells.Drawing.Shape.Text">
  1825. <summary>
  1826. Represents the string in this TextBox object.
  1827. </summary>
  1828. </member>
  1829. <member name="P:Aspose.Cells.Drawing.Shape.IsRichText">
  1830. <summary>
  1831. Whether or not the text is rich text.
  1832. </summary>
  1833. </member>
  1834. <member name="P:Aspose.Cells.Drawing.Shape.HtmlText">
  1835. <summary>
  1836. Gets and sets the html string which contains data and some formats in this textbox.
  1837. </summary>
  1838. </member>
  1839. <member name="P:Aspose.Cells.Drawing.Shape.TextVerticalOverflow">
  1840. <summary>
  1841. Gets and sets the text vertical overflow type of the shape which contains text.
  1842. </summary>
  1843. </member>
  1844. <member name="P:Aspose.Cells.Drawing.Shape.TextHorizontalOverflow">
  1845. <summary>
  1846. Gets and sets the text horizontal overflow type of the shape which contains text.
  1847. </summary>
  1848. </member>
  1849. <member name="P:Aspose.Cells.Drawing.Shape.IsTextWrapped">
  1850. <summary>
  1851. Gets and sets the text wrapped type of the shape which contains text.
  1852. </summary>
  1853. </member>
  1854. <member name="P:Aspose.Cells.Drawing.Shape.TextOrientationType">
  1855. <summary>
  1856. Gets and sets the text orientation type of the shape.
  1857. </summary>
  1858. </member>
  1859. <member name="P:Aspose.Cells.Drawing.Shape.TextHorizontalAlignment">
  1860. <summary>
  1861. Gets and sets the text horizontal alignment type of the shape.
  1862. </summary>
  1863. </member>
  1864. <member name="P:Aspose.Cells.Drawing.Shape.TextVerticalAlignment">
  1865. <summary>
  1866. Gets and sets the text vertical alignment type of the shape.
  1867. </summary>
  1868. </member>
  1869. <member name="P:Aspose.Cells.Drawing.Shape.TextDirection">
  1870. <summary>
  1871. Gets/Sets the direction of the text flow for this object.
  1872. </summary>
  1873. </member>
  1874. <member name="P:Aspose.Cells.Drawing.Shape.ControlData">
  1875. <summary>
  1876. Gets the data of control.
  1877. </summary>
  1878. </member>
  1879. <member name="P:Aspose.Cells.Drawing.Shape.ActiveXControl">
  1880. <summary>
  1881. Gets the ActiveX control.
  1882. </summary>
  1883. </member>
  1884. <member name="P:Aspose.Cells.Drawing.Shape.Paths">
  1885. <summary>
  1886. Gets the paths of a custom geometric shape.
  1887. </summary>
  1888. </member>
  1889. <member name="P:Aspose.Cells.Drawing.Shape.Geometry">
  1890. <summary>
  1891. Gets the geometry
  1892. </summary>
  1893. </member>
  1894. <member name="T:Aspose.Cells.ThreadedComment">
  1895. <summary>
  1896. Represents the threaded comment.
  1897. </summary>
  1898. </member>
  1899. <member name="P:Aspose.Cells.ThreadedComment.Row">
  1900. <summary>
  1901. Gets the row index of the comment.
  1902. </summary>
  1903. </member>
  1904. <member name="P:Aspose.Cells.ThreadedComment.Column">
  1905. <summary>
  1906. Gets the column index of the comment.
  1907. </summary>
  1908. </member>
  1909. <member name="P:Aspose.Cells.ThreadedComment.Notes">
  1910. <summary>
  1911. Gets and sets the text of the comment.
  1912. </summary>
  1913. </member>
  1914. <member name="P:Aspose.Cells.ThreadedComment.Author">
  1915. <summary>
  1916. Gets the author of the comment.
  1917. </summary>
  1918. </member>
  1919. <member name="P:Aspose.Cells.ThreadedComment.CreatedTime">
  1920. <summary>
  1921. Gets and sets the created time of this threaded comment.
  1922. </summary>
  1923. </member>
  1924. <member name="T:Aspose.Cells.ThreadedCommentCollection">
  1925. <summary>
  1926. Represents the list of threaded comments.
  1927. </summary>
  1928. </member>
  1929. <member name="M:Aspose.Cells.ThreadedCommentCollection.Add(System.String,Aspose.Cells.ThreadedCommentAuthor)">
  1930. <summary>
  1931. Adds a threaded comment;
  1932. </summary>
  1933. <param name="text">The text of the threaded comment.</param>
  1934. <param name="author">The author of the threaded comment</param>
  1935. <returns>
  1936. </returns>
  1937. </member>
  1938. <member name="P:Aspose.Cells.ThreadedCommentCollection.Item(System.Int32)">
  1939. <summary>
  1940. Gets the threaded comment by the specific index.
  1941. </summary>
  1942. <param name="index">The index</param>
  1943. <returns>
  1944. </returns>
  1945. </member>
  1946. <member name="T:Aspose.Cells.CalculationCell">
  1947. <summary>
  1948. Represents the calculation relevant data about one cell which is being calculated.
  1949. </summary>
  1950. <remarks>All objects provided by this class are for "read" purpose only.
  1951. User should not change any data in the Workbook during the formula calculation process,
  1952. Otherwise unexpected result or Exception may be caused.
  1953. </remarks>
  1954. </member>
  1955. <member name="M:Aspose.Cells.CalculationCell.SetCalculatedValue(System.Object)">
  1956. <summary>
  1957. Sets the calculated value for the cell.
  1958. </summary>
  1959. <remarks>User can set the calculated result by this method to ignore the automatic calculation for the cell.</remarks>
  1960. </member>
  1961. <member name="P:Aspose.Cells.CalculationCell.Workbook">
  1962. <summary>
  1963. Gets the Workbook object.
  1964. </summary>
  1965. </member>
  1966. <member name="P:Aspose.Cells.CalculationCell.Worksheet">
  1967. <summary>
  1968. Gets the Worksheet object where the cell is in.
  1969. </summary>
  1970. </member>
  1971. <member name="P:Aspose.Cells.CalculationCell.CellRow">
  1972. <summary>
  1973. Gets the row index of the cell.
  1974. </summary>
  1975. </member>
  1976. <member name="P:Aspose.Cells.CalculationCell.CellColumn">
  1977. <summary>
  1978. Gets the column index of the cell.
  1979. </summary>
  1980. </member>
  1981. <member name="P:Aspose.Cells.CalculationCell.Cell">
  1982. <summary>
  1983. Gets the Cell object which is being calculated.
  1984. </summary>
  1985. </member>
  1986. <member name="T:Aspose.Cells.CellWatch">
  1987. <summary>
  1988. Represents Cell Watch Item in the 'watch window'.
  1989. </summary>
  1990. </member>
  1991. <member name="P:Aspose.Cells.CellWatch.Row">
  1992. <summary>
  1993. Gets and sets the row of the cell.
  1994. </summary>
  1995. </member>
  1996. <member name="P:Aspose.Cells.CellWatch.Column">
  1997. <summary>
  1998. Gets and sets the column of the cell.
  1999. </summary>
  2000. </member>
  2001. <member name="P:Aspose.Cells.CellWatch.CellName">
  2002. <summary>
  2003. Gets and sets the name of the cell.
  2004. </summary>
  2005. </member>
  2006. <member name="T:Aspose.Cells.CellWatchCollection">
  2007. <summary>
  2008. Represents the collection of cells on this worksheet being watched in the 'watch window'.
  2009. </summary>
  2010. </member>
  2011. <member name="M:Aspose.Cells.CellWatchCollection.Add(System.Int32,System.Int32)">
  2012. <summary>
  2013. Adds <see cref="T:Aspose.Cells.CellWatch" /> with row and column.
  2014. </summary>
  2015. <param name="row">The row index.</param>
  2016. <param name="column">The column index.</param>
  2017. <returns>Returns the position of this item in the collection. </returns>
  2018. </member>
  2019. <member name="M:Aspose.Cells.CellWatchCollection.Add(System.String)">
  2020. <summary>
  2021. Adds
  2022. </summary>
  2023. <param name="cellName">
  2024. </param>
  2025. <returns>
  2026. </returns>
  2027. </member>
  2028. <member name="P:Aspose.Cells.CellWatchCollection.Item(System.Int32)">
  2029. <summary>
  2030. Gets and sets <see cref="T:Aspose.Cells.CellWatch" /> by index.
  2031. </summary>
  2032. <param name="index">The index.</param>
  2033. <returns>
  2034. </returns>
  2035. </member>
  2036. <member name="P:Aspose.Cells.CellWatchCollection.Item(System.String)">
  2037. <summary>
  2038. Gets and sets <see cref="T:Aspose.Cells.CellWatch" /> by the name of the cell.
  2039. </summary>
  2040. <param name="cellName">The name of the cell.</param>
  2041. <returns>
  2042. </returns>
  2043. </member>
  2044. <member name="T:Aspose.Cells.ICellsDataTable">
  2045. <summary>
  2046. Represents data table.
  2047. </summary>
  2048. <remarks>
  2049. </remarks>
  2050. </member>
  2051. <member name="M:Aspose.Cells.ICellsDataTable.BeforeFirst">
  2052. <summary>
  2053. Move the cursor to the front of this object, just before the first row.
  2054. </summary>
  2055. </member>
  2056. <member name="M:Aspose.Cells.ICellsDataTable.Next">
  2057. <summary>
  2058. Moves the cursor down one row from its current position.
  2059. </summary>
  2060. <returns> if the new current row is valid; false if there are no more rows </returns>
  2061. </member>
  2062. <member name="P:Aspose.Cells.ICellsDataTable.Columns">
  2063. <summary>
  2064. Gets the columns' name.
  2065. </summary>
  2066. </member>
  2067. <member name="P:Aspose.Cells.ICellsDataTable.Count">
  2068. <summary>
  2069. Gets the count of the records. -1 for unknown records count.
  2070. </summary>
  2071. </member>
  2072. <member name="P:Aspose.Cells.ICellsDataTable.Item(System.Int32)">
  2073. <summary>
  2074. Gets the data stored in the column specified by index.
  2075. </summary>
  2076. <param name="columnIndex">The zero-based index of the column.</param>
  2077. <returns>
  2078. </returns>
  2079. </member>
  2080. <member name="P:Aspose.Cells.ICellsDataTable.Item(System.String)">
  2081. <summary>
  2082. Gets the data stored in the column specified by column name.
  2083. </summary>
  2084. <param name="columnName">The column name.</param>
  2085. <returns>
  2086. </returns>
  2087. </member>
  2088. <member name="T:Aspose.Cells.Charts.ChartTextFrame">
  2089. <summary>
  2090. Encapsulates the object that represents the frame object which contains text.
  2091. </summary>
  2092. </member>
  2093. <member name="T:Aspose.Cells.Charts.ChartFrame">
  2094. <summary>
  2095. Encapsulates the object that represents the frame object in a chart.
  2096. </summary>
  2097. </member>
  2098. <member name="M:Aspose.Cells.Charts.ChartFrame.SetPositionAuto">
  2099. <summary>
  2100. Set position of the frame to automatic
  2101. </summary>
  2102. </member>
  2103. <member name="P:Aspose.Cells.Charts.ChartFrame.IsInnerMode">
  2104. <summary>
  2105. Indicates whether the size of the plot area size includes the tick marks, and the axis labels.
  2106. False specifies that the size shall determine the size of the plot area, the tick marks, and the axis labels.
  2107. </summary>
  2108. <remarks>
  2109. Only for Xlsx file.
  2110. </remarks>
  2111. </member>
  2112. <member name="P:Aspose.Cells.Charts.ChartFrame.Border">
  2113. <summary>
  2114. Gets the <see cref="T:Aspose.Cells.Drawing.Line">border</see>.
  2115. </summary>
  2116. </member>
  2117. <member name="P:Aspose.Cells.Charts.ChartFrame.Area">
  2118. <summary>
  2119. Gets the <see cref="P:Aspose.Cells.Charts.ChartFrame.Area">area</see>.
  2120. </summary>
  2121. </member>
  2122. <member name="P:Aspose.Cells.Charts.ChartFrame.TextFont">
  2123. <summary>
  2124. Gets a <see cref="P:Aspose.Cells.Charts.ChartFrame.Font" /> object of the specified ChartFrame object.
  2125. </summary>
  2126. <remarks>NOTE: This member is now obsolete. Instead,
  2127. please use ChartFrame.Font property.
  2128. This property will be removed 12 months later since JANUARY 2012.
  2129. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  2130. </member>
  2131. <member name="P:Aspose.Cells.Charts.ChartFrame.Font">
  2132. <summary>
  2133. Gets a <see cref="P:Aspose.Cells.Charts.ChartFrame.Font" /> object of the specified ChartFrame object.
  2134. </summary>
  2135. </member>
  2136. <member name="P:Aspose.Cells.Charts.ChartFrame.AutoScaleFont">
  2137. <summary>
  2138. True if the text in the object changes font size when the object size changes. The default value is True.
  2139. </summary>
  2140. </member>
  2141. <member name="P:Aspose.Cells.Charts.ChartFrame.BackgroundMode">
  2142. <summary>
  2143. Gets and sets the display mode of the background
  2144. </summary>
  2145. </member>
  2146. <member name="P:Aspose.Cells.Charts.ChartFrame.Background">
  2147. <summary>
  2148. Gets and sets the display mode of the background
  2149. </summary>
  2150. <remarks>NOTE: This member is now obsolete. Instead,
  2151. please use ChartFrame.BackgroundMode property.
  2152. This property will be removed 12 months later since JANUARY 2012.
  2153. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  2154. </member>
  2155. <member name="P:Aspose.Cells.Charts.ChartFrame.IsAutomaticSize">
  2156. <summary>
  2157. Indicates whether the chart frame is automatic sized.
  2158. </summary>
  2159. </member>
  2160. <member name="P:Aspose.Cells.Charts.ChartFrame.X">
  2161. <summary>
  2162. Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
  2163. </summary>
  2164. <remarks>
  2165. How to convert units of 1/4000 to pixels?
  2166. X In Pixels = X * Chart.ChartObject.Width / 4000;
  2167. </remarks>
  2168. </member>
  2169. <member name="P:Aspose.Cells.Charts.ChartFrame.Y">
  2170. <summary>
  2171. Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.
  2172. </summary>
  2173. <remarks>
  2174. How to convert units of 1/4000 to pixels?
  2175. Y In Pixels = Y * Chart.ChartObject.Height / 4000;
  2176. </remarks>
  2177. </member>
  2178. <member name="P:Aspose.Cells.Charts.ChartFrame.Height">
  2179. <summary>
  2180. Gets or sets the height of frame in units of 1/4000 of the chart area.
  2181. </summary>
  2182. <remarks>
  2183. How to convert units of 1/4000 to pixels?
  2184. Height In Pixels = Y * Chart.ChartObject.Height / 4000;
  2185. </remarks>
  2186. </member>
  2187. <member name="P:Aspose.Cells.Charts.ChartFrame.Width">
  2188. <summary>
  2189. Gets or sets the width of frame in units of 1/4000 of the chart area.
  2190. </summary>
  2191. <remarks>
  2192. How to convert units of 1/4000 to pixels?
  2193. Width In Pixels = Width * Chart.ChartObject.Height / 4000;
  2194. </remarks>
  2195. </member>
  2196. <member name="P:Aspose.Cells.Charts.ChartFrame.Shadow">
  2197. <summary>
  2198. True if the frame has a shadow.
  2199. </summary>
  2200. </member>
  2201. <member name="P:Aspose.Cells.Charts.ChartFrame.ShapeProperties">
  2202. <summary>
  2203. Gets the <see cref="P:Aspose.Cells.Charts.ChartFrame.ShapeProperties" /> object.
  2204. </summary>
  2205. </member>
  2206. <member name="P:Aspose.Cells.Charts.ChartFrame.IsDefaultPosBeSet">
  2207. <summary>
  2208. Indicates whether default position(DefaultX, DefaultY, DefaultWidth and DefaultHeight) are set.
  2209. </summary>
  2210. </member>
  2211. <member name="P:Aspose.Cells.Charts.ChartFrame.DefaultX">
  2212. <summary>
  2213. Represents x of default position
  2214. </summary>
  2215. </member>
  2216. <member name="P:Aspose.Cells.Charts.ChartFrame.DefaultY">
  2217. <summary>
  2218. Represents y of default position
  2219. </summary>
  2220. </member>
  2221. <member name="P:Aspose.Cells.Charts.ChartFrame.DefaultWidth">
  2222. <summary>
  2223. Represents width of default position
  2224. </summary>
  2225. </member>
  2226. <member name="P:Aspose.Cells.Charts.ChartFrame.DefaultHeight">
  2227. <summary>
  2228. Represents height of default position
  2229. </summary>
  2230. </member>
  2231. <member name="M:Aspose.Cells.Charts.ChartTextFrame.Characters(System.Int32,System.Int32)">
  2232. <summary>
  2233. Returns a Characters object that represents a range of characters within the text.
  2234. </summary>
  2235. <param name="startIndex">The index of the start of the character.</param>
  2236. <param name="length">The number of characters.</param>
  2237. <returns>Characters object.</returns>
  2238. </member>
  2239. <member name="P:Aspose.Cells.Charts.ChartTextFrame.IsAutoText">
  2240. <summary>
  2241. Indicates the text is auto generated.
  2242. </summary>
  2243. </member>
  2244. <member name="P:Aspose.Cells.Charts.ChartTextFrame.IsDeleted">
  2245. <summary>
  2246. Indicates whether this data labels is deleted.
  2247. </summary>
  2248. </member>
  2249. <member name="P:Aspose.Cells.Charts.ChartTextFrame.TextHorizontalAlignment">
  2250. <summary>
  2251. Gets and sets the text horizontal alignment.
  2252. </summary>
  2253. </member>
  2254. <member name="P:Aspose.Cells.Charts.ChartTextFrame.TextVerticalAlignment">
  2255. <summary>
  2256. Gets or sets the text vertical alignment of text.
  2257. </summary>
  2258. </member>
  2259. <member name="P:Aspose.Cells.Charts.ChartTextFrame.RotationAngle">
  2260. <summary>
  2261. Represents text rotation angle.
  2262. </summary>
  2263. <remarks>
  2264. <br>0: Not rotated.</br>
  2265. <br>255: Top to Bottom.</br>
  2266. <br>-90: Downward.</br>
  2267. <br>90: Upward.</br>
  2268. </remarks>
  2269. </member>
  2270. <member name="P:Aspose.Cells.Charts.ChartTextFrame.Text">
  2271. <summary>
  2272. Gets or sets the text of a frame's title.
  2273. </summary>
  2274. </member>
  2275. <member name="P:Aspose.Cells.Charts.ChartTextFrame.LinkedSource">
  2276. <summary>
  2277. Gets and sets a reference to the worksheet.
  2278. </summary>
  2279. </member>
  2280. <member name="P:Aspose.Cells.Charts.ChartTextFrame.TextDirection">
  2281. <summary>
  2282. Represents text reading order.
  2283. </summary>
  2284. <remarks>NOTE: This member is now obsolete. Instead,
  2285. please use ChartTextFrame.ReadingOrder property.
  2286. This property will be removed 12 months later since March 2020.
  2287. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  2288. </member>
  2289. <member name="P:Aspose.Cells.Charts.ChartTextFrame.ReadingOrder">
  2290. <summary>
  2291. Represents text reading order.
  2292. </summary>
  2293. </member>
  2294. <member name="P:Aspose.Cells.Charts.ChartTextFrame.DirectionType">
  2295. <summary>
  2296. Gets and sets the direction of text.
  2297. </summary>
  2298. </member>
  2299. <member name="P:Aspose.Cells.Charts.ChartTextFrame.IsTextWrapped">
  2300. <summary>
  2301. Gets or sets a value indicating whether the text is wrapped.
  2302. </summary>
  2303. </member>
  2304. <member name="P:Aspose.Cells.Charts.ChartTextFrame.IsResizeShapeToFitText">
  2305. <summary>
  2306. Gets or sets whether a shape should be auto-fit to fully contain the text described within it. Auto-fitting is
  2307. when text within a shape is scaled in order to contain all the text inside.
  2308. </summary>
  2309. </member>
  2310. <member name="T:Aspose.Cells.MemorySetting">
  2311. <summary>
  2312. Memory usage options.
  2313. </summary>
  2314. </member>
  2315. <member name="F:Aspose.Cells.MemorySetting.Normal">
  2316. <summary>
  2317. Default option for cells model.
  2318. </summary>
  2319. <remarks>This option is applied for all versions.</remarks>
  2320. </member>
  2321. <member name="F:Aspose.Cells.MemorySetting.MemoryPreference">
  2322. <summary>
  2323. Memory performance preferrable.
  2324. With this option the data will be held in compact format so for common scenarios it may give lower memory cost.
  2325. However, this option also may degrade R/W performance a bit in some special cases.
  2326. </summary>
  2327. <remarks>This option is available since v 8.0.0.</remarks>
  2328. </member>
  2329. <member name="T:Aspose.Cells.Drawing.DataLabelShapeType">
  2330. <summary>
  2331. Specifies the preset shape geometry that is to be used for a chart.
  2332. </summary>
  2333. </member>
  2334. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.Rect">
  2335. <summary>
  2336. Represents the rectangle shape.
  2337. </summary>
  2338. </member>
  2339. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.RoundRect">
  2340. <summary>
  2341. Represents the round rectangle shape.
  2342. </summary>
  2343. </member>
  2344. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.Ellipse">
  2345. <summary>
  2346. Represents the ellipse shape.
  2347. </summary>
  2348. </member>
  2349. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.RightArrowCallout">
  2350. <summary>
  2351. Represents the right arrow callout shape.
  2352. </summary>
  2353. </member>
  2354. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.DownArrowCallout">
  2355. <summary>
  2356. Represents the down arrow callout shape.
  2357. </summary>
  2358. </member>
  2359. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.LeftArrowCallout">
  2360. <summary>
  2361. Represents the left arrow callout shape.
  2362. </summary>
  2363. </member>
  2364. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.UpArrowCallout">
  2365. <summary>
  2366. Represents the up arrow callout shape.
  2367. </summary>
  2368. </member>
  2369. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.WedgeRectCallout">
  2370. <summary>
  2371. Represents the wedge rectangle callout shape.
  2372. </summary>
  2373. </member>
  2374. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.WedgeRoundRectCallout">
  2375. <summary>
  2376. Represents the wedge round rectangle callout shape.
  2377. </summary>
  2378. </member>
  2379. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.WedgeEllipseCallout">
  2380. <summary>
  2381. Represents the wedge ellipse callout shape.
  2382. </summary>
  2383. </member>
  2384. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.LineCallout">
  2385. <summary>
  2386. Represents the line callout shape.
  2387. </summary>
  2388. </member>
  2389. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.BentLineCallout">
  2390. <summary>
  2391. Represents the bent line callout shape.
  2392. </summary>
  2393. </member>
  2394. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.LineWithAccentBarCallout">
  2395. <summary>
  2396. Represents the line with accent bar callout shape.
  2397. </summary>
  2398. </member>
  2399. <member name="F:Aspose.Cells.Drawing.DataLabelShapeType.BentLineWithAccentBarCallout">
  2400. <summary>
  2401. Represents the bent line with accent bar callout shape.
  2402. </summary>
  2403. </member>
  2404. <member name="T:Aspose.Cells.Charts.MapChartRegionType">
  2405. <summary>
  2406. Represents the region type of the map chart.
  2407. </summary>
  2408. </member>
  2409. <member name="F:Aspose.Cells.Charts.MapChartRegionType.Automatic">
  2410. <summary>
  2411. Automatic
  2412. </summary>
  2413. </member>
  2414. <member name="F:Aspose.Cells.Charts.MapChartRegionType.DataOnly">
  2415. <summary>
  2416. Only Data.
  2417. </summary>
  2418. </member>
  2419. <member name="F:Aspose.Cells.Charts.MapChartRegionType.CountryRegionList">
  2420. <summary>
  2421. Country region list.
  2422. </summary>
  2423. </member>
  2424. <member name="F:Aspose.Cells.Charts.MapChartRegionType.World">
  2425. <summary>
  2426. World.
  2427. </summary>
  2428. </member>
  2429. <member name="T:Aspose.Cells.Charts.MapChartProjectionType">
  2430. <summary>
  2431. Represents projection type of the map chart.
  2432. </summary>
  2433. </member>
  2434. <member name="F:Aspose.Cells.Charts.MapChartProjectionType.Automatic">
  2435. <summary>
  2436. Automatic
  2437. </summary>
  2438. </member>
  2439. <member name="F:Aspose.Cells.Charts.MapChartProjectionType.Mercator">
  2440. <summary>
  2441. Mercator
  2442. </summary>
  2443. </member>
  2444. <member name="F:Aspose.Cells.Charts.MapChartProjectionType.Miller">
  2445. <summary>
  2446. Miller
  2447. </summary>
  2448. </member>
  2449. <member name="F:Aspose.Cells.Charts.MapChartProjectionType.Albers">
  2450. <summary>
  2451. Albers
  2452. </summary>
  2453. </member>
  2454. <member name="T:Aspose.Cells.Charts.MapChartLabelLayout">
  2455. <summary>
  2456. Represents the layout of map chart's labels.
  2457. </summary>
  2458. </member>
  2459. <member name="F:Aspose.Cells.Charts.MapChartLabelLayout.BestFitOnly">
  2460. <summary>
  2461. Only best fit.
  2462. </summary>
  2463. </member>
  2464. <member name="F:Aspose.Cells.Charts.MapChartLabelLayout.ShowAll">
  2465. <summary>
  2466. Shows all labels.
  2467. </summary>
  2468. </member>
  2469. <member name="F:Aspose.Cells.Charts.MapChartLabelLayout.None">
  2470. <summary>
  2471. No labels.
  2472. </summary>
  2473. </member>
  2474. <member name="T:Aspose.Cells.Charts.QuartileCalculationType">
  2475. <summary>
  2476. Represents quartile calculation methods.
  2477. </summary>
  2478. </member>
  2479. <member name="F:Aspose.Cells.Charts.QuartileCalculationType.Exclusive">
  2480. <summary>
  2481. The quartile calculation includes the median when splitting the dataset into quartiles.
  2482. </summary>
  2483. </member>
  2484. <member name="F:Aspose.Cells.Charts.QuartileCalculationType.Inclusive">
  2485. <summary>
  2486. The quartile calculation excludes the median when splitting the dataset into quartiles.
  2487. </summary>
  2488. </member>
  2489. <member name="T:Aspose.Cells.Charts.SeriesLayoutProperties">
  2490. <summary>
  2491. </summary>
  2492. </member>
  2493. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.ShowConnectorLines">
  2494. <summary>
  2495. Indicates whether showing connector lines between data points.
  2496. </summary>
  2497. </member>
  2498. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.ShowMeanLine">
  2499. <summary>
  2500. Indicates whether showing the line connecting all mean points.
  2501. </summary>
  2502. </member>
  2503. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.ShowOutlierPoints">
  2504. <summary>
  2505. Indicates whether showing outlier data points.
  2506. </summary>
  2507. </member>
  2508. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.ShowMeanMarker">
  2509. <summary>
  2510. Indicates whether showing markers denoting the mean.
  2511. </summary>
  2512. </member>
  2513. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.ShowInnerPoints">
  2514. <summary>
  2515. Indicates whether showing non-outlier data points.
  2516. </summary>
  2517. </member>
  2518. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.Subtotals">
  2519. <summary>
  2520. Represents the index of a subtotal data point.
  2521. </summary>
  2522. </member>
  2523. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.QuartileCalculation">
  2524. <summary>
  2525. Represents the statistical properties for the series.
  2526. </summary>
  2527. </member>
  2528. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.MapLabelLayout">
  2529. <summary>
  2530. Gets and sets the layout of map labels.
  2531. </summary>
  2532. </member>
  2533. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.MapChartRegionType">
  2534. <summary>
  2535. Gets and sets the region type of the map.
  2536. </summary>
  2537. </member>
  2538. <member name="P:Aspose.Cells.Charts.SeriesLayoutProperties.MapChartProjectionType">
  2539. <summary>
  2540. Gets and sets the projection type of the map.
  2541. </summary>
  2542. </member>
  2543. <member name="T:Aspose.Cells.FormatCondition">
  2544. <summary>
  2545. Represents conditional formatting condition.
  2546. </summary>
  2547. <example>
  2548. <code>
  2549. [C#]
  2550. //Instantiating a Workbook object
  2551. Workbook workbook = new Workbook();
  2552. Worksheet sheet = workbook.Worksheets[0];
  2553. //Adds an empty conditional formatting
  2554. int index = sheet.ConditionalFormattings.Add();
  2555. FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
  2556. //Sets the conditional format range.
  2557. CellArea ca = new CellArea();
  2558. ca.StartRow = 0;
  2559. ca.EndRow = 0;
  2560. ca.StartColumn = 0;
  2561. ca.EndColumn = 0;
  2562. fcs.AddArea(ca);
  2563. ca = new CellArea();
  2564. ca.StartRow = 1;
  2565. ca.EndRow = 1;
  2566. ca.StartColumn = 1;
  2567. ca.EndColumn = 1;
  2568. fcs.AddArea(ca);
  2569. //Adds condition.
  2570. int conditionIndex = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100");
  2571. //Adds condition.
  2572. int conditionIndex2 = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100");
  2573. //Sets the background color.
  2574. FormatCondition fc = fcs[conditionIndex];
  2575. fc.Style.BackgroundColor = Color.Red;
  2576. //Saving the Excel file
  2577. workbook.Save("C:\\output.xls");
  2578. [VB.NET]
  2579. 'Instantiating a Workbook object
  2580. Dim workbook As Workbook = New Workbook()
  2581. Dim sheet As Worksheet = workbook.Worksheets(0)
  2582. ' Adds an empty conditional formatting
  2583. Dim index As Integer = sheet.ConditionalFormattings.Add()
  2584. Dim fcs As FormatConditionCollection = sheet.ConditionalFormattings(index)
  2585. 'Sets the conditional format range.
  2586. Dim ca As CellArea = New CellArea()
  2587. ca.StartRow = 0
  2588. ca.EndRow = 0
  2589. ca.StartColumn = 0
  2590. ca.EndColumn = 0
  2591. fcs.AddArea(ca)
  2592. ca = New CellArea()
  2593. ca.StartRow = 1
  2594. ca.EndRow = 1
  2595. ca.StartColumn = 1
  2596. ca.EndColumn = 1
  2597. fcs.AddArea(ca)
  2598. 'Adds condition.
  2599. Dim conditionIndex As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100")
  2600. 'Adds condition.
  2601. Dim conditionIndex2 As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100")
  2602. 'Sets the background color.
  2603. Dim fc As FormatCondition = fcs(conditionIndex)
  2604. fc.Style.BackgroundColor = Color.Red
  2605. 'Saving the Excel file
  2606. workbook.Save("C:\output.xls")
  2607. </code>
  2608. </example>
  2609. </member>
  2610. <member name="M:Aspose.Cells.FormatCondition.GetFormula1(System.Boolean,System.Boolean)">
  2611. <summary>
  2612. Gets the value or expression associated with this format condition.
  2613. </summary>
  2614. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  2615. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  2616. <returns>The value or expression associated with this format condition.</returns>
  2617. </member>
  2618. <member name="M:Aspose.Cells.FormatCondition.GetFormula2(System.Boolean,System.Boolean)">
  2619. <summary>
  2620. Gets the value or expression associated with this format condition.
  2621. </summary>
  2622. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  2623. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  2624. <returns>The value or expression associated with this format condition.</returns>
  2625. </member>
  2626. <member name="M:Aspose.Cells.FormatCondition.GetFormula1(System.Boolean,System.Boolean,System.Int32,System.Int32)">
  2627. <summary>
  2628. Gets the value or expression of the conditional formatting of the cell.
  2629. </summary>
  2630. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  2631. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  2632. <param name="row">The row index.</param>
  2633. <param name="column">The column index.</param>
  2634. <returns>The value or expression associated with the conditional formatting of the cell.</returns>
  2635. <remarks>The given cell must be contained by this conditional formatting, otherwise null will be returned.</remarks>
  2636. </member>
  2637. <member name="M:Aspose.Cells.FormatCondition.GetFormula2(System.Boolean,System.Boolean,System.Int32,System.Int32)">
  2638. <summary>
  2639. Gets the value or expression of the conditional formatting of the cell.
  2640. </summary>
  2641. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  2642. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  2643. <param name="row">The row index.</param>
  2644. <param name="column">The column index.</param>
  2645. <returns>The value or expression associated with the conditional formatting of the cell.</returns>
  2646. <remarks>The given cell must be contained by this conditional formatting, otherwise null will be returned.</remarks>
  2647. </member>
  2648. <member name="M:Aspose.Cells.FormatCondition.SetFormulas(System.String,System.String,System.Boolean,System.Boolean)">
  2649. <summary>
  2650. Sets the value or expression associated with this format condition.
  2651. </summary>
  2652. <param name="formula1">The value or expression associated with this format condition.
  2653. If the input value starts with '=', then it will be taken as formula. Otherwise it will be taken as plain value(text, number, bool).
  2654. For text value that starts with '=', user may input it as formula in format: "=\"=...\"".</param>
  2655. <param name="formula2">The value or expression associated with this format condition. The input format is same with formula1</param>
  2656. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  2657. <param name="isLocal">Whether the formula is locale formatted.</param>
  2658. </member>
  2659. <member name="M:Aspose.Cells.FormatCondition.SetFormula1(System.String,System.Boolean,System.Boolean)">
  2660. <summary>
  2661. Sets the value or expression associated with this format condition.
  2662. </summary>
  2663. <param name="formula">The value or expression associated with this format condition.
  2664. If the input value starts with '=', then it will be taken as formula. Otherwise it will be taken as plain value(text, number, bool).
  2665. For text value that starts with '=', user may input it as formula in format: "=\"=...\"".</param>
  2666. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  2667. <param name="isLocal">Whether the formula is locale formatted.</param>
  2668. </member>
  2669. <member name="M:Aspose.Cells.FormatCondition.SetFormula2(System.String,System.Boolean,System.Boolean)">
  2670. <summary>
  2671. Sets the value or expression associated with this format condition.
  2672. </summary>
  2673. <param name="formula">The value or expression associated with this format condition.
  2674. If the input value starts with '=', then it will be taken as formula. Otherwise it will be taken as plain value(text, number, bool).
  2675. For text value that starts with '=', user may input it as formula in format: "=\"=...\"".</param>
  2676. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  2677. <param name="isLocal">Whether the formula is locale formatted.</param>
  2678. </member>
  2679. <member name="M:Aspose.Cells.FormatCondition.GetFormula1(System.Int32,System.Int32)">
  2680. <summary>
  2681. Gets the formula of the conditional formatting of the cell.
  2682. </summary>
  2683. <param name="row">The row index.</param>
  2684. <param name="column">The column index.</param>
  2685. <returns>The formula.</returns>
  2686. </member>
  2687. <member name="M:Aspose.Cells.FormatCondition.GetFormula2(System.Int32,System.Int32)">
  2688. <summary>
  2689. Gets the formula of the conditional formatting of the cell.
  2690. </summary>
  2691. <param name="row">The row index.</param>
  2692. <param name="column">The column index.</param>
  2693. <returns>The formula.</returns>
  2694. </member>
  2695. <member name="P:Aspose.Cells.FormatCondition.Formula1">
  2696. <summary>
  2697. Gets and sets the value or expression associated with conditional formatting.
  2698. </summary>
  2699. <remarks>
  2700. Please add all areas before setting formula.
  2701. For setting formula for this condition, if the input value starts with '=', then it will be taken as formula.
  2702. Otherwise it will be taken as plain value(text, number, bool). For text value that starts with '=', user may input it as formula in format: "=\"=...\"".
  2703. </remarks>
  2704. </member>
  2705. <member name="P:Aspose.Cells.FormatCondition.Formula2">
  2706. <summary>
  2707. Gets and sets the value or expression associated with conditional formatting.
  2708. </summary>
  2709. <remarks>
  2710. Please add all areas before setting formula.
  2711. For setting formula for this condition, if the input value starts with '=', then it will be taken as formula.
  2712. Otherwise it will be taken as plain value(text, number, bool). For text value that starts with '=', user may input it as formula in format: "=\"=...\"".
  2713. </remarks>
  2714. </member>
  2715. <member name="P:Aspose.Cells.FormatCondition.Operator">
  2716. <summary>
  2717. Gets and sets the conditional format operator type.
  2718. </summary>
  2719. <see cref="T:Aspose.Cells.OperatorType" />
  2720. </member>
  2721. <member name="P:Aspose.Cells.FormatCondition.StopIfTrue">
  2722. <summary>
  2723. True, no rules with lower priority may be applied over this rule, when this rule evaluates to true.
  2724. Only applies for Excel 2007;
  2725. </summary>
  2726. </member>
  2727. <member name="P:Aspose.Cells.FormatCondition.Priority">
  2728. <summary>
  2729. The priority of this conditional formatting rule. This value is used to determine which
  2730. format should be evaluated and rendered. Lower numeric values are higher priority than
  2731. higher numeric values, where '1' is the highest priority.
  2732. </summary>
  2733. </member>
  2734. <member name="P:Aspose.Cells.FormatCondition.Style">
  2735. <summary>
  2736. Gets or setts style of conditional formatted cell ranges.
  2737. </summary>
  2738. </member>
  2739. <member name="P:Aspose.Cells.FormatCondition.Type">
  2740. <summary>
  2741. Gets and sets whether the conditional format Type.
  2742. </summary>
  2743. <see cref="T:Aspose.Cells.FormatConditionType" />
  2744. </member>
  2745. <member name="P:Aspose.Cells.FormatCondition.IconSet">
  2746. <summary>
  2747. Get the conditional formatting's "IconSet" instance.
  2748. The default instance's IconSetType is TrafficLights31.
  2749. Valid only for type = IconSet.
  2750. </summary>
  2751. <returns>
  2752. </returns>
  2753. </member>
  2754. <member name="P:Aspose.Cells.FormatCondition.DataBar">
  2755. <summary>
  2756. Get the conditional formatting's "DataBar" instance.
  2757. The default instance's color is blue.
  2758. Valid only for type is DataBar.
  2759. </summary>
  2760. <returns>
  2761. </returns>
  2762. </member>
  2763. <member name="P:Aspose.Cells.FormatCondition.ColorScale">
  2764. <summary>
  2765. Get the conditional formatting's "ColorScale" instance.
  2766. The default instance is a "green-yellow-red" 3ColorScale .
  2767. Valid only for type = ColorScale.
  2768. </summary>
  2769. <returns>
  2770. </returns>
  2771. </member>
  2772. <member name="P:Aspose.Cells.FormatCondition.Top10">
  2773. <summary>
  2774. Get the conditional formatting's "Top10" instance.
  2775. The default instance's rule highlights cells whose
  2776. values fall in the top 10 bracket.
  2777. Valid only for type is Top10.
  2778. </summary>
  2779. <returns>
  2780. </returns>
  2781. </member>
  2782. <member name="P:Aspose.Cells.FormatCondition.AboveAverage">
  2783. <summary>
  2784. Get the conditional formatting's "AboveAverage" instance.
  2785. The default instance's rule highlights cells that are
  2786. above the average for all values in the range.
  2787. Valid only for type = AboveAverage.
  2788. </summary>
  2789. <returns>
  2790. </returns>
  2791. </member>
  2792. <member name="P:Aspose.Cells.FormatCondition.Text">
  2793. <summary>
  2794. The text value in a "text contains" conditional formatting rule.
  2795. Valid only for type = containsText, notContainsText, beginsWith and endsWith.
  2796. The default value is null.
  2797. </summary>
  2798. </member>
  2799. <member name="P:Aspose.Cells.FormatCondition.TimePeriod">
  2800. <summary>
  2801. The applicable time period in a "date occurring¡­" conditional formatting rule.
  2802. Valid only for type = timePeriod.
  2803. The default value is TimePeriodType.Today.
  2804. </summary>
  2805. </member>
  2806. <member name="T:Aspose.Cells.Rendering.PdfBookmarkEntry">
  2807. <summary>
  2808. PdfBookmarkEntry is an entry in pdf bookmark.
  2809. if Text property of current instance is null or "",
  2810. current instance will be hidden and children will be inserted on current level.
  2811. </summary>
  2812. <example>
  2813. <code>
  2814. [C#]
  2815. Workbook workbook = new Workbook();
  2816. workbook.Worksheets.Add();
  2817. workbook.Worksheets.Add();
  2818. Cell cellInPage1 = workbook.Worksheets[0].Cells["A0"];
  2819. Cell cellInPage2 = workbook.Worksheets[1].Cells["A0"];
  2820. Cell cellInPage3 = workbook.Worksheets[2].Cells["A0"];
  2821. cellInPage1.PutValue("page1");
  2822. cellInPage2.PutValue("page2");
  2823. cellInPage3.PutValue("page3");
  2824. PdfBookmarkEntry pbeRoot = new PdfBookmarkEntry();
  2825. pbeRoot.Text = "root"; // if pbeRoot.Text = null, all children of pbeRoot will be inserted on the top level in the bookmark.
  2826. pbeRoot.Destination = cellInPage1;
  2827. pbeRoot.SubEntry = new ArrayList();
  2828. pbeRoot.IsOpen = false;
  2829. PdfBookmarkEntry subPbe1 = new PdfBookmarkEntry();
  2830. subPbe1.Text = "section1";
  2831. subPbe1.Destination = cellInPage2;
  2832. PdfBookmarkEntry subPbe2 = new PdfBookmarkEntry();
  2833. subPbe2.Text = "section2";
  2834. subPbe2.Destination = cellInPage3;
  2835. pbeRoot.SubEntry.Add(subPbe1);
  2836. pbeRoot.SubEntry.Add(subPbe2);
  2837. workbook.SaveOptions.PdfBookmark = pbeRoot;
  2838. workbook.Save("c:\\Test.pdf");
  2839. [VB]
  2840. Dim workbook As Workbook = New Workbook
  2841. workbook.Worksheets.Add("sheet2")
  2842. workbook.Worksheets.Add("sheet3")
  2843. Dim cells As Cells = workbook.Worksheets(0).Cells
  2844. Dim cellInPage1 As Cell = cells("A0")
  2845. cellInPage1.PutValue("Page1")
  2846. cells = workbook.Worksheets(1).Cells
  2847. Dim cellInPage2 As Cell = cells("A0")
  2848. cellInPage2.PutValue("Page2")
  2849. cells = workbook.Worksheets(2).Cells
  2850. Dim cellInPage3 As Cell = cells("A0")
  2851. cellInPage3.PutValue("Page3")
  2852. Dim pbeRoot As PdfBookmarkEntry = New PdfBookmarkEntry()
  2853. pbeRoot.Text = "root"
  2854. pbeRoot.Destination = cellInPage1
  2855. pbeRoot.SubEntry = New ArrayList
  2856. pbeRoot.IsOpen = False
  2857. Dim subPbe1 As PdfBookmarkEntry = New PdfBookmarkEntry()
  2858. subPbe1.Text = "section1"
  2859. subPbe1.Destination = cellInPage2
  2860. Dim subPbe2 As PdfBookmarkEntry = New PdfBookmarkEntry()
  2861. subPbe2.Text = "section2"
  2862. subPbe2.Destination = cellInPage3
  2863. pbeRoot.SubEntry.Add(subPbe1)
  2864. pbeRoot.SubEntry.Add(subPbe2)
  2865. workbook.SaveOptions.PdfBookmark = pbeRoot
  2866. workbook.Save("c:\\Test.pdf")
  2867. </code>
  2868. </example>
  2869. </member>
  2870. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.Text">
  2871. <summary>
  2872. Title of a bookmark.
  2873. </summary>
  2874. </member>
  2875. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.Destination">
  2876. <summary>
  2877. The cell to which the bookmark link.
  2878. </summary>
  2879. </member>
  2880. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.DestinationName">
  2881. <summary>
  2882. Gets or sets name of destination.
  2883. </summary>
  2884. <remarks>
  2885. If destination name is set, the destination will be defined as a named destination with this name.
  2886. </remarks>
  2887. </member>
  2888. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.SubEntry">
  2889. <summary>
  2890. SubEntry of a bookmark.
  2891. </summary>
  2892. </member>
  2893. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.IsOpen">
  2894. <summary>
  2895. When this property is true, the bookmarkentry will expand, otherwise it will collapse.
  2896. </summary>
  2897. </member>
  2898. <member name="P:Aspose.Cells.Rendering.PdfBookmarkEntry.IsCollapse">
  2899. <summary>
  2900. When this property is true, the bookmarkentry will collapse, otherwise it will expand.
  2901. </summary>
  2902. </member>
  2903. <member name="T:Aspose.Cells.AbstractCalculationEngine">
  2904. <summary>
  2905. Represents user's custom calculation engine to extend the default calculation engine of Aspose.Cells.
  2906. </summary>
  2907. <example>
  2908. <code>
  2909. [C#]
  2910. public class MyEngine : AbstractCalculationEngine
  2911. {
  2912. public override void Calculate(CalculationData data)
  2913. {
  2914. string funcName = data.FunctionName.ToUpper();
  2915. if ("MYFUNC".Equals(funcName))
  2916. {
  2917. //do calculation for MYFUNC here
  2918. int count = data.ParamCount;
  2919. object res = null;
  2920. for (int i = 0; i &lt; count; i++)
  2921. {
  2922. object pv = data.GetParamValue(i);
  2923. if (pv is ReferredArea)
  2924. {
  2925. ReferredArea ra = (ReferredArea)pv;
  2926. pv = ra.GetValue(0, 0);
  2927. }
  2928. //process the parameter here
  2929. //res = ...;
  2930. }
  2931. data.CalculatedValue = res;
  2932. }
  2933. }
  2934. }
  2935. </code>
  2936. </example>
  2937. <remarks>User should not modify any part of the Workbook directly in this implementation(except the calculated result of the custom function, which can be set by CalculationData.CalculatedValue property).
  2938. Otherwise unexpected result or Exception may be caused.
  2939. If user needs to change other data than calculated result in the implementation for some custom functions,
  2940. for example, change cell's formula, style, ...etc., user should gather those data in this implementation and change them out of the scope of formula calculation.</remarks>
  2941. </member>
  2942. <member name="M:Aspose.Cells.AbstractCalculationEngine.Calculate(Aspose.Cells.CalculationData)">
  2943. <summary>
  2944. Calculates one function with given data.
  2945. </summary>
  2946. <param name="data">the required data to calculate function such as function name, parameters, ...etc.</param>
  2947. <remarks>User should set the calculated value for given data for all functions(including excel native functions)
  2948. that he wants to calculate by himself in this implementation.
  2949. </remarks>
  2950. </member>
  2951. <member name="P:Aspose.Cells.AbstractCalculationEngine.IsParamLiteralRequired">
  2952. <summary>
  2953. Indicates whether this engine needs the literal text of parameter while doing calculation. Default value is false.
  2954. </summary>
  2955. <remarks>If this custom calculation engine requires the parameter's literal text, more stacks will be required to cache the literal text for parameters and Calculate() method may be called recursively to calculate the parameter's value.
  2956. Commonly the literal text is not needed for calculating formulas and this method should return false for most implementations to get better performance.
  2957. </remarks>
  2958. </member>
  2959. <member name="P:Aspose.Cells.AbstractCalculationEngine.ProcessBuiltInFunctions">
  2960. <summary>
  2961. Whether built-in functions that have been supported by the built-in engine should be checked and processed by this implementation.
  2962. Default is false.
  2963. If user needs to change the calculation logic of some built-in functions, this property should be set as true.
  2964. </summary>
  2965. </member>
  2966. <member name="T:Aspose.Cells.CustomImplementationFactory">
  2967. <summary>
  2968. Factory to create some instances which may be re-implemented by user for special purpose.
  2969. </summary>
  2970. </member>
  2971. <member name="M:Aspose.Cells.CustomImplementationFactory.CreateMemoryStream">
  2972. <summary>
  2973. Create one instance of MemoryStream or custom implementation of MemoryStream.
  2974. </summary>
  2975. <returns>The MemoryStream instance.</returns>
  2976. </member>
  2977. <member name="M:Aspose.Cells.CustomImplementationFactory.CreateMemoryStream(System.Int32)">
  2978. <summary>
  2979. Create one instance of MemoryStream or custom implementation of MemoryStream.
  2980. </summary>
  2981. <param name="capacity">Initial capacity for the MemoryStream</param>
  2982. <returns>The MemoryStream instance.</returns>
  2983. </member>
  2984. <member name="M:Aspose.Cells.CustomImplementationFactory.CreateCultureInfo(System.Int32)">
  2985. <summary>
  2986. Create one CultureInfo by given id.
  2987. </summary>
  2988. <param name="lcid">
  2989. </param>
  2990. <returns>The CultureInfo instance.</returns>
  2991. <remarks>This implementation is useful for situations:
  2992. 1. Some cultures may not be supported by user's environment and creating the required CultureInfo with given identifier may cause Exception.
  2993. To avoid the exception, user may override this method to provide a valid CultureInfo instance for the unsupported one.
  2994. 2. User may want to specify some custom properties for some cultures to get expected result for formatting.
  2995. For this purpose user may override this method to provide the CultureInfo instance with user specified properties.
  2996. Please note UseUserOverride property of the returned CultureInfo instance may influence the formatted result.
  2997. If it is false, some properties of the returned CultureInfo instance may be overridden by our built-in
  2998. formatting engine according to the formatting requirements of different scenarios.
  2999. If it is true, we will not change any properties of it and use it to format values directly.
  3000. So, if user has specified custom properties for the returned CultureInfo instance, please make sure its UseUserOverride is true.
  3001. </remarks>
  3002. </member>
  3003. <member name="T:Aspose.Cells.Drawing.ReflectionEffectType">
  3004. <summary>
  3005. </summary>
  3006. </member>
  3007. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.None">
  3008. <summary>
  3009. No reflection effect.
  3010. </summary>
  3011. </member>
  3012. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.Custom">
  3013. <summary>
  3014. Custom reflection effect.
  3015. </summary>
  3016. </member>
  3017. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.TightReflectionTouching">
  3018. <summary>
  3019. Tight reflection, touching.
  3020. </summary>
  3021. </member>
  3022. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.HalfReflectionTouching">
  3023. <summary>
  3024. Half reflection, touching.
  3025. </summary>
  3026. </member>
  3027. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.FullReflectionTouching">
  3028. <summary>
  3029. Full reflection, touching.
  3030. </summary>
  3031. </member>
  3032. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.TightReflection4PtOffset">
  3033. <summary>
  3034. Tight reflection, 4 pt offset.
  3035. </summary>
  3036. </member>
  3037. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.HalfReflection4PtOffset">
  3038. <summary>
  3039. Half reflection, 4 pt offset.
  3040. </summary>
  3041. </member>
  3042. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.FullReflection4PtOffset">
  3043. <summary>
  3044. Full reflection, 4 pt offset.
  3045. </summary>
  3046. </member>
  3047. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.TightReflection8PtOffset">
  3048. <summary>
  3049. Tight reflection, 8 pt offset.
  3050. </summary>
  3051. </member>
  3052. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.HalfReflection8PtOffset">
  3053. <summary>
  3054. Half reflection, 8 pt offset.
  3055. </summary>
  3056. </member>
  3057. <member name="F:Aspose.Cells.Drawing.ReflectionEffectType.FullReflection8PtOffset">
  3058. <summary>
  3059. Full reflection, 8 pt offset.
  3060. </summary>
  3061. </member>
  3062. <member name="T:Aspose.Cells.Drawing.BevelPresetType">
  3063. <summary>
  3064. Represents a preset for a type of bevel which can be applied to a shape in 3D.
  3065. </summary>
  3066. </member>
  3067. <member name="F:Aspose.Cells.Drawing.BevelPresetType.None">
  3068. <summary>
  3069. No bevel
  3070. </summary>
  3071. </member>
  3072. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Angle">
  3073. <summary>
  3074. Angle
  3075. </summary>
  3076. </member>
  3077. <member name="F:Aspose.Cells.Drawing.BevelPresetType.ArtDeco">
  3078. <summary>
  3079. Art deco
  3080. </summary>
  3081. </member>
  3082. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Circle">
  3083. <summary>
  3084. Circle
  3085. </summary>
  3086. </member>
  3087. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Convex">
  3088. <summary>
  3089. Convex
  3090. </summary>
  3091. </member>
  3092. <member name="F:Aspose.Cells.Drawing.BevelPresetType.CoolSlant">
  3093. <summary>
  3094. Cool slant
  3095. </summary>
  3096. </member>
  3097. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Cross">
  3098. <summary>
  3099. Cross
  3100. </summary>
  3101. </member>
  3102. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Divot">
  3103. <summary>
  3104. Divot
  3105. </summary>
  3106. </member>
  3107. <member name="F:Aspose.Cells.Drawing.BevelPresetType.HardEdge">
  3108. <summary>
  3109. Hard edge
  3110. </summary>
  3111. </member>
  3112. <member name="F:Aspose.Cells.Drawing.BevelPresetType.RelaxedInset">
  3113. <summary>
  3114. Relaxed inset
  3115. </summary>
  3116. </member>
  3117. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Riblet">
  3118. <summary>
  3119. Riblet
  3120. </summary>
  3121. </member>
  3122. <member name="F:Aspose.Cells.Drawing.BevelPresetType.Slope">
  3123. <summary>
  3124. Slope
  3125. </summary>
  3126. </member>
  3127. <member name="F:Aspose.Cells.Drawing.BevelPresetType.SoftRound">
  3128. <summary>
  3129. Soft round
  3130. </summary>
  3131. </member>
  3132. <member name="T:Aspose.Cells.Drawing.ThreeDFormat">
  3133. <summary>
  3134. Represents a shape's three-dimensional formatting.
  3135. </summary>
  3136. </member>
  3137. <member name="M:Aspose.Cells.Drawing.ThreeDFormat.GetHashCode">
  3138. <summary>
  3139. Gets hashcode.
  3140. </summary>
  3141. <returns>
  3142. </returns>
  3143. </member>
  3144. <member name="M:Aspose.Cells.Drawing.ThreeDFormat.Equals(System.Object)">
  3145. <summary>
  3146. </summary>
  3147. <param name="obj">
  3148. </param>
  3149. <returns>
  3150. </returns>
  3151. </member>
  3152. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.BottomBevelWidth">
  3153. <summary>
  3154. Gets and sets the width of the bottom bevel, or how far into the shape it is applied.
  3155. In unit of Points.
  3156. </summary>
  3157. </member>
  3158. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.BottomBevelHeight">
  3159. <summary>
  3160. Gets and sets the height of the bottom bevel, or how far into the shape it is applied.
  3161. In unit of Points.
  3162. </summary>
  3163. </member>
  3164. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.BottomBevelType">
  3165. <summary>
  3166. Gets and sets the type of the bottom bevel, or how far into the shape it is applied.
  3167. In unit of Points.
  3168. </summary>
  3169. </member>
  3170. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.TopBevelWidth">
  3171. <summary>
  3172. Gets and sets the width of the top bevel, or how far into the shape it is applied.
  3173. In unit of Points.
  3174. </summary>
  3175. </member>
  3176. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.TopBevelHeight">
  3177. <summary>
  3178. Gets and sets the height of the top bevel, or how far into the shape it is applied.
  3179. In unit of Points.
  3180. </summary>
  3181. </member>
  3182. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.TopBevelType">
  3183. <summary>
  3184. Gets and sets the type of the top bevel, or how far into the shape it is applied.
  3185. In unit of Points.
  3186. </summary>
  3187. </member>
  3188. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.Material">
  3189. <summary>
  3190. Represents the preset material which is combined with the lighting properties to give the
  3191. final look and feel of a shape.
  3192. </summary>
  3193. </member>
  3194. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.ContourColor">
  3195. <summary>
  3196. Gets and sets the contour color on a shape.
  3197. </summary>
  3198. </member>
  3199. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.ContourWidth">
  3200. <summary>
  3201. Gets and sets the contour width on the shape, in unit of points.
  3202. </summary>
  3203. </member>
  3204. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.ExtrusionColor">
  3205. <summary>
  3206. Gets the extrusion color on a shape.
  3207. </summary>
  3208. </member>
  3209. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.ExtrusionHeight">
  3210. <summary>
  3211. Gets and sets the extrusion height of the applied to the shape, in unit of points.
  3212. </summary>
  3213. </member>
  3214. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.Z">
  3215. <summary>
  3216. Defines the distance from ground for the 3D shape.
  3217. </summary>
  3218. </member>
  3219. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.LightAngle">
  3220. <summary>
  3221. Gets and sets the angle of the extrusion lights.
  3222. </summary>
  3223. </member>
  3224. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.Lighting">
  3225. <summary>
  3226. Gets and sets type of light rig.
  3227. </summary>
  3228. </member>
  3229. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.LightingDirection">
  3230. <summary>
  3231. Gets and sets the direction from which the light rig is oriented in relation to the scene.
  3232. </summary>
  3233. </member>
  3234. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.Perspective">
  3235. <summary>
  3236. Gets and sets the angle at which a ThreeDFormat object can be viewed.
  3237. </summary>
  3238. </member>
  3239. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.RotationX">
  3240. <summary>
  3241. Gets and sets the rotation of the extruded shape around the x-axis in degrees.
  3242. </summary>
  3243. </member>
  3244. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.RotationY">
  3245. <summary>
  3246. Gets and sets the rotation of the extruded shape around the y-axis in degrees.
  3247. </summary>
  3248. </member>
  3249. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.RotationZ">
  3250. <summary>
  3251. Gets and sets the rotation of the extruded shape around the z-axis in degrees.
  3252. </summary>
  3253. </member>
  3254. <member name="P:Aspose.Cells.Drawing.ThreeDFormat.PresetCameraType">
  3255. <summary>
  3256. Gets and sets the extrusion preset camera type.
  3257. </summary>
  3258. </member>
  3259. <member name="T:Aspose.Cells.Drawing.DialogBox">
  3260. <summary>
  3261. Represents the dialog box.
  3262. </summary>
  3263. </member>
  3264. <member name="T:Aspose.Cells.Drawing.MsoLineFormatHelper">
  3265. <summary>
  3266. Represents line and arrowhead formatting.
  3267. </summary>
  3268. </member>
  3269. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.IsVisible">
  3270. <summary>
  3271. Indicates whether the object is visible.
  3272. </summary>
  3273. </member>
  3274. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.Style">
  3275. <summary>
  3276. Returns a Style object that represents the style of the specified range.
  3277. </summary>
  3278. </member>
  3279. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.ForeColor">
  3280. <summary>
  3281. Gets and sets the border line fore color.
  3282. </summary>
  3283. </member>
  3284. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.BackColor">
  3285. <summary>
  3286. Gets and sets the border line back color.
  3287. </summary>
  3288. </member>
  3289. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.DashStyle">
  3290. <summary>
  3291. Gets or sets the dash style for the specified line.
  3292. </summary>
  3293. </member>
  3294. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.Transparency">
  3295. <summary>
  3296. Returns or sets the degree of transparency of the specified fill as a value from 0.0 (opaque) through 1.0 (clear).
  3297. </summary>
  3298. </member>
  3299. <member name="P:Aspose.Cells.Drawing.MsoLineFormatHelper.Weight">
  3300. <summary>
  3301. Returns or sets the weight of the line ,in units of pt.
  3302. </summary>
  3303. </member>
  3304. <member name="T:Aspose.Cells.Drawing.LineFormat">
  3305. <summary>
  3306. Represents all setting of the line.
  3307. </summary>
  3308. </member>
  3309. <member name="T:Aspose.Cells.Drawing.FillFormat">
  3310. <summary>
  3311. Encapsulates the object that represents fill formatting for a shape.
  3312. </summary>
  3313. <example>
  3314. <code>
  3315. [C#]
  3316. //Filling the area of the 2nd NSeries with a gradient
  3317. chart.NSeries[1].Area.FillFormat.SetOneColorGradient(Color.Lime, 1, GradientStyleType.Horizontal, 1);
  3318. [Visual Basic]
  3319. 'Filling the area of the 2nd NSeries with a gradient
  3320. chart.NSeries(1).Area.FillFormat.SetOneColorGradient(Color.Lime, 1, GradientStyleType.Horizontal, 1)
  3321. </code>
  3322. </example>
  3323. </member>
  3324. <member name="M:Aspose.Cells.Drawing.FillFormat.SetOneColorGradient(System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  3325. <summary>
  3326. Sets the specified fill to a one-color gradient.
  3327. Only applies for Excel 2007.
  3328. </summary>
  3329. <param name="color">One gradient color.</param>
  3330. <param name="degree">The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light).</param>
  3331. <param name="style">Gradient shading style.</param>
  3332. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  3333. </member>
  3334. <member name="M:Aspose.Cells.Drawing.FillFormat.SetTwoColorGradient(System.Drawing.Color,System.Drawing.Color,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  3335. <summary>
  3336. Sets the specified fill to a two-color gradient.
  3337. Only applies for Excel 2007.
  3338. </summary>
  3339. <param name="color1">One gradient color.</param>
  3340. <param name="color2">Two gradient color.</param>
  3341. <param name="style">Gradient shading style.</param>
  3342. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  3343. </member>
  3344. <member name="M:Aspose.Cells.Drawing.FillFormat.SetTwoColorGradient(System.Drawing.Color,System.Double,System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  3345. <summary>
  3346. Sets the specified fill to a two-color gradient.
  3347. Only applies for Excel 2007.
  3348. </summary>
  3349. <param name="color1">One gradient color.</param>
  3350. <param name="transparency1">The degree of transparency of the color1 as a value from 0.0 (opaque) through 1.0 (clear).</param>
  3351. <param name="color2">Two gradient color.</param>
  3352. <param name="transparency2">The degree of transparency of the color2 as a value from 0.0 (opaque) through 1.0 (clear).</param>
  3353. <param name="style">Gradient shading style.</param>
  3354. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  3355. </member>
  3356. <member name="M:Aspose.Cells.Drawing.FillFormat.SetPresetColorGradient(Aspose.Cells.Drawing.GradientPresetType,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  3357. <summary>
  3358. Sets the specified fill to a preset-color gradient.
  3359. Only applies for Excel 2007.
  3360. </summary>
  3361. <param name="presetColor">Preset color type</param>
  3362. <param name="style">Gradient shading style.</param>
  3363. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  3364. </member>
  3365. <member name="P:Aspose.Cells.Drawing.FillFormat.Type">
  3366. <summary>
  3367. Gets and sets the fill type.
  3368. </summary>
  3369. <remarks>
  3370. NOTE: This member is now obsolete. Instead,
  3371. please use FillFormat.FillType property instead.
  3372. This property will be removed 12 months later since July 2016.
  3373. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  3374. </member>
  3375. <member name="P:Aspose.Cells.Drawing.FillFormat.FillType">
  3376. <summary>
  3377. Gets and sets fill type
  3378. </summary>
  3379. </member>
  3380. <member name="P:Aspose.Cells.Drawing.FillFormat.Transparency">
  3381. <summary>
  3382. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
  3383. </summary>
  3384. </member>
  3385. <member name="P:Aspose.Cells.Drawing.FillFormat.SetType">
  3386. <summary>
  3387. Gets the fill format set type.
  3388. </summary>
  3389. <remarks>
  3390. NOTE: This member is now obsolete. Instead,
  3391. please use FillFormat.FillType property instead.
  3392. This property will be removed 12 months later since July 2016.
  3393. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  3394. </member>
  3395. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientFill">
  3396. <summary>
  3397. Gets <see cref="P:Aspose.Cells.Drawing.FillFormat.GradientFill" /> object.
  3398. </summary>
  3399. </member>
  3400. <member name="P:Aspose.Cells.Drawing.FillFormat.TextureFill">
  3401. <summary>
  3402. Gets <see cref="P:Aspose.Cells.Drawing.FillFormat.TextureFill" /> object.
  3403. </summary>
  3404. </member>
  3405. <member name="P:Aspose.Cells.Drawing.FillFormat.SolidFill">
  3406. <summary>
  3407. Gets <see cref="P:Aspose.Cells.Drawing.FillFormat.SolidFill" /> object.
  3408. </summary>
  3409. </member>
  3410. <member name="P:Aspose.Cells.Drawing.FillFormat.PatternFill">
  3411. <summary>
  3412. Gets <see cref="P:Aspose.Cells.Drawing.FillFormat.PatternFill" /> object.
  3413. </summary>
  3414. </member>
  3415. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientColorType">
  3416. <summary>
  3417. Returns the gradient color type for the specified fill.
  3418. </summary>
  3419. </member>
  3420. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientStyle">
  3421. <summary>
  3422. Returns the gradient style for the specified fill.
  3423. </summary>
  3424. </member>
  3425. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientColor1">
  3426. <summary>
  3427. Returns the gradient color 1 for the specified fill.
  3428. </summary>
  3429. </member>
  3430. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientColor2">
  3431. <summary>
  3432. Returns the gradient color 2 for the specified fill.
  3433. </summary>
  3434. <remarks>Only when the gradient color type is GradientColorType.TwoColors, this property is meaningful.</remarks>
  3435. </member>
  3436. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientDegree">
  3437. <summary>
  3438. Returns the gradient degree for the specified fill.
  3439. Only applies for Excel 2007.
  3440. </summary>
  3441. <remarks>Can only be a value from 0.0 (dark) through 1.0 (light).</remarks>
  3442. </member>
  3443. <member name="P:Aspose.Cells.Drawing.FillFormat.GradientVariant">
  3444. <summary>
  3445. Returns the gradient variant for the specified fill.
  3446. Only applies for Excel 2007.
  3447. </summary>
  3448. <remarks>Can only be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</remarks>
  3449. </member>
  3450. <member name="P:Aspose.Cells.Drawing.FillFormat.PresetColor">
  3451. <summary>
  3452. Returns the gradient preset color for the specified fill.
  3453. </summary>
  3454. </member>
  3455. <member name="P:Aspose.Cells.Drawing.FillFormat.Texture">
  3456. <summary>
  3457. Represents the texture type for the specified fill.
  3458. </summary>
  3459. </member>
  3460. <member name="P:Aspose.Cells.Drawing.FillFormat.Pattern">
  3461. <summary>
  3462. Represents an area's display pattern.
  3463. </summary>
  3464. </member>
  3465. <member name="P:Aspose.Cells.Drawing.FillFormat.PictureFormatType">
  3466. <summary>
  3467. Gets and sets the picture format type.
  3468. </summary>
  3469. </member>
  3470. <member name="P:Aspose.Cells.Drawing.FillFormat.Scale">
  3471. <summary>
  3472. Gets and sets the picture format scale.
  3473. </summary>
  3474. </member>
  3475. <member name="P:Aspose.Cells.Drawing.FillFormat.ImageData">
  3476. <summary>
  3477. Gets and sets the picture image data.
  3478. </summary>
  3479. <remarks>If the fill format is not custom texture format, returns null.</remarks>
  3480. </member>
  3481. <member name="P:Aspose.Cells.Drawing.LineFormat.CompoundType">
  3482. <summary>
  3483. Specifies the line compound type.
  3484. </summary>
  3485. </member>
  3486. <member name="P:Aspose.Cells.Drawing.LineFormat.DashStyle">
  3487. <summary>
  3488. Specifies the line dash type.
  3489. </summary>
  3490. </member>
  3491. <member name="P:Aspose.Cells.Drawing.LineFormat.CapType">
  3492. <summary>
  3493. Specifies the ending caps.
  3494. </summary>
  3495. </member>
  3496. <member name="P:Aspose.Cells.Drawing.LineFormat.JoinType">
  3497. <summary>
  3498. Specifies the line join type.
  3499. </summary>
  3500. </member>
  3501. <member name="P:Aspose.Cells.Drawing.LineFormat.BeginArrowheadStyle">
  3502. <summary>
  3503. Gets and sets the begin arrow type of the line.
  3504. </summary>
  3505. </member>
  3506. <member name="P:Aspose.Cells.Drawing.LineFormat.BeginArrowheadWidth">
  3507. <summary>
  3508. Gets and sets the begin arrow width type of the line.
  3509. </summary>
  3510. </member>
  3511. <member name="P:Aspose.Cells.Drawing.LineFormat.BeginArrowheadLength">
  3512. <summary>
  3513. Gets and sets the begin arrow length type of the line.
  3514. </summary>
  3515. </member>
  3516. <member name="P:Aspose.Cells.Drawing.LineFormat.EndArrowheadStyle">
  3517. <summary>
  3518. Gets and sets the end arrow type of the line.
  3519. </summary>
  3520. </member>
  3521. <member name="P:Aspose.Cells.Drawing.LineFormat.EndArrowheadWidth">
  3522. <summary>
  3523. Gets and sets the end arrow width type of the line.
  3524. </summary>
  3525. </member>
  3526. <member name="P:Aspose.Cells.Drawing.LineFormat.EndArrowheadLength">
  3527. <summary>
  3528. Gets and sets the end arrow length type of the line.
  3529. </summary>
  3530. </member>
  3531. <member name="P:Aspose.Cells.Drawing.LineFormat.Weight">
  3532. <summary>
  3533. Gets or sets the weight of the line in unit of points.
  3534. </summary>
  3535. </member>
  3536. <member name="T:Aspose.Cells.IFilePathProvider">
  3537. <summary>
  3538. Represents the exported file path provider.
  3539. </summary>
  3540. </member>
  3541. <member name="M:Aspose.Cells.IFilePathProvider.GetFullName(System.String)">
  3542. <summary>
  3543. Gets the full path of the file by Worksheet name when exporting Worksheet to html separately.
  3544. So the references among the Worksheets can be exported correctly.
  3545. </summary>
  3546. <param name="sheetName">Worksheet name</param>
  3547. <returns>the full path of the file</returns>
  3548. </member>
  3549. <member name="T:Aspose.Cells.Drawing.SmartArtShape">
  3550. <summary>
  3551. Represents the smart art.
  3552. </summary>
  3553. </member>
  3554. <member name="M:Aspose.Cells.Drawing.SmartArtShape.GetResultOfSmartArt">
  3555. <summary>
  3556. Converting smart art to grouped shapes.
  3557. </summary>
  3558. </member>
  3559. <member name="T:Aspose.Cells.Drawing.WebExtensionShape">
  3560. <summary>
  3561. Represents the shape of web extension.
  3562. </summary>
  3563. </member>
  3564. <member name="P:Aspose.Cells.Drawing.WebExtensionShape.WebExtension">
  3565. <summary>
  3566. Gets and set the web extension.
  3567. </summary>
  3568. </member>
  3569. <member name="T:Aspose.Cells.Drawing.PresetWordArtStyle">
  3570. <summary>
  3571. Represents the preset WordArt styles.
  3572. </summary>
  3573. </member>
  3574. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle1">
  3575. <summary>
  3576. Fill - Black, Text 1, Shadow
  3577. </summary>
  3578. </member>
  3579. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle2">
  3580. <summary>
  3581. Fill - Blue, Accent 1, Shadow
  3582. </summary>
  3583. </member>
  3584. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle3">
  3585. <summary>
  3586. Fill - Orange, Accent 2, Outline - Accent 2
  3587. </summary>
  3588. </member>
  3589. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle4">
  3590. <summary>
  3591. Fill - White, Outline - Accent 1, Shadow
  3592. </summary>
  3593. </member>
  3594. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle5">
  3595. <summary>
  3596. Fill - Gold, Accent 4, Soft Bevel
  3597. </summary>
  3598. </member>
  3599. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle6">
  3600. <summary>
  3601. Gradient Fill - Gray
  3602. </summary>
  3603. </member>
  3604. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle7">
  3605. <summary>
  3606. Gradient Fill - Blue, Accent 1, Reflection
  3607. </summary>
  3608. </member>
  3609. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle8">
  3610. <summary>
  3611. Gradient Fill - Gold, Accent 4, Outline - Accent 4
  3612. </summary>
  3613. </member>
  3614. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle9">
  3615. <summary>
  3616. Fill - White, Outline - Accent 1, Glow - Accent 1
  3617. </summary>
  3618. </member>
  3619. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle10">
  3620. <summary>
  3621. Fill - Gray-50%, Accent 3, Sharp Bevel
  3622. </summary>
  3623. </member>
  3624. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle11">
  3625. <summary>
  3626. Fill - Black, Text 1, Outline - Background 1, Hard Shadow - Background 1
  3627. </summary>
  3628. </member>
  3629. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle12">
  3630. <summary>
  3631. Fill - Black, Text 1, Outline - Background 1, Hard Shadow - Accent 1
  3632. </summary>
  3633. </member>
  3634. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle13">
  3635. <summary>
  3636. Fill - Blue, Accent 1, Outline - Background 1, Hard Shadow - Accent 1
  3637. </summary>
  3638. </member>
  3639. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle14">
  3640. <summary>
  3641. Fill - White, Outline - Accent 2, Hard Shadow - Accent 2
  3642. </summary>
  3643. </member>
  3644. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle15">
  3645. <summary>
  3646. Fill - Gray-25%, Background 2, Inner Shadow
  3647. </summary>
  3648. </member>
  3649. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle16">
  3650. <summary>
  3651. Pattern Fill - White, Text 2, Dark Upward Diagonal, Shadow
  3652. </summary>
  3653. </member>
  3654. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle17">
  3655. <summary>
  3656. Pattern Fill - Gray-50%, Accent 3, Narrow Horizontal, Inner Shadow
  3657. </summary>
  3658. </member>
  3659. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle18">
  3660. <summary>
  3661. Fill - Blue, Accent 1, 50%, Hard Shadow - Accent 1
  3662. </summary>
  3663. </member>
  3664. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle19">
  3665. <summary>
  3666. Pattern Fill - Blue, Accent 1, Light Downward Diagonal, Outline - Accent 1
  3667. </summary>
  3668. </member>
  3669. <member name="F:Aspose.Cells.Drawing.PresetWordArtStyle.WordArtStyle20">
  3670. <summary>
  3671. Pattern Fill - Blue-Gray, Text 2, Dark Upward Diagonal, Hard Shadow - Text 2
  3672. </summary>
  3673. </member>
  3674. <member name="T:Aspose.Cells.Drawing.Texts.TextParagraphCollection">
  3675. <summary>
  3676. Represents all text paragraph.
  3677. </summary>
  3678. </member>
  3679. <member name="M:Aspose.Cells.Drawing.Texts.TextParagraphCollection.GetEnumerator">
  3680. <summary>
  3681. Gets the enumerator of the paragraphs.
  3682. </summary>
  3683. <returns>
  3684. </returns>
  3685. </member>
  3686. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraphCollection.Count">
  3687. <summary>
  3688. Gets the count of text paragraphs.
  3689. </summary>
  3690. </member>
  3691. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraphCollection.Item(System.Int32)">
  3692. <summary>
  3693. Gets the <see cref="T:Aspose.Cells.Drawing.Texts.TextParagraph" /> object at specific index.
  3694. </summary>
  3695. <param name="index">The index.</param>
  3696. <returns>
  3697. </returns>
  3698. </member>
  3699. <member name="T:Aspose.Cells.ExternalConnections.ExternalConnection">
  3700. <summary>
  3701. Specifies an external data connection
  3702. </summary>
  3703. </member>
  3704. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.Id">
  3705. <summary>
  3706. Gets the id of the connection.
  3707. </summary>
  3708. </member>
  3709. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.PowerQueryFormula">
  3710. <summary>
  3711. Gets the definition of power query formula.
  3712. </summary>
  3713. </member>
  3714. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.Type">
  3715. <summary>
  3716. Gets or Sets the external connection DataSource type.
  3717. </summary>
  3718. </member>
  3719. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.SourceFile">
  3720. <summary>
  3721. Used when the external data source is file-based. When a connection to such a data
  3722. source fails, the spreadsheet application attempts to connect directly to this file. May be
  3723. expressed in URI or system-specific file path notation.
  3724. </summary>
  3725. </member>
  3726. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.SSOId">
  3727. <summary>
  3728. Identifier for Single Sign On (SSO) used for authentication between an intermediate
  3729. spreadsheetML server and the external data source.
  3730. </summary>
  3731. </member>
  3732. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.SavePassword">
  3733. <summary>
  3734. True if the password is to be saved as part of the connection string; otherwise, False.
  3735. </summary>
  3736. </member>
  3737. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.SaveData">
  3738. <summary>
  3739. True if the external data fetched over the connection to populate a table is to be saved
  3740. with the workbook; otherwise, false.
  3741. </summary>
  3742. </member>
  3743. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.RefreshOnLoad">
  3744. <summary>
  3745. True if this connection should be refreshed when opening the file; otherwise, false.
  3746. </summary>
  3747. </member>
  3748. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.ReconnectionMethodType">
  3749. <summary>
  3750. Specifies what the spreadsheet application should do when a connection fails.
  3751. The default value is ReConnectionMethodType.Required.
  3752. </summary>
  3753. </member>
  3754. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.ReconnectionMethod">
  3755. <summary>
  3756. Specifies what the spreadsheet application should do when a connection fails.
  3757. The default value is ReConnectionMethodType.Required.
  3758. </summary>
  3759. <remarks>
  3760. NOTE: This property is now obsolete. Instead,
  3761. please use ExternalConnection.ReconnectionMethodType property.
  3762. This property will be removed 12 months later since October 2017.
  3763. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  3764. </member>
  3765. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.OnlyUseConnectionFile">
  3766. <summary>
  3767. Indicates whether the spreadsheet application should always and only use the
  3768. connection information in the external connection file indicated by the odcFile attribute
  3769. when the connection is refreshed. If false, then the spreadsheet application
  3770. should follow the procedure indicated by the reconnectionMethod attribute
  3771. </summary>
  3772. </member>
  3773. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.OdcFile">
  3774. <summary>
  3775. Specifies the full path to external connection file from which this connection was
  3776. created. If a connection fails during an attempt to refresh data, and reconnectionMethod=1,
  3777. then the spreadsheet application will try again using information from the external connection file
  3778. instead of the connection object embedded within the workbook.
  3779. </summary>
  3780. </member>
  3781. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.IsNew">
  3782. <summary>
  3783. True if the connection has not been refreshed for the first time; otherwise, false.
  3784. This state can happen when the user saves the file before a query has finished returning.
  3785. </summary>
  3786. </member>
  3787. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.Name">
  3788. <summary>
  3789. Specifies the name of the connection. Each connection must have a unique name.
  3790. </summary>
  3791. </member>
  3792. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.KeepAlive">
  3793. <summary>
  3794. True when the spreadsheet application should make efforts to keep the connection
  3795. open. When false, the application should close the connection after retrieving the
  3796. information.
  3797. </summary>
  3798. </member>
  3799. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.RefreshInternal">
  3800. <summary>
  3801. Specifies the number of minutes between automatic refreshes of the connection.
  3802. </summary>
  3803. </member>
  3804. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.ConnectionId">
  3805. <summary>
  3806. Specifies The unique identifier of this connection.
  3807. </summary>
  3808. </member>
  3809. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.ConnectionDescription">
  3810. <summary>
  3811. Specifies the user description for this connection
  3812. </summary>
  3813. </member>
  3814. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.IsDeleted">
  3815. <summary>
  3816. Indicates whether the associated workbook connection has been deleted. true if the
  3817. connection has been deleted; otherwise, false.
  3818. </summary>
  3819. </member>
  3820. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.CredentialsMethodType">
  3821. <summary>
  3822. Specifies the authentication method to be used when establishing (or re-establishing) the connection.
  3823. </summary>
  3824. </member>
  3825. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.Credentials">
  3826. <summary>
  3827. Specifies the authentication method to be used when establishing (or re-establishing) the connection.
  3828. </summary>
  3829. <remarks>
  3830. NOTE: This property is now obsolete. Instead,
  3831. please use ExternalConnection.CredentialsMethodType property.
  3832. This property will be removed 12 months later since October 2017.
  3833. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  3834. </member>
  3835. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.BackgroundRefresh">
  3836. <summary>
  3837. Indicates whether the connection can be refreshed in the background (asynchronously).
  3838. true if preferred usage of the connection is to refresh asynchronously in the background;
  3839. false if preferred usage of the connection is to refresh synchronously in the foreground.
  3840. </summary>
  3841. </member>
  3842. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnection.Parameters">
  3843. <summary>
  3844. Gets <see cref="T:Aspose.Cells.ExternalConnections.ConnectionParameterCollection" /> for an ODBC or web query.
  3845. </summary>
  3846. </member>
  3847. <member name="T:Aspose.Cells.ExternalLinkType">
  3848. <summary>
  3849. Represents the type of external link.
  3850. </summary>
  3851. </member>
  3852. <member name="F:Aspose.Cells.ExternalLinkType.DDELink">
  3853. <summary>
  3854. Represents the DDE link.
  3855. </summary>
  3856. </member>
  3857. <member name="F:Aspose.Cells.ExternalLinkType.External">
  3858. <summary>
  3859. Represents external link.
  3860. </summary>
  3861. </member>
  3862. <member name="T:Aspose.Cells.FileFontSource">
  3863. <summary>
  3864. Represents the single TrueType font file stored in the file system.
  3865. </summary>
  3866. </member>
  3867. <member name="T:Aspose.Cells.FontSourceBase">
  3868. <summary>
  3869. This is an abstract base class for the classes that allow the user to specify various font sources
  3870. </summary>
  3871. </member>
  3872. <member name="P:Aspose.Cells.FontSourceBase.Type">
  3873. <summary>
  3874. Returns the type of the font source.
  3875. </summary>
  3876. </member>
  3877. <member name="M:Aspose.Cells.FileFontSource.#ctor(System.String)">
  3878. <summary>
  3879. Ctor.
  3880. </summary>
  3881. <param name="filePath">path to font file</param>
  3882. </member>
  3883. <member name="P:Aspose.Cells.FileFontSource.FilePath">
  3884. <summary>
  3885. Path to font file.
  3886. </summary>
  3887. </member>
  3888. <member name="P:Aspose.Cells.FileFontSource.Type">
  3889. <summary>
  3890. Returns the type of the font source.
  3891. </summary>
  3892. </member>
  3893. <member name="T:Aspose.Cells.FolderFontSource">
  3894. <summary>
  3895. Represents the folder that contains TrueType font files.
  3896. </summary>
  3897. </member>
  3898. <member name="M:Aspose.Cells.FolderFontSource.#ctor(System.String,System.Boolean)">
  3899. <summary>
  3900. Ctor.
  3901. </summary>
  3902. <param name="folderPath">path to fonts folder</param>
  3903. <param name="scanSubfolders">Determines whether or not to scan subfolders.</param>
  3904. </member>
  3905. <member name="P:Aspose.Cells.FolderFontSource.FolderPath">
  3906. <summary>
  3907. Path to fonts folder.
  3908. </summary>
  3909. </member>
  3910. <member name="P:Aspose.Cells.FolderFontSource.ScanSubFolders">
  3911. <summary>
  3912. Determines whether or not to scan the subfolders.
  3913. </summary>
  3914. </member>
  3915. <member name="P:Aspose.Cells.FolderFontSource.Type">
  3916. <summary>
  3917. Returns the type of the font source.
  3918. </summary>
  3919. </member>
  3920. <member name="T:Aspose.Cells.FontConfigs">
  3921. <summary>
  3922. Specifies font settings
  3923. </summary>
  3924. </member>
  3925. <member name="M:Aspose.Cells.FontConfigs.SetFontSubstitutes(System.String,System.String[])">
  3926. <summary>
  3927. Font substitute names for given original font name.
  3928. </summary>
  3929. <param name="originalFontName">Original font name.</param>
  3930. <param name="substituteFontNames">List of font substitute names to be used if original font is not presented.</param>
  3931. </member>
  3932. <member name="M:Aspose.Cells.FontConfigs.GetFontSubstitutes(System.String)">
  3933. <summary>
  3934. Returns array containing font substitute names to be used if original font is not presented.
  3935. </summary>
  3936. <param name="originalFontName">originalFontName</param>
  3937. <returns>An array containing font substitute names to be used if original font is not presented.</returns>
  3938. </member>
  3939. <member name="M:Aspose.Cells.FontConfigs.SetFontFolder(System.String,System.Boolean)">
  3940. <summary>
  3941. Sets the fonts folder
  3942. </summary>
  3943. <param name="fontFolder">The folder that contains TrueType fonts.</param>
  3944. <param name="recursive">Determines whether or not to scan subfolders.</param>
  3945. </member>
  3946. <member name="M:Aspose.Cells.FontConfigs.SetFontFolders(System.String[],System.Boolean)">
  3947. <summary>
  3948. Sets the fonts folders
  3949. </summary>
  3950. <param name="fontFolders">The folders that contains TrueType fonts.</param>
  3951. <param name="recursive">Determines whether or not to scan subfolders.</param>
  3952. </member>
  3953. <member name="M:Aspose.Cells.FontConfigs.SetFontSources(Aspose.Cells.FontSourceBase[])">
  3954. <summary>
  3955. Sets the fonts sources.
  3956. </summary>
  3957. <param name="sources">An array of sources that contain TrueType fonts.</param>
  3958. </member>
  3959. <member name="M:Aspose.Cells.FontConfigs.GetFontSources">
  3960. <summary>
  3961. Gets a copy of the array that contains the list of sources
  3962. </summary>
  3963. <returns>
  3964. </returns>
  3965. </member>
  3966. <member name="P:Aspose.Cells.FontConfigs.DefaultFontName">
  3967. <summary>
  3968. Gets or sets the default font name.
  3969. </summary>
  3970. </member>
  3971. <member name="P:Aspose.Cells.FontConfigs.PreferSystemFontSubstitutes">
  3972. <summary>
  3973. Indicate whether to use system font substitutes first or not when a font is not presented and the substitute of this font is not set.
  3974. e.g. On Ubuntu, "Arial" font is generally substituted by "Liberation Sans".
  3975. Default value is false.
  3976. </summary>
  3977. </member>
  3978. <member name="T:Aspose.Cells.FontSourceType">
  3979. <summary>
  3980. Specifies the type of a font source.
  3981. </summary>
  3982. </member>
  3983. <member name="F:Aspose.Cells.FontSourceType.FontFile">
  3984. <summary>
  3985. represents single font file.
  3986. </summary>
  3987. </member>
  3988. <member name="F:Aspose.Cells.FontSourceType.FontsFolder">
  3989. <summary>
  3990. represents folder with font files.
  3991. </summary>
  3992. </member>
  3993. <member name="F:Aspose.Cells.FontSourceType.MemoryFont">
  3994. <summary>
  3995. represents single font in memory.
  3996. </summary>
  3997. </member>
  3998. <member name="T:Aspose.Cells.IndividualFontConfigs">
  3999. <summary>
  4000. Font configs for each <see cref="T:Aspose.Cells.Workbook" /> object.
  4001. </summary>
  4002. </member>
  4003. <member name="M:Aspose.Cells.IndividualFontConfigs.#ctor">
  4004. <summary>
  4005. Ctor.
  4006. </summary>
  4007. </member>
  4008. <member name="M:Aspose.Cells.IndividualFontConfigs.SetFontSubstitutes(System.String,System.String[])">
  4009. <summary>
  4010. Font substitute names for given original font name.
  4011. </summary>
  4012. <param name="originalFontName">Original font name.</param>
  4013. <param name="substituteFontNames">List of font substitute names to be used if original font is not presented.</param>
  4014. </member>
  4015. <member name="M:Aspose.Cells.IndividualFontConfigs.GetFontSubstitutes(System.String)">
  4016. <summary>
  4017. Returns array containing font substitute names to be used if original font is not presented.
  4018. </summary>
  4019. <param name="originalFontName">originalFontName</param>
  4020. <returns>An array containing font substitute names to be used if original font is not presented.</returns>
  4021. </member>
  4022. <member name="M:Aspose.Cells.IndividualFontConfigs.SetFontFolder(System.String,System.Boolean)">
  4023. <summary>
  4024. Sets the fonts folder
  4025. </summary>
  4026. <param name="fontFolder">The folder that contains TrueType fonts.</param>
  4027. <param name="recursive">Determines whether or not to scan subfolders.</param>
  4028. </member>
  4029. <member name="M:Aspose.Cells.IndividualFontConfigs.SetFontFolders(System.String[],System.Boolean)">
  4030. <summary>
  4031. Sets the fonts folders
  4032. </summary>
  4033. <param name="fontFolders">The folders that contains TrueType fonts.</param>
  4034. <param name="recursive">Determines whether or not to scan subfolders.</param>
  4035. </member>
  4036. <member name="M:Aspose.Cells.IndividualFontConfigs.SetFontSources(Aspose.Cells.FontSourceBase[])">
  4037. <summary>
  4038. Sets the fonts sources.
  4039. </summary>
  4040. <param name="sources">An array of sources that contain TrueType fonts.</param>
  4041. </member>
  4042. <member name="M:Aspose.Cells.IndividualFontConfigs.GetFontSources">
  4043. <summary>
  4044. Gets a copy of the array that contains the list of sources
  4045. </summary>
  4046. <returns>
  4047. </returns>
  4048. </member>
  4049. <member name="T:Aspose.Cells.MemoryFontSource">
  4050. <summary>
  4051. Represents the single TrueType font file stored in memory.
  4052. </summary>
  4053. </member>
  4054. <member name="M:Aspose.Cells.MemoryFontSource.#ctor(System.Byte[])">
  4055. <summary>
  4056. Ctor.
  4057. </summary>
  4058. <param name="fontData">Binary font data.</param>
  4059. </member>
  4060. <member name="P:Aspose.Cells.MemoryFontSource.FontData">
  4061. <summary>
  4062. Binary font data.
  4063. </summary>
  4064. </member>
  4065. <member name="P:Aspose.Cells.MemoryFontSource.Type">
  4066. <summary>
  4067. Returns the type of the font source.
  4068. </summary>
  4069. </member>
  4070. <member name="T:Aspose.Cells.AbstractCalculationMonitor">
  4071. <summary>
  4072. Monitor for user to track the progress of formula calculation.
  4073. </summary>
  4074. <example>
  4075. <code>
  4076. [C#]
  4077. //Custom monitor to check possibility of StackOverflowException
  4078. public class MyCalculationMonitor : AbstractCalculationMonitor
  4079. {
  4080. public override void BeforeCalculate(int sheetIndex, int rowIndex, int colIndex)
  4081. {
  4082. if(new StackTrace(false).FrameCount &gt; 1000)
  4083. {
  4084. throw new Exception("Stop the formula calculation because risk of StackOverflowException");
  4085. }
  4086. }
  4087. }
  4088. </code>
  4089. </example>
  4090. </member>
  4091. <member name="M:Aspose.Cells.AbstractCalculationMonitor.BeforeCalculate(System.Int32,System.Int32,System.Int32)">
  4092. <summary>
  4093. Implement this method to do business before calculating one cell.
  4094. </summary>
  4095. <param name="sheetIndex">Index of the sheet that the cell belongs to.</param>
  4096. <param name="rowIndex">Row index of the cell</param>
  4097. <param name="colIndex">Column index of the cell</param>
  4098. </member>
  4099. <member name="M:Aspose.Cells.AbstractCalculationMonitor.AfterCalculate(System.Int32,System.Int32,System.Int32)">
  4100. <summary>
  4101. Implement this method to do business after one cell has been calculated.
  4102. </summary>
  4103. <param name="sheetIndex">Index of the sheet that the cell belongs to.</param>
  4104. <param name="rowIndex">Row index of the cell</param>
  4105. <param name="colIndex">Column index of the cell</param>
  4106. </member>
  4107. <member name="M:Aspose.Cells.AbstractCalculationMonitor.OnCircular(System.Collections.IEnumerator)">
  4108. <summary>
  4109. Implement this method to do business when calculating one cell and circular references being encountered
  4110. </summary>
  4111. <param name="circularCellsData">IEnumerator to enumerate cells(represented by CalculationCell object) in the circular chain</param>
  4112. <returns>Whether the formula engine needs to calculate those cells in circular after this call.
  4113. True to let the formula engine continue to do calculation for them.
  4114. False to let the formula engine just mark those cells in circular as Calculated.
  4115. At the meantime, user may set the expected value as calculated result for the cell in this implementation.</returns>
  4116. <remarks>To process circular references, please make sure the value of property WorkbookSettings.Iteration is true
  4117. and WorkbookSettings.MaxIteration is greater than 0.</remarks>
  4118. </member>
  4119. <member name="P:Aspose.Cells.AbstractCalculationMonitor.OriginalValue">
  4120. <summary>
  4121. Gets the old value of the calculated cell.
  4122. Should be used only in <see cref="M:Aspose.Cells.AbstractCalculationMonitor.BeforeCalculate(System.Int32,System.Int32,System.Int32)" /> and <see cref="M:Aspose.Cells.AbstractCalculationMonitor.AfterCalculate(System.Int32,System.Int32,System.Int32)" />.
  4123. </summary>
  4124. </member>
  4125. <member name="P:Aspose.Cells.AbstractCalculationMonitor.ValueChanged">
  4126. <summary>
  4127. Whether the cell's value has been changed after the calculation.
  4128. Should be used only in <see cref="M:Aspose.Cells.AbstractCalculationMonitor.AfterCalculate(System.Int32,System.Int32,System.Int32)" />.
  4129. </summary>
  4130. </member>
  4131. <member name="P:Aspose.Cells.AbstractCalculationMonitor.CalculatedValue">
  4132. <summary>
  4133. Gets the newly calculated value of the cell.
  4134. Should be used only in <see cref="M:Aspose.Cells.AbstractCalculationMonitor.AfterCalculate(System.Int32,System.Int32,System.Int32)" />.
  4135. </summary>
  4136. </member>
  4137. <member name="T:Aspose.Cells.CalculationData">
  4138. <summary>
  4139. Represents the required data when calculating one function, such as function name, parameters, ...etc.
  4140. </summary>
  4141. <remarks>All objects provided by this class are for "read" purpose only.
  4142. User should not change any data in the Workbook during the formula calculation process,
  4143. Otherwise unexpected result or Exception may be caused.</remarks>
  4144. </member>
  4145. <member name="M:Aspose.Cells.CalculationData.GetParamValue(System.Int32)">
  4146. <summary>
  4147. Gets the represented value object of the parameter at given index.
  4148. </summary>
  4149. <param name="index">index of the parameter(0 based)</param>
  4150. <returns>If the parameter is plain value, then returns the plain value.
  4151. If the parameter is reference, then returns ReferredArea object.
  4152. If the parameter references to multiple datasets, then returns array of objects.</returns>
  4153. </member>
  4154. <member name="M:Aspose.Cells.CalculationData.GetParamText(System.Int32)">
  4155. <summary>
  4156. Gets the literal text of the parameter at given index.
  4157. </summary>
  4158. <param name="index">index of the parameter(0 based)</param>
  4159. <returns>literal text of the parameter</returns>
  4160. </member>
  4161. <member name="P:Aspose.Cells.CalculationData.CalculatedValue">
  4162. <summary>
  4163. Gets or sets the calculated value for this function.
  4164. </summary>
  4165. <remarks>User should set this property in his custom calculation engine for those functions the engine supports,
  4166. and the set value will be returned when getting this property later.
  4167. The set value can be any value of those objects that can be set to a Cell(Cell.Value).
  4168. And it can also be array of such kind of values, or a Range, Name, ReferredArea.
  4169. Getting this property before setting will make the function be calculated by the default calculation engine of Aspose.Cells and the calculated value will be returned.
  4170. </remarks>
  4171. </member>
  4172. <member name="P:Aspose.Cells.CalculationData.Workbook">
  4173. <summary>
  4174. Gets the Workbook object where the function is in.
  4175. </summary>
  4176. </member>
  4177. <member name="P:Aspose.Cells.CalculationData.Worksheet">
  4178. <summary>
  4179. Gets the Worksheet object where the function is in.
  4180. </summary>
  4181. </member>
  4182. <member name="P:Aspose.Cells.CalculationData.CellRow">
  4183. <summary>
  4184. Gets the row index of the cell where the function is in.
  4185. </summary>
  4186. </member>
  4187. <member name="P:Aspose.Cells.CalculationData.CellColumn">
  4188. <summary>
  4189. Gets the column index of the cell where the function is in.
  4190. </summary>
  4191. </member>
  4192. <member name="P:Aspose.Cells.CalculationData.Cell">
  4193. <summary>
  4194. Gets the Cell object where the function is in.
  4195. </summary>
  4196. </member>
  4197. <member name="P:Aspose.Cells.CalculationData.FunctionName">
  4198. <summary>
  4199. Gets the function name to be calculated.
  4200. </summary>
  4201. </member>
  4202. <member name="P:Aspose.Cells.CalculationData.ParamCount">
  4203. <summary>
  4204. Gets the count of parameters
  4205. </summary>
  4206. </member>
  4207. <member name="T:Aspose.Cells.GlobalizationSettings">
  4208. <summary>
  4209. Represents the globalization settings.
  4210. </summary>
  4211. </member>
  4212. <member name="M:Aspose.Cells.GlobalizationSettings.GetPivotTotalName">
  4213. <summary>
  4214. Gets the name of "Total" label in the PivotTable.
  4215. You need to override this method when the PivotTable contains two or more PivotFields in the data area.
  4216. </summary>
  4217. <returns>The name of "Total" label</returns>
  4218. </member>
  4219. <member name="M:Aspose.Cells.GlobalizationSettings.GetPivotGrandTotalName">
  4220. <summary>
  4221. Gets the name of "Grand Total" label in the PivotTable.
  4222. </summary>
  4223. <returns>The name of "Grand Total" label</returns>
  4224. </member>
  4225. <member name="M:Aspose.Cells.GlobalizationSettings.GetMultipleItemsName">
  4226. <summary>
  4227. Gets the name of "(Multiple Items)" label in the PivotTable.
  4228. </summary>
  4229. <returns>The name of "(Multiple Items)" label</returns>
  4230. </member>
  4231. <member name="M:Aspose.Cells.GlobalizationSettings.GetAllName">
  4232. <summary>
  4233. Gets the name of "(All)" label in the PivotTable.
  4234. </summary>
  4235. <returns>The name of "(All)" label</returns>
  4236. </member>
  4237. <member name="M:Aspose.Cells.GlobalizationSettings.GetColumnLablesName">
  4238. <summary>
  4239. Gets the name of "Column Labels" label in the PivotTable.
  4240. </summary>
  4241. <returns>The name of column labels</returns>
  4242. <remarks>
  4243. NOTE: This member is now obsolete. Instead,
  4244. please use GlobalizationSettings.GetColumnLabelsOfPivotTable() method.
  4245. This property will be removed 12 months later since September 2020.
  4246. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  4247. </member>
  4248. <member name="M:Aspose.Cells.GlobalizationSettings.GetRowLablesName">
  4249. <summary>
  4250. Gets the name of "Row Labels" label in the PivotTable.
  4251. </summary>
  4252. <returns>The name of row labels</returns>
  4253. <remarks>
  4254. NOTE: This member is now obsolete. Instead,
  4255. please use GlobalizationSettings.GetRowLabelsOfPivotTable() method.
  4256. This property will be removed 12 months later since September 2020.
  4257. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  4258. </member>
  4259. <member name="M:Aspose.Cells.GlobalizationSettings.GetColumnLabelsOfPivotTable">
  4260. <summary>
  4261. Gets the name of "Column Labels" label in the PivotTable.
  4262. </summary>
  4263. <returns>The name of column labels</returns>
  4264. </member>
  4265. <member name="M:Aspose.Cells.GlobalizationSettings.GetRowLabelsNameOfPivotTable">
  4266. <summary>
  4267. Gets the name of "Row Labels" label in the PivotTable.
  4268. </summary>
  4269. <returns>The name of row labels</returns>
  4270. </member>
  4271. <member name="M:Aspose.Cells.GlobalizationSettings.GetEmptyDataName">
  4272. <summary>
  4273. Gets the name of "(blank)" label in the PivotTable.
  4274. </summary>
  4275. <returns>The name of empty data</returns>
  4276. </member>
  4277. <member name="M:Aspose.Cells.GlobalizationSettings.GetSubTotalName(Aspose.Cells.Pivot.PivotFieldSubtotalType)">
  4278. <summary>
  4279. Gets the name of <see cref="T:Aspose.Cells.Pivot.PivotFieldSubtotalType" /> type in the PivotTable.
  4280. </summary>
  4281. <param name="subTotalType">The <see cref="T:Aspose.Cells.Pivot.PivotFieldSubtotalType" /> type</param>
  4282. <returns>The name of <see cref="T:Aspose.Cells.Pivot.PivotFieldSubtotalType" /> type</returns>
  4283. </member>
  4284. <member name="M:Aspose.Cells.GlobalizationSettings.GetTotalName(Aspose.Cells.ConsolidationFunction)">
  4285. <summary>
  4286. Gets the total name of the function.
  4287. </summary>
  4288. <param name="functionType">The function type.</param>
  4289. <returns>The total name of the function.</returns>
  4290. </member>
  4291. <member name="M:Aspose.Cells.GlobalizationSettings.GetGrandTotalName(Aspose.Cells.ConsolidationFunction)">
  4292. <summary>
  4293. Gets the grand total name of the function.
  4294. </summary>
  4295. <param name="functionType">The function type.</param>
  4296. <returns>The grand total name of the function.</returns>
  4297. </member>
  4298. <member name="M:Aspose.Cells.GlobalizationSettings.GetOtherName">
  4299. <summary>
  4300. Gets the name of "Other" labels for Pie charts.
  4301. </summary>
  4302. <returns>
  4303. </returns>
  4304. </member>
  4305. <member name="M:Aspose.Cells.GlobalizationSettings.GetTableRowTypeOfHeaders">
  4306. <summary>
  4307. Gets the type name of table rows that consists of the table header.
  4308. Default is "Headers": "#Headers" denotes the table header.
  4309. </summary>
  4310. <returns>the type name of table rows</returns>
  4311. </member>
  4312. <member name="M:Aspose.Cells.GlobalizationSettings.GetTableRowTypeOfData">
  4313. <summary>
  4314. Gets the type name of table rows that consists of data region of referenced table.
  4315. Default is "Data": "#Data" denotes the data region of the table.
  4316. </summary>
  4317. <returns>the type name of table rows</returns>
  4318. </member>
  4319. <member name="M:Aspose.Cells.GlobalizationSettings.GetTableRowTypeOfAll">
  4320. <summary>
  4321. Gets the type name of table rows that consists of all rows in referenced table.
  4322. Default is "All": "#All" denotes all rows in referenced table.
  4323. </summary>
  4324. <returns>the type name of table rows</returns>
  4325. </member>
  4326. <member name="M:Aspose.Cells.GlobalizationSettings.GetTableRowTypeOfTotals">
  4327. <summary>
  4328. Gets the type name of table rows that consists of the total row of referenced table.
  4329. Default is "Totals": "#Totals" denotes the total row of referenced table.
  4330. </summary>
  4331. <returns>the type name of table rows</returns>
  4332. </member>
  4333. <member name="M:Aspose.Cells.GlobalizationSettings.GetTableRowTypeOfCurrent">
  4334. <summary>
  4335. Gets the type name of table rows that consists of the current row in referenced table.
  4336. Default is "This Row": "#This Row" denotes the current row in referenced table.
  4337. </summary>
  4338. <returns>the type name of table rows</returns>
  4339. </member>
  4340. <member name="M:Aspose.Cells.GlobalizationSettings.GetErrorValueString(System.String)">
  4341. <summary>
  4342. Gets the display string value for cell's error value
  4343. </summary>
  4344. <param name="err">error values such as #VALUE!,#NAME?</param>
  4345. <returns>Default returns the error value itself</returns>
  4346. </member>
  4347. <member name="M:Aspose.Cells.GlobalizationSettings.GetBooleanValueString(System.Boolean)">
  4348. <summary>
  4349. Gets the display string value for cell's boolean value
  4350. </summary>
  4351. <param name="bv">boolean value</param>
  4352. <returns>Default returns "TRUE" for true value and "FALSE" for false value.</returns>
  4353. </member>
  4354. <member name="M:Aspose.Cells.GlobalizationSettings.GetLocalFunctionName(System.String)">
  4355. <summary>
  4356. Gets the locale dependent function name according to given standard function name.
  4357. </summary>
  4358. <param name="standardName">Standard(en-US locale) function name.</param>
  4359. <returns>Locale dependent function name. The locale was specified by the Workbook for which this settings is used.</returns>
  4360. </member>
  4361. <member name="M:Aspose.Cells.GlobalizationSettings.GetStandardFunctionName(System.String)">
  4362. <summary>
  4363. Gets the standard function name according to given locale dependent function name.
  4364. </summary>
  4365. <param name="localName">Locale dependent function name. The locale was specified by the Workbook for which this settings is used.</param>
  4366. <returns>Standard(en-US locale) function name.</returns>
  4367. </member>
  4368. <member name="M:Aspose.Cells.GlobalizationSettings.GetLocalBuiltInName(System.String)">
  4369. <summary>
  4370. Gets the locale dependent text for built-in Name according to given standard text.
  4371. </summary>
  4372. <param name="standardName">Standard(en-US locale) text of built-in Name.</param>
  4373. <returns>Locale dependent text. The locale was specified by the Workbook for which this settings is used.</returns>
  4374. </member>
  4375. <member name="M:Aspose.Cells.GlobalizationSettings.GetStandardBuiltInName(System.String)">
  4376. <summary>
  4377. Gets the standard text of built-in Name according to given locale dependent text.
  4378. </summary>
  4379. <param name="localName">Locale dependent text of built-in Name. The locale was specified by the Workbook for which this settings is used.</param>
  4380. <returns>Standard(en-US locale) text.</returns>
  4381. </member>
  4382. <member name="M:Aspose.Cells.GlobalizationSettings.GetStandardHeaderFooterFontStyleName(System.String)">
  4383. <summary>
  4384. Gets standard English font style name(Regular, Bold, Italic) for Header/Footer according to given locale font style name.
  4385. </summary>
  4386. <param name="localfontStyleName">Locale font style name for Header/Footer.</param>
  4387. <returns>Standard English font style name(Regular, Bold, Italic)</returns>
  4388. </member>
  4389. <member name="P:Aspose.Cells.GlobalizationSettings.ListSeparator">
  4390. <summary>
  4391. Gets the separator for list, parameters of function, ...etc.
  4392. </summary>
  4393. </member>
  4394. <member name="P:Aspose.Cells.GlobalizationSettings.RowSeparatorOfFormulaArray">
  4395. <summary>
  4396. Gets the separator for rows in array data in formula.
  4397. </summary>
  4398. </member>
  4399. <member name="P:Aspose.Cells.GlobalizationSettings.ColumnSeparatorOfFormulaArray">
  4400. <summary>
  4401. Gets the separator for the items in array's row data in formula.
  4402. </summary>
  4403. </member>
  4404. <member name="T:Aspose.Cells.Cell">
  4405. <summary>
  4406. Encapsulates the object that represents a single Workbook cell.
  4407. </summary>
  4408. <example>
  4409. <code>
  4410. [C#]
  4411. Workbook excel = new Workbook();
  4412. Cells cells = excel.Worksheets[0].Cells;
  4413. //Put a string into a cell
  4414. Cell cell = cells[0, 0];
  4415. cell.PutValue("Hello");
  4416. string first = cell.StringValue;
  4417. //Put an integer into a cell
  4418. cell = cells["B1"];
  4419. cell.PutValue(12);
  4420. int second = cell.IntValue;
  4421. //Put a double into a cell
  4422. cell = cells[0, 2];
  4423. cell.PutValue(-1.234);
  4424. double third = cell.DoubleValue;
  4425. //Put a formula into a cell
  4426. cell = cells["D1"];
  4427. cell.Formula = "=B1 + C1";
  4428. //Put a combined formula: "sum(average(b1,c1), b1)" to cell at b2
  4429. cell = cells["b2"];
  4430. cell.Formula = "=sum(average(b1,c1), b1)";
  4431. //Set style of a cell
  4432. Style style = cell.GetStyle();
  4433. //Set background color
  4434. style.BackgroundColor = Color.Yellow;
  4435. //Set format of a cell
  4436. style.Font.Name = "Courier New";
  4437. style.VerticalAlignment = TextAlignmentType.Top;
  4438. cell.SetStyle(style);
  4439. [Visual Basic]
  4440. Dim excel as Workbook = new Workbook()
  4441. Dim cells as Cells = exce.Worksheets(0).Cells
  4442. 'Put a string into a cell
  4443. Dim cell as Cell = cells(0, 0)
  4444. cell.PutValue("Hello")
  4445. Dim first as String = cell.StringValue
  4446. //Put an integer into a cell
  4447. cell = cells("B1")
  4448. cell.PutValue(12)
  4449. Dim second as Integer = cell.IntValue
  4450. //Put a double into a cell
  4451. cell = cells(0, 2)
  4452. cell.PutValue(-1.234)
  4453. Dim third as Double = cell.DoubleValue
  4454. //Put a formula into a cell
  4455. cell = cells("D1")
  4456. cell.Formula = "=B1 + C1"
  4457. //Put a combined formula: "sum(average(b1,c1), b1)" to cell at b2
  4458. cell = cells("b2")
  4459. cell.Formula = "=sum(average(b1,c1), b1)"
  4460. //Set style of a cell
  4461. Dim style as Style = cell.GetStyle()
  4462. //Set background color
  4463. style.BackgroundColor = Color.Yellow
  4464. //Set font of a cell
  4465. style.Font.Name = "Courier New"
  4466. style.VerticalAlignment = TextAlignmentType.Top
  4467. cell.SetStyle(style)
  4468. </code>
  4469. </example>
  4470. </member>
  4471. <member name="M:Aspose.Cells.Cell.Calculate(Aspose.Cells.CalculationOptions)">
  4472. <summary>
  4473. Calculates the formula of the cell.
  4474. </summary>
  4475. <param name="options">Options for calculation</param>
  4476. </member>
  4477. <member name="M:Aspose.Cells.Cell.Calculate(System.Boolean,Aspose.Cells.ICustomFunction)">
  4478. <summary>
  4479. Calculates the formula of the cell.
  4480. </summary>
  4481. <param name="ignoreError">Indicates if hide the error in calculating formulas.
  4482. The error may be unsupported function, external links, etc.</param>
  4483. <param name="customFunction">The custom formula calculation functions to extend the calculation engine.</param>
  4484. <remarks>
  4485. NOTE: This member is now obsolete. Instead,
  4486. please use Calculate(CalculationOptions) method.
  4487. This method will be removed 12 months later since August 2020.
  4488. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  4489. </member>
  4490. <member name="M:Aspose.Cells.Cell.PutValue(System.Boolean)">
  4491. <summary>
  4492. Puts an boolean value into the cell.
  4493. </summary>
  4494. <param name="boolValue">
  4495. </param>
  4496. </member>
  4497. <member name="M:Aspose.Cells.Cell.PutValue(System.Int32)">
  4498. <summary>
  4499. Puts an integer value into the cell.
  4500. </summary>
  4501. <param name="intValue">Input value</param>
  4502. </member>
  4503. <member name="M:Aspose.Cells.Cell.PutValue(System.Double)">
  4504. <summary>
  4505. Puts a double value into the cell.
  4506. </summary>
  4507. <param name="doubleValue">Input value</param>
  4508. </member>
  4509. <member name="M:Aspose.Cells.Cell.PutValue(System.String,System.Boolean,System.Boolean)">
  4510. <summary>
  4511. Puts a value into the cell, if appropriate the value will be converted to other data type and cell's number format will be reset.
  4512. </summary>
  4513. <param name="stringValue">Input value</param>
  4514. <param name="isConverted">True: converted to other data type if appropriate.</param>
  4515. <param name="setStyle">True: set the number format to cell's style when converting to other data type</param>
  4516. </member>
  4517. <member name="M:Aspose.Cells.Cell.PutValue(System.String,System.Boolean)">
  4518. <summary>
  4519. Puts a string value into the cell and converts the value to other data type if appropriate.
  4520. </summary>
  4521. <param name="stringValue">Input value</param>
  4522. <param name="isConverted">True: converted to other data type if appropriate.</param>
  4523. </member>
  4524. <member name="M:Aspose.Cells.Cell.PutValue(System.String)">
  4525. <summary>
  4526. Puts a string value into the cell.
  4527. </summary>
  4528. <param name="stringValue">Input value</param>
  4529. </member>
  4530. <member name="M:Aspose.Cells.Cell.PutValue(System.DateTime)">
  4531. <summary>
  4532. Puts a DateTime value into the cell.
  4533. </summary>
  4534. <param name="dateTime">Input value</param>
  4535. </member>
  4536. <member name="M:Aspose.Cells.Cell.PutValue(System.Object)">
  4537. <summary>
  4538. Puts an object value into the cell.
  4539. </summary>
  4540. <param name="objectValue">input value</param>
  4541. </member>
  4542. <member name="M:Aspose.Cells.Cell.GetStringValue(Aspose.Cells.CellValueFormatStrategy)">
  4543. <summary>
  4544. Gets the string value by specific formatted strategy.
  4545. </summary>
  4546. <param name="formatStrategy">The formatted strategy.</param>
  4547. <returns>
  4548. </returns>
  4549. </member>
  4550. <member name="M:Aspose.Cells.Cell.GetWidthOfValue">
  4551. <summary>
  4552. Gets the width of the value in unit of pixels.
  4553. </summary>
  4554. <returns>
  4555. </returns>
  4556. </member>
  4557. <member name="M:Aspose.Cells.Cell.GetHeightOfValue">
  4558. <summary>
  4559. Gets the height of the value in unit of pixels.
  4560. </summary>
  4561. <returns>
  4562. </returns>
  4563. </member>
  4564. <member name="M:Aspose.Cells.Cell.GetDisplayStyle">
  4565. <summary>
  4566. Gets the display style of the cell.
  4567. If the cell is conditional formatted, the display style is not same as the cell.GetStyle().
  4568. </summary>
  4569. </member>
  4570. <member name="M:Aspose.Cells.Cell.GetDisplayStyle(System.Boolean)">
  4571. <summary>
  4572. Gets the display style of the cell.
  4573. If the cell is conditional formatted, the display style is not same as the cell.GetStyle().
  4574. </summary>
  4575. <param name="includeMergedBorders">Indicates whether checking borders of the merged cells.
  4576. </param>
  4577. </member>
  4578. <member name="M:Aspose.Cells.Cell.GetFormatConditions">
  4579. <summary>
  4580. Gets format conditions which applies to this cell.
  4581. </summary>
  4582. <returns>Returns <see cref="T:Aspose.Cells.FormatConditionCollection" /> object</returns>
  4583. </member>
  4584. <member name="M:Aspose.Cells.Cell.GetStyle">
  4585. <summary>
  4586. Gets the cell style.
  4587. </summary>
  4588. <returns>Style object.</returns>
  4589. <remarks>To change the style of the cell, please call Cell.SetStyle() method after changing the style.
  4590. </remarks>
  4591. </member>
  4592. <member name="M:Aspose.Cells.Cell.GetStyle(System.Boolean)">
  4593. <summary>
  4594. If checkBorders is true, check whether other cells' borders will effect the style of this cell.
  4595. </summary>
  4596. <param name="checkBorders">Check other cells' borders</param>
  4597. <returns>Style object.</returns>
  4598. <remarks>
  4599. </remarks>
  4600. </member>
  4601. <member name="M:Aspose.Cells.Cell.SetStyle(Aspose.Cells.Style)">
  4602. <summary>
  4603. Sets the cell style.
  4604. </summary>
  4605. <param name="style">The cell style.</param>
  4606. <remarks>
  4607. If the border settings are changed, the border of adjust cells will be updated too.
  4608. </remarks>
  4609. </member>
  4610. <member name="M:Aspose.Cells.Cell.SetStyle(Aspose.Cells.Style,System.Boolean)">
  4611. <summary>
  4612. Apply the cell style.
  4613. </summary>
  4614. <param name="style">The cell style.</param>
  4615. <param name="explicitFlag">True, only overwriting formatting which is explicitly set.
  4616. </param>
  4617. </member>
  4618. <member name="M:Aspose.Cells.Cell.SetStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  4619. <summary>
  4620. Apply the cell style.
  4621. </summary>
  4622. <param name="style">The cell style.</param>
  4623. <param name="flag">The style flag.</param>
  4624. </member>
  4625. <member name="M:Aspose.Cells.Cell.SetFormula(System.String,System.Object)">
  4626. <summary>
  4627. Set the formula and the value of the formula.
  4628. </summary>
  4629. <param name="formula">The formula.</param>
  4630. <param name="value">The value of the formula.</param>
  4631. </member>
  4632. <member name="M:Aspose.Cells.Cell.GetFormula(System.Boolean,System.Boolean)">
  4633. <summary>
  4634. Get the formula of this cell.
  4635. </summary>
  4636. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  4637. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  4638. <returns>the formula of this cell.</returns>
  4639. </member>
  4640. <member name="M:Aspose.Cells.Cell.SetFormula(System.String,System.Boolean,System.Boolean,System.Object)">
  4641. <summary>
  4642. Set the formula and the value of the formula.
  4643. </summary>
  4644. <param name="formula">The formula.</param>
  4645. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  4646. <param name="isLocal">Whether the formula is locale formatted.</param>
  4647. <param name="value">The value of the formula.</param>
  4648. <remarks>
  4649. NOTE: This class is now obsolete. Instead,
  4650. please use Cell.SetFormula(string,FormulaParseOptions,object).
  4651. This property will be removed 12 months later since December 2019.
  4652. Aspose apologizes for any inconvenience you may have experienced.
  4653. </remarks>
  4654. </member>
  4655. <member name="M:Aspose.Cells.Cell.SetFormula(System.String,Aspose.Cells.FormulaParseOptions,System.Object)">
  4656. <summary>
  4657. Set the formula and the value of the formula.
  4658. </summary>
  4659. <param name="formula">The formula.</param>
  4660. <param name="options">Options for parsing the formula.</param>
  4661. <param name="value">The value of the formula.</param>
  4662. </member>
  4663. <member name="M:Aspose.Cells.Cell.SetArrayFormula(System.String,System.Int32,System.Int32,System.Boolean,System.Boolean)">
  4664. <summary>
  4665. Sets an array formula to a range of cells.
  4666. </summary>
  4667. <param name="arrayFormula">Array formula.</param>
  4668. <param name="rowNumber">Number of rows to populate result of the array formula.</param>
  4669. <param name="columnNumber">Number of columns to populate result of the array formula.</param>
  4670. <param name="isR1C1">whether the formula is R1C1 formula</param>
  4671. <param name="isLocal">whether the formula is locale formatted</param>
  4672. <remarks>
  4673. NOTE: This class is now obsolete. Instead,
  4674. please use Cell.SetArrayFormula(string,int,int,FormulaParseOptions).
  4675. This property will be removed 12 months later since December 2019.
  4676. Aspose apologizes for any inconvenience you may have experienced.
  4677. </remarks>
  4678. </member>
  4679. <member name="M:Aspose.Cells.Cell.SetArrayFormula(System.String,System.Int32,System.Int32,Aspose.Cells.FormulaParseOptions)">
  4680. <summary>
  4681. Sets an array formula to a range of cells.
  4682. </summary>
  4683. <param name="arrayFormula">Array formula.</param>
  4684. <param name="rowNumber">Number of rows to populate result of the array formula.</param>
  4685. <param name="columnNumber">Number of columns to populate result of the array formula.</param>
  4686. <param name="options">Options for parsing the formula.</param>
  4687. </member>
  4688. <member name="M:Aspose.Cells.Cell.SetSharedFormula(System.String,System.Int32,System.Int32,System.Boolean,System.Boolean)">
  4689. <summary>
  4690. Sets a formula to a range of cells.
  4691. </summary>
  4692. <param name="sharedFormula">Shared formula.</param>
  4693. <param name="rowNumber">Number of rows to populate the formula.</param>
  4694. <param name="columnNumber">Number of columns to populate the formula.</param>
  4695. <param name="isR1C1">whether the formula is R1C1 formula</param>
  4696. <param name="isLocal">whether the formula is locale formatted</param>
  4697. <remarks>
  4698. NOTE: This class is now obsolete. Instead,
  4699. please use Cell.SetSharedFormula(string,int,int,FormulaParseOptions).
  4700. This property will be removed 12 months later since December 2019.
  4701. Aspose apologizes for any inconvenience you may have experienced.
  4702. </remarks>
  4703. </member>
  4704. <member name="M:Aspose.Cells.Cell.SetSharedFormula(System.String,System.Int32,System.Int32,Aspose.Cells.FormulaParseOptions)">
  4705. <summary>
  4706. Sets a formula to a range of cells.
  4707. </summary>
  4708. <param name="sharedFormula">Shared formula.</param>
  4709. <param name="rowNumber">Number of rows to populate the formula.</param>
  4710. <param name="columnNumber">Number of columns to populate the formula.</param>
  4711. <param name="options">Options for parsing the formula.</param>
  4712. </member>
  4713. <member name="M:Aspose.Cells.Cell.GetPrecedents">
  4714. <summary>
  4715. Gets all cells or ranges which this cell's formula depends on.
  4716. </summary>
  4717. <returns>
  4718. Returns all cells or ranges.
  4719. </returns>
  4720. <remarks>Returns null if this is not a formula cell.</remarks>
  4721. <example>
  4722. <code>
  4723. [C#]
  4724. Workbook workbook = new Workbook();
  4725. Cells cells = workbook.Worksheets[0].Cells;
  4726. cells["A1"].Formula = "= B1 + SUM(B1:B10) + [Book1.xls]Sheet1!A1";
  4727. ReferredAreas areas = cells["A1"].GetPrecedents();
  4728. for (int i = 0; i &lt; areas.Count; i++)
  4729. {
  4730. ReferredArea area = areas[i];
  4731. StringBuilder stringBuilder = new StringBuilder();
  4732. if (area.IsExternalLink)
  4733. {
  4734. stringBuilder.Append("[");
  4735. stringBuilder.Append(area.ExternalFileName);
  4736. stringBuilder.Append("]");
  4737. }
  4738. stringBuilder.Append(area.SheetName);
  4739. stringBuilder.Append("!");
  4740. stringBuilder.Append(CellsHelper.CellIndexToName(area.StartRow, area.StartColumn));
  4741. if (area.IsArea)
  4742. {
  4743. stringBuilder.Append(":");
  4744. stringBuilder.Append(CellsHelper.CellIndexToName(area.EndRow, area.EndColumn));
  4745. }
  4746. Console.WriteLine(stringBuilder.ToString());
  4747. }
  4748. workbook.Save(@"C:\Book2.xls");
  4749. [Visual Basic]
  4750. Dim workbook As Workbook = New Workbook()
  4751. Dim cells As Cells = workbook.Worksheets(0).Cells
  4752. cells("A1").Formula = "= B1 + SUM(B1:B10) + [Book1.xls]Sheet1!A1"
  4753. Dim areas As ReferredAreas = cells("A1").GetPrecedents()
  4754. For i As Integer = 0 To areas.Count - 1
  4755. Dim area As ReferredArea = areas(i)
  4756. Dim stringBuilder As StringBuilder = New StringBuilder()
  4757. If (area.IsExternalLink) Then
  4758. stringBuilder.Append("[")
  4759. stringBuilder.Append(area.ExternalFileName)
  4760. stringBuilder.Append("]")
  4761. End If
  4762. stringBuilder.Append(area.SheetName)
  4763. stringBuilder.Append("!")
  4764. stringBuilder.Append(CellsHelper.CellIndexToName(area.StartRow, area.StartColumn))
  4765. If (area.IsArea) Then
  4766. stringBuilder.Append(":")
  4767. stringBuilder.Append(CellsHelper.CellIndexToName(area.EndRow, area.EndColumn))
  4768. End If
  4769. Console.WriteLine(stringBuilder.ToString())
  4770. Next
  4771. workbook.Save("C:\Book2.xls")
  4772. </code>
  4773. </example>
  4774. </member>
  4775. <member name="M:Aspose.Cells.Cell.GetDependents(System.Boolean)">
  4776. <summary>
  4777. Get all cells which refer to the specific cell.
  4778. </summary>
  4779. <param name="isAll">Indicates whether check other worksheets</param>
  4780. </member>
  4781. <member name="M:Aspose.Cells.Cell.GetLeafs">
  4782. <summary>
  4783. Get all cells which will be updated when this cell is modified.
  4784. This method can only work after calling Workbook.CalculateFormula.
  4785. </summary>
  4786. </member>
  4787. <member name="M:Aspose.Cells.Cell.GetArrayRange">
  4788. <summary>
  4789. Gets the array range if the cell's formula is an array formula.
  4790. </summary>
  4791. <returns>
  4792. The array range.
  4793. </returns>
  4794. <remarks>Only applies when the cell's formula is an array formula</remarks>
  4795. </member>
  4796. <member name="M:Aspose.Cells.Cell.SetArrayFormula(System.String,System.Int32,System.Int32)">
  4797. <summary>
  4798. Sets an array formula to a range of cells.
  4799. </summary>
  4800. <param name="arrayFormula">Array formula.</param>
  4801. <param name="rowNumber">Number of rows to populate result of the array formula.</param>
  4802. <param name="columnNumber">Number of columns to populate result of the array formula.</param>
  4803. </member>
  4804. <member name="M:Aspose.Cells.Cell.SetSharedFormula(System.String,System.Int32,System.Int32)">
  4805. <summary>
  4806. Sets a formula to a range of cells.
  4807. </summary>
  4808. <param name="sharedFormula">Shared formula.</param>
  4809. <param name="rowNumber">Number of rows to populate the formula.</param>
  4810. <param name="columnNumber">Number of columns to populate the formula.</param>
  4811. <remarks>
  4812. </remarks>
  4813. </member>
  4814. <member name="M:Aspose.Cells.Cell.RemoveArrayFormula(System.Boolean)">
  4815. <summary>
  4816. Remove array formula.
  4817. </summary>
  4818. <param name="leaveNormalFormula">True represents converting the array formula to normal formula.</param>
  4819. </member>
  4820. <member name="M:Aspose.Cells.Cell.SetAddInFormula(System.String,System.String)">
  4821. <summary>
  4822. Sets an Add-In formula to the cell.
  4823. </summary>
  4824. <param name="addInFileName">Add-In file name.</param>
  4825. <param name="addInFunction">Add-In function name.</param>
  4826. <example>
  4827. <code>
  4828. [C#]
  4829. cells["h11"].SetAddInFormula("HRVSTTRK.xla", "=pct_overcut(F3:G3)");
  4830. cells["h12"].SetAddInFormula("HRVSTTRK.xla", "=pct_overcut()");
  4831. [Visual Basic]
  4832. cells("h11").SetAddInFormula("HRVSTTRK.xla", "=pct_overcut(F3:G3)")
  4833. cells("h12").SetAddInFormula("HRVSTTRK.xla", "=pct_overcut()")
  4834. </code>
  4835. </example>
  4836. <remarks>
  4837. Add-In file should be placed in the directory or sub-directory of Workbook Add-In library.
  4838. For example, file name can be "Eurotool.xla" or "solver\solver.xla".
  4839. NOTE: This class is now obsolete. Instead,
  4840. please use Cell.Formula/Cell.SetFormula() to set cell formula with the Add-In functions after registering it by WorksheetCollection.RegisterAddInFunction().
  4841. This property will be removed 12 months later since January 2019.
  4842. Aspose apologizes for any inconvenience you may have experienced.
  4843. </remarks>
  4844. </member>
  4845. <member name="M:Aspose.Cells.Cell.Copy(Aspose.Cells.Cell)">
  4846. <summary>
  4847. Copies data from a source cell.
  4848. </summary>
  4849. <param name="cell">Source <see cref="T:Aspose.Cells.Cell" /> object.</param>
  4850. </member>
  4851. <member name="M:Aspose.Cells.Cell.Characters(System.Int32,System.Int32)">
  4852. <summary>
  4853. Returns a Characters object that represents a range of characters within the cell text.
  4854. </summary>
  4855. <param name="startIndex">The index of the start of the character.</param>
  4856. <param name="length">The number of characters.</param>
  4857. <returns>Characters object.</returns>
  4858. <remarks>This method only works on cell with string value.</remarks>
  4859. <example>
  4860. <code>
  4861. [C#]
  4862. excel.Worksheets[0].Cells["A1"].PutValue("Helloworld");
  4863. excel.Worksheets[0].Cells["A1"].Characters(5, 5).Font.IsBold = true;
  4864. excel.Worksheets[0].Cells["A1"].Characters(5, 5).Font.Color = Color.Blue;
  4865. [Visual Basic]
  4866. excel.Worksheets(0).Cells("A1").PutValue("Helloworld")
  4867. excel.Worksheets(0).Cells("A1").Characters(5, 5).Font.IsBold = True
  4868. excel.Worksheets(0).Cells("A1").Characters(5, 5).Font.Color = Color.Blue
  4869. </code>
  4870. </example>
  4871. </member>
  4872. <member name="M:Aspose.Cells.Cell.IsRichText">
  4873. <summary>
  4874. Indicates whether the cell string value is a rich text.
  4875. </summary>
  4876. </member>
  4877. <member name="M:Aspose.Cells.Cell.GetCharacters">
  4878. <summary>
  4879. Returns all Characters objects
  4880. that represents a range of characters within the cell text.
  4881. </summary>
  4882. <returns>All Characters objects </returns>
  4883. </member>
  4884. <member name="M:Aspose.Cells.Cell.GetCharacters(System.Boolean)">
  4885. <summary>
  4886. Returns all Characters objects
  4887. that represents a range of characters within the cell text.
  4888. </summary>
  4889. <param name="flag">Indicates whether applying table style to the cell if the cell is in the table.</param>
  4890. <returns>All Characters objects </returns>
  4891. </member>
  4892. <member name="M:Aspose.Cells.Cell.SetCharacters(Aspose.Cells.FontSetting[])">
  4893. <summary>
  4894. Sets rich text format of the cell.
  4895. </summary>
  4896. <param name="characters">All Characters objects.</param>
  4897. </member>
  4898. <member name="M:Aspose.Cells.Cell.GetMergedRange">
  4899. <summary>
  4900. Returns a <see cref="T:Aspose.Cells.Range" /> object which represents a merged range.
  4901. </summary>
  4902. <returns>
  4903. <see cref="T:Aspose.Cells.Range" /> object. Null if this cell is not merged.</returns>
  4904. </member>
  4905. <member name="M:Aspose.Cells.Cell.GetHtmlString(System.Boolean)">
  4906. <summary>
  4907. Gets the html string which contains data and some formats in this cell.
  4908. </summary>
  4909. <param name="html5">Indicates whether the value is compatible for html5</param>
  4910. <returns>
  4911. </returns>
  4912. </member>
  4913. <member name="M:Aspose.Cells.Cell.ToString">
  4914. <summary>
  4915. Returns a string represents the current Cell object.
  4916. </summary>
  4917. <returns>
  4918. </returns>
  4919. </member>
  4920. <member name="M:Aspose.Cells.Cell.Equals(System.Object)">
  4921. <summary>
  4922. Checks whether this object refers to the same cell with another.
  4923. </summary>
  4924. <param name="obj">another object</param>
  4925. <returns>true if two objects refers to the same cell.</returns>
  4926. </member>
  4927. <member name="M:Aspose.Cells.Cell.GetHashCode">
  4928. <summary>
  4929. Serves as a hash function for a particular type.
  4930. </summary>
  4931. <returns>A hash code for current Cell object.</returns>
  4932. </member>
  4933. <member name="M:Aspose.Cells.Cell.Equals(Aspose.Cells.Cell)">
  4934. <summary>
  4935. Checks whether this object refers to the same cell with another cell object.
  4936. </summary>
  4937. <param name="cell">another cell object</param>
  4938. <returns>true if two cell objects refers to the same cell.</returns>
  4939. </member>
  4940. <member name="M:Aspose.Cells.Cell.GetConditionalFormattingResult">
  4941. <summary>
  4942. Get the result of the conditional formatting.
  4943. </summary>
  4944. <remarks>
  4945. Returns null if no conditional formatting is applied to this cell,
  4946. </remarks>
  4947. </member>
  4948. <member name="M:Aspose.Cells.Cell.GetValidation">
  4949. <summary>
  4950. Gets the validation applied to this cell.
  4951. </summary>
  4952. <returns>
  4953. </returns>
  4954. </member>
  4955. <member name="M:Aspose.Cells.Cell.GetValidationValue">
  4956. <summary>
  4957. Gets the value of validation which applied to this cell.
  4958. </summary>
  4959. <returns>
  4960. </returns>
  4961. </member>
  4962. <member name="M:Aspose.Cells.Cell.GetTable">
  4963. <summary>
  4964. Gets the table which contains this cell.
  4965. </summary>
  4966. <returns>
  4967. </returns>
  4968. </member>
  4969. <member name="P:Aspose.Cells.Cell.Worksheet">
  4970. <summary>
  4971. Gets the parent worksheet.
  4972. </summary>
  4973. </member>
  4974. <member name="P:Aspose.Cells.Cell.DateTimeValue">
  4975. <summary>
  4976. Gets the DateTime value contained in the cell.
  4977. </summary>
  4978. </member>
  4979. <member name="P:Aspose.Cells.Cell.Row">
  4980. <summary>
  4981. Gets row number (zero based) of the cell.
  4982. </summary>
  4983. <value>Cell row number</value>
  4984. </member>
  4985. <member name="P:Aspose.Cells.Cell.Column">
  4986. <summary>
  4987. Gets column number (zero based) of the cell.
  4988. </summary>
  4989. </member>
  4990. <member name="P:Aspose.Cells.Cell.IsFormula">
  4991. <summary>
  4992. Represents if the specified cell contains formula.
  4993. </summary>
  4994. </member>
  4995. <member name="P:Aspose.Cells.Cell.Type">
  4996. <summary>
  4997. Represents cell value type.
  4998. </summary>
  4999. </member>
  5000. <member name="P:Aspose.Cells.Cell.Name">
  5001. <summary>
  5002. Gets the name of the cell.
  5003. </summary>
  5004. <remarks>
  5005. A cell name includes its column letter and row number. For example, the name of a cell in row 0 and column 0 is A1.
  5006. </remarks>
  5007. </member>
  5008. <member name="P:Aspose.Cells.Cell.IsErrorValue">
  5009. <summary>
  5010. Checks if a formula can properly evaluate a result.
  5011. </summary>
  5012. <remarks>Only applies to formula cell.</remarks>
  5013. </member>
  5014. <member name="P:Aspose.Cells.Cell.StringValue">
  5015. <summary>
  5016. Gets the string value contained in the cell. If the type of this cell is string, then return the string value itself.
  5017. For other cell types, the formatted string value (formatted with the specified style of this cell) will be returned.
  5018. The formatted cell value is same with what you can get from excel when copying a cell as text(such as
  5019. copying cell to text editor or exporting to csv).
  5020. </summary>
  5021. </member>
  5022. <member name="P:Aspose.Cells.Cell.StringValueWithoutFormat">
  5023. <summary>
  5024. Gets cell's value as string without any format.
  5025. </summary>
  5026. </member>
  5027. <member name="P:Aspose.Cells.Cell.NumberCategoryType">
  5028. <summary>
  5029. Represents the category type of this cell's number formatting.
  5030. </summary>
  5031. </member>
  5032. <member name="P:Aspose.Cells.Cell.DisplayStringValue">
  5033. <summary>
  5034. Gets the formatted string value of this cell.
  5035. </summary>
  5036. </member>
  5037. <member name="P:Aspose.Cells.Cell.IntValue">
  5038. <summary>
  5039. Gets the integer value contained in the cell.
  5040. </summary>
  5041. </member>
  5042. <member name="P:Aspose.Cells.Cell.DoubleValue">
  5043. <summary>
  5044. Gets the double value contained in the cell.
  5045. </summary>
  5046. </member>
  5047. <member name="P:Aspose.Cells.Cell.FloatValue">
  5048. <summary>
  5049. Gets the float value contained in the cell.
  5050. </summary>
  5051. </member>
  5052. <member name="P:Aspose.Cells.Cell.BoolValue">
  5053. <summary>
  5054. Gets the boolean value contained in the cell.
  5055. </summary>
  5056. </member>
  5057. <member name="P:Aspose.Cells.Cell.SharedStyleIndex">
  5058. <summary>
  5059. Gets cell's shared style index in the style pool.
  5060. </summary>
  5061. </member>
  5062. <member name="P:Aspose.Cells.Cell.Formula">
  5063. <summary>
  5064. Gets or sets a formula of the <see cref="T:Aspose.Cells.Cell" />.
  5065. </summary>
  5066. <remarks>A formula string always begins with an equal sign (=).
  5067. And please always use comma(,) as parameters delimiter, such as "=SUM(A1, E1, H2)".
  5068. </remarks>
  5069. <example>
  5070. <code>
  5071. [C#]
  5072. Workbook excel = new Workbook();
  5073. Cells cells = excel.Worksheets[0];
  5074. cells["B6"].Formula = "=SUM(B2:B5, E1) + sheet1!A1";
  5075. [Visual Basic]
  5076. Dim excel As Workbook = New Workbook()
  5077. Dim cells As Cells = excel.Worksheets(0)
  5078. cells("B6").Formula = "=SUM(B2:B5, E1) + sheet1!A1"
  5079. </code>
  5080. </example>
  5081. </member>
  5082. <member name="P:Aspose.Cells.Cell.FormulaLocal">
  5083. <summary>
  5084. Get the locale formatted formula of the cell.
  5085. </summary>
  5086. </member>
  5087. <member name="P:Aspose.Cells.Cell.R1C1Formula">
  5088. <summary>
  5089. Gets or sets a R1C1 formula of the <see cref="T:Aspose.Cells.Cell" />.
  5090. </summary>
  5091. </member>
  5092. <member name="P:Aspose.Cells.Cell.ContainsExternalLink">
  5093. <summary>
  5094. Indicates whether this cell contains an external link.
  5095. Only applies when the cell is a formula cell.
  5096. </summary>
  5097. </member>
  5098. <member name="P:Aspose.Cells.Cell.IsArrayHeader">
  5099. <summary>
  5100. Indicates the cell's formula is and array formula
  5101. and it is the first cell of the array.
  5102. </summary>
  5103. </member>
  5104. <member name="P:Aspose.Cells.Cell.IsArrayFormula">
  5105. <summary>
  5106. Indicates whether the cell formula is an array formula.
  5107. </summary>
  5108. </member>
  5109. <member name="P:Aspose.Cells.Cell.IsInArray">
  5110. <summary>
  5111. Indicates whether the cell formula is an array formula.
  5112. </summary>
  5113. <remarks>
  5114. NOTE: This class is now obsolete. Instead,
  5115. please use Cell.IsArrayFormula to check whether the cell formula is an array formula.
  5116. This property will be removed 12 months later since May 2018.
  5117. Aspose apologizes for any inconvenience you may have experienced.
  5118. </remarks>
  5119. </member>
  5120. <member name="P:Aspose.Cells.Cell.IsSharedFormula">
  5121. <summary>
  5122. Indicates whether the cell formula is part of shared formula.
  5123. </summary>
  5124. </member>
  5125. <member name="P:Aspose.Cells.Cell.IsTableFormula">
  5126. <summary>
  5127. Indicates whether this cell is part of table formula.
  5128. </summary>
  5129. </member>
  5130. <member name="P:Aspose.Cells.Cell.IsInTable">
  5131. <summary>
  5132. Indicates whether this cell is part of table formula.
  5133. </summary>
  5134. <remarks>
  5135. NOTE: This class is now obsolete. Instead,
  5136. please use Cell.IsTableFormula to check whether the cell formula is part of table formula.
  5137. This property will be removed 12 months later since May 2018.
  5138. Aspose apologizes for any inconvenience you may have experienced.
  5139. </remarks>
  5140. </member>
  5141. <member name="P:Aspose.Cells.Cell.Value">
  5142. <summary>
  5143. Gets the value contained in this cell.
  5144. </summary>
  5145. <remarks>Possible type:
  5146. <p>null,</p><p>Boolean,</p><p>DateTime,</p><p>Double,</p><p>Integer</p><p>String.</p>
  5147. For int value, it may be returned as an Integer object or a Double object.
  5148. And there is no guarantee that the returned value will be kept as the same type of object always.
  5149. </remarks>
  5150. </member>
  5151. <member name="P:Aspose.Cells.Cell.IsStyleSet">
  5152. <summary>
  5153. Indicates if the cell's style is set. If return false, it means this cell has a default cell format.
  5154. </summary>
  5155. </member>
  5156. <member name="P:Aspose.Cells.Cell.IsMerged">
  5157. <summary>
  5158. Checks if a cell is part of a merged range or not.
  5159. </summary>
  5160. </member>
  5161. <member name="P:Aspose.Cells.Cell.HtmlString">
  5162. <summary>
  5163. Gets and sets the html string which contains data and some formats in this cell.
  5164. </summary>
  5165. </member>
  5166. <member name="T:Aspose.Cells.Cells">
  5167. <summary>
  5168. Encapsulates a collection of cell relevant objects, such as <see cref="T:Aspose.Cells.Cell" />, <see cref="T:Aspose.Cells.Row" />, ...etc.
  5169. </summary>
  5170. <example>
  5171. <code>
  5172. [C#]
  5173. Workbook excel = new Workbook();
  5174. Cells cells = excel.Worksheets[0].Cells;
  5175. //Set default row height
  5176. cells.StandardHeight = 20;
  5177. //Set row height
  5178. cells.SetRowHeight(2, 20.5);
  5179. //Set default colum width
  5180. cells.StandardWidth = 15;
  5181. //Set column width
  5182. cells.SetColumnWidth(3, 12.57);
  5183. //Merge cells
  5184. cells.Merge(5, 4, 2, 2);
  5185. //Import data
  5186. DataTable dt = new DataTable("Products");
  5187. dt.Columns.Add("Product_ID",typeof(Int32));
  5188. dt.Columns.Add("Product_Name",typeof(string));
  5189. dt.Columns.Add("Units_In_Stock",typeof(Int32));
  5190. DataRow dr = dt.NewRow();
  5191. dr[0] = 1;
  5192. dr[1] = "Aniseed Syrup";
  5193. dr[2] = 15;
  5194. dt.Rows.Add(dr);
  5195. dr = dt.NewRow();
  5196. dr[0] = 2;
  5197. dr[1] = "Boston Crab Meat";
  5198. dr[2] = 123;
  5199. dt.Rows.Add(dr);
  5200. cells.ImportDataTable(dt, true, 12, 12, 10, 10);
  5201. //Export data
  5202. DataTable outDataTable = cells.ExportDataTable(12, 12, 10, 10);
  5203. [Visual Basic]
  5204. Dim excel as Workbook = new Workbook()
  5205. Dim cells as Cells = excel.Worksheets(0).Cells
  5206. 'Set default row height
  5207. cells.StandardHeight = 20
  5208. 'Set row height
  5209. cells.SetRowHeight(2, 20.5)
  5210. 'Set default colum width
  5211. cells.StandardWidth = 15
  5212. 'Set column width
  5213. cells.SetColumnWidth(3, 12.57)
  5214. 'Merge cells
  5215. cells.Merge(5, 4, 2, 2)
  5216. 'Import data
  5217. Dim dt as DataTable = new DataTable("Employee")
  5218. dt.Columns.Add("Employee_ID",typeof(Int32))
  5219. dt.Columns.Add("Employee_Name",typeof(string))
  5220. dt.Columns.Add("Gender",typeof(string))
  5221. Dim dr as DataRow = dt.NewRow()
  5222. dr(0) = 1
  5223. dr(1) = "John Smith"
  5224. dr(2) = "Male"
  5225. dt.Rows.Add(dr)
  5226. dr = dt.NewRow()
  5227. dr(0) = 2
  5228. dr(1) = "Mary Miller"
  5229. dr(2) = "Female"
  5230. dt.Rows.Add(dr)
  5231. cells.ImportDataTable(dt, true, 12, 12, 10, 10)
  5232. 'Export data
  5233. Dim outDataTable as DataTable = cells.ExportDataTable(12, 12, 10, 10)
  5234. </code>
  5235. </example>
  5236. </member>
  5237. <member name="M:Aspose.Cells.Cells.Dispose">
  5238. <summary>
  5239. Performs application-defined tasks associated with freeing, releasing, or
  5240. resetting unmanaged resources.
  5241. </summary>
  5242. </member>
  5243. <member name="M:Aspose.Cells.Cells.GetEnumerator">
  5244. <summary>
  5245. Gets the cells enumerator.
  5246. </summary>
  5247. <returns>The cells enumerator</returns>
  5248. <remarks>When traversing elements by the returned Enumerator, the cells collection
  5249. should not be modified(such as operations that will cause new Cell/Row be instantiated or existing Cell/Row be deleted).
  5250. Otherwise the enumerator may not be able to traverse all cells correctly(some elements may be traversed repeatedly or skipped).</remarks>
  5251. </member>
  5252. <member name="M:Aspose.Cells.Cells.GetRowEnumerator">
  5253. <summary>
  5254. Gets the rows enumerator.
  5255. </summary>
  5256. <returns>The rows enumerator.</returns>
  5257. </member>
  5258. <member name="M:Aspose.Cells.Cells.GetCell(System.Int32,System.Int32)">
  5259. <summary>
  5260. Gets the <see cref="T:Aspose.Cells.Cell" /> element or null at the specified cell row index and column index.
  5261. </summary>
  5262. <param name="row">Row index</param>
  5263. <param name="column">Column index</param>
  5264. <returns>Return Cell object if a Cell object exists.
  5265. Return null if the cell does not exist.
  5266. </returns>
  5267. </member>
  5268. <member name="M:Aspose.Cells.Cells.GetRow(System.Int32)">
  5269. <summary>
  5270. Gets the <see cref="T:Aspose.Cells.Row" /> element at the specified cell row index.
  5271. </summary>
  5272. <param name="row">Row index</param>
  5273. <returns>
  5274. If the row object does exist return Row object, otherwise return null.
  5275. </returns>
  5276. </member>
  5277. <member name="M:Aspose.Cells.Cells.CheckCell(System.Int32,System.Int32)">
  5278. <summary>
  5279. Gets the <see cref="T:Aspose.Cells.Cell" /> element or null at the specified cell row index and column index.
  5280. </summary>
  5281. <param name="row">Row index</param>
  5282. <param name="column">Column index</param>
  5283. <returns>Return Cell object if a Cell object exists.
  5284. Return null if the cell does not exist.
  5285. </returns>
  5286. </member>
  5287. <member name="M:Aspose.Cells.Cells.CheckRow(System.Int32)">
  5288. <summary>
  5289. Gets the <see cref="T:Aspose.Cells.Row" /> element or at the specified cell row index.
  5290. </summary>
  5291. <param name="row">Row index</param>
  5292. <returns>
  5293. If the row object does exist return Row object, otherwise return null.
  5294. </returns>
  5295. </member>
  5296. <member name="M:Aspose.Cells.Cells.CheckColumn(System.Int32)">
  5297. <summary>
  5298. Gets the <see cref="T:Aspose.Cells.Column" /> element or null at the specified column index.
  5299. </summary>
  5300. <param name="columnIndex">The column index.</param>
  5301. <returns>The Column object.</returns>
  5302. </member>
  5303. <member name="M:Aspose.Cells.Cells.IsRowHidden(System.Int32)">
  5304. <summary>
  5305. Checks whether a row at given index is hidden.
  5306. </summary>
  5307. <param name="rowIndex">row index</param>
  5308. <returns>true if the row is hidden</returns>
  5309. </member>
  5310. <member name="M:Aspose.Cells.Cells.IsColumnHidden(System.Int32)">
  5311. <summary>
  5312. Checks whether a column at given index is hidden.
  5313. </summary>
  5314. <param name="columnIndex">column index</param>
  5315. <returns>true if the column is hidden.</returns>
  5316. </member>
  5317. <member name="M:Aspose.Cells.Cells.AddRange(Aspose.Cells.Range)">
  5318. <summary>
  5319. Adds a range object reference to cells
  5320. </summary>
  5321. <param name="rangeObject">The range object will be contained in the cells</param>
  5322. </member>
  5323. <member name="M:Aspose.Cells.Cells.CreateRange(System.String,System.String)">
  5324. <summary>
  5325. Creates a <see cref="T:Aspose.Cells.Range" /> object from a range of cells.
  5326. </summary>
  5327. <param name="upperLeftCell">Upper left cell name.</param>
  5328. <param name="lowerRightCell">Lower right cell name.</param>
  5329. <returns>A <see cref="T:Aspose.Cells.Range" /> object</returns>
  5330. </member>
  5331. <member name="M:Aspose.Cells.Cells.CreateRange(System.Int32,System.Int32,System.Int32,System.Int32)">
  5332. <summary>
  5333. Creates a <see cref="T:Aspose.Cells.Range" /> object from a range of cells.
  5334. </summary>
  5335. <param name="firstRow">First row of this range</param>
  5336. <param name="firstColumn">First column of this range</param>
  5337. <param name="totalRows">Number of rows</param>
  5338. <param name="totalColumns">Number of columns</param>
  5339. <returns>A <see cref="T:Aspose.Cells.Range" /> object</returns>
  5340. </member>
  5341. <member name="M:Aspose.Cells.Cells.CreateRange(System.String)">
  5342. <summary>
  5343. Creates a <see cref="T:Aspose.Cells.Range" /> object from an address of the range.
  5344. </summary>
  5345. <param name="address">The address of the range.</param>
  5346. <returns>A <see cref="T:Aspose.Cells.Range" /> object</returns>
  5347. </member>
  5348. <member name="M:Aspose.Cells.Cells.CreateRange(System.Int32,System.Int32,System.Boolean)">
  5349. <summary>
  5350. Creates a <see cref="T:Aspose.Cells.Range" /> object from rows of cells or columns of cells.
  5351. </summary>
  5352. <param name="firstIndex">First row index or first column index, zero based.</param>
  5353. <param name="number">Total number of rows or columns, one based.</param>
  5354. <param name="isVertical">True - Range created from columns of cells. False - Range created from rows of cells. </param>
  5355. <returns>A <see cref="T:Aspose.Cells.Range" /> object.</returns>
  5356. </member>
  5357. <member name="M:Aspose.Cells.Cells.Clear">
  5358. <summary>
  5359. Clears all cell and row objects.
  5360. </summary>
  5361. </member>
  5362. <member name="M:Aspose.Cells.Cells.ExportDataTable(System.Int32,System.Int32,System.Int32,System.Int32)">
  5363. <summary>
  5364. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a <see cref="T:System.Data.DataTable" /> object.
  5365. </summary>
  5366. <example>
  5367. <code>
  5368. [C#]
  5369. string designerFile = MapPath("Designer") + "\\List.xls";
  5370. Workbook excel = new Workbook(designerFile);
  5371. Worksheet sheet = excel.Worksheets[0];
  5372. DataTable dt = sheet.Cells.ExportDataTable(6, 1, 69, 4);
  5373. this.DataGrid1.DataSource = dt;
  5374. this.DataGrid1.DataBind();
  5375. [Visual Basic]
  5376. Dim designerFile As String = MapPath("Designer") + "\List.xls"
  5377. Dim excel As excel = New excel(designerFile)
  5378. Dim sheet As Worksheet = excel.Worksheets(0)
  5379. Dim dt As DataTable = sheet.Cells.ExportDataTable(6, 1, 69, 4)
  5380. Me.DataGrid1.DataSource = dt
  5381. Me.DataGrid1.DataBind()
  5382. </code>
  5383. </example>
  5384. <param name="firstRow">The row number of the first cell to export out.</param>
  5385. <param name="firstColumn">The column number of the first cell to export out.</param>
  5386. <param name="totalRows">Number of rows to be imported.</param>
  5387. <param name="totalColumns">Number of columns to be imported.</param>
  5388. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  5389. <remarks>
  5390. If you use this method to export a block of data, please be sure that the data in a column
  5391. should be the same data type. Otherwise, use the <see cref="M:Aspose.Cells.Cells.ExportDataTableAsString(System.Int32,System.Int32,System.Int32,System.Int32)" /> method instead.
  5392. </remarks>
  5393. </member>
  5394. <member name="M:Aspose.Cells.Cells.ExportDataTable(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  5395. <summary>
  5396. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a <see cref="T:System.Data.DataTable" /> object.
  5397. </summary>
  5398. <param name="firstRow">The row number of the first cell to export out.</param>
  5399. <param name="firstColumn">The column number of the first cell to export out.</param>
  5400. <param name="totalRows">Number of rows to be imported.</param>
  5401. <param name="totalColumns">Number of columns to be imported.</param>
  5402. <param name="exportColumnName">Indicates whether the data in the first row are exported to the column name of the DataTable.</param>
  5403. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  5404. </member>
  5405. <member name="M:Aspose.Cells.Cells.ExportDataTableAsString(System.Int32,System.Int32,System.Int32,System.Int32)">
  5406. <summary>
  5407. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a <see cref="T:System.Data.DataTable" /> object.
  5408. </summary>
  5409. <param name="firstRow">The row number of the first cell to export out.</param>
  5410. <param name="firstColumn">The column number of the first cell to export out.</param>
  5411. <param name="totalRows">Number of rows to be imported.</param>
  5412. <param name="totalColumns">Number of columns to be imported.</param>
  5413. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  5414. <remarks>All data in the <see cref="T:Aspose.Cells.Cells" /> collection are converted to strings.</remarks>
  5415. </member>
  5416. <member name="M:Aspose.Cells.Cells.ExportDataTableAsString(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  5417. <summary>
  5418. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a <see cref="T:System.Data.DataTable" /> object.
  5419. </summary>
  5420. <param name="firstRow">The row number of the first cell to export out.</param>
  5421. <param name="firstColumn">The column number of the first cell to export out.</param>
  5422. <param name="totalRows">Number of rows to be imported.</param>
  5423. <param name="totalColumns">Number of columns to be imported.</param>
  5424. <param name="exportColumnName">Indicates whether the data in the first row are exported to the column name of the DataTable.</param>
  5425. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  5426. <remarks>All data in the <see cref="T:Aspose.Cells.Cells" /> collection are converted to strings.</remarks>
  5427. </member>
  5428. <member name="M:Aspose.Cells.Cells.ExportDataTable(System.Int32,System.Int32,System.Int32,System.Int32,Aspose.Cells.ExportTableOptions)">
  5429. <summary>
  5430. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a <see cref="T:System.Data.DataTable" /> object.
  5431. </summary>
  5432. <param name="firstRow">The row number of the first cell to export out.</param>
  5433. <param name="firstColumn">The column number of the first cell to export out.</param>
  5434. <param name="totalRows">Number of rows to be imported.</param>
  5435. <param name="totalColumns">Number of columns to be imported.</param>
  5436. <param name="options">All export table options</param>
  5437. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  5438. </member>
  5439. <member name="M:Aspose.Cells.Cells.ImportData(Aspose.Cells.ICellsDataTable,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  5440. <summary>
  5441. Import data from custom data table.
  5442. </summary>
  5443. <param name="table">The custom data table.</param>
  5444. <param name="firstRow">First row index.</param>
  5445. <param name="firstColumn">First column index.</param>
  5446. <param name="options">The import options</param>
  5447. <returns>
  5448. </returns>
  5449. </member>
  5450. <member name="M:Aspose.Cells.Cells.ImportData(System.Data.DataTable,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  5451. <summary>
  5452. Import data from custom data table.
  5453. </summary>
  5454. <param name="table">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5455. <param name="firstRow">First row index.</param>
  5456. <param name="firstColumn">First column index.</param>
  5457. <param name="options">The import options</param>
  5458. <returns>Total number of rows imported.</returns>
  5459. </member>
  5460. <member name="M:Aspose.Cells.Cells.ImportData(System.Data.DataView,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  5461. <summary>
  5462. Import data from data view.
  5463. </summary>
  5464. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  5465. <param name="firstRow">First row index.</param>
  5466. <param name="firstColumn">First column index.</param>
  5467. <param name="options">The import options</param>
  5468. <returns>Total number of rows imported.</returns>
  5469. </member>
  5470. <member name="M:Aspose.Cells.Cells.Import(System.Data.IDataReader,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  5471. <summary>
  5472. Import data from data view.
  5473. </summary>
  5474. <param name="dataReader">The <see cref="T:System.Data.IDataReader" /> object to be imported.</param>
  5475. <param name="firstRow">First row index.</param>
  5476. <param name="firstColumn">First column index.</param>
  5477. <param name="options">The import options</param>
  5478. <returns>Total number of rows imported.</returns>
  5479. <remarks>NOTE: This member is now obsolete. Instead,
  5480. please use Cells.ImportData(IDataReader,int,int,ImportTableOptions) method, instead.
  5481. This property will be removed 12 months later since December 2018.
  5482. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5483. </member>
  5484. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.String)">
  5485. <summary>
  5486. Imports a <see cref="T:System.Data.DataTable" /> object into a worksheet.
  5487. </summary>
  5488. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5489. <param name="isFieldNameShown">
  5490. Indicates whether the field name of the datatable will be imported to the first row.</param>
  5491. <param name="startCell">The name of start cell to insert the DataTable, such as "A2".</param>
  5492. <returns>Total number of rows imported</returns>
  5493. <remarks>NOTE: This member is now obsolete. Instead,
  5494. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5495. This property will be removed 12 months later since December 2018.
  5496. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5497. </member>
  5498. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Boolean,System.Boolean)">
  5499. <summary>
  5500. Imports a <see cref="T:System.Data.DataTable" /> object into a worksheet.
  5501. </summary>
  5502. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5503. <param name="isFieldNameShown">
  5504. Indicates whether the field name of the datatable will be imported to the first row.
  5505. Default is true.</param>
  5506. <param name="firstRow">The row number of the first cell to import.</param>
  5507. <param name="firstColumn">The column number of the first cell to import.</param>
  5508. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5509. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5510. <returns>Total number of rows imported</returns>
  5511. <remarks>NOTE: This member is now obsolete. Instead,
  5512. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5513. This property will be removed 12 months later since December 2018.
  5514. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5515. </member>
  5516. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32)">
  5517. <summary>
  5518. Imports a <see cref="T:System.Data.DataTable" /> object into a worksheet.
  5519. </summary>
  5520. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5521. <param name="isFieldNameShown">
  5522. Indicates whether the field name of the datatable will be imported to the first row.
  5523. Default is true.</param>
  5524. <param name="firstRow">The row number of the first cell to import.</param>
  5525. <param name="firstColumn">The column number of the first cell to import.</param>
  5526. <returns>Total number of rows imported</returns>
  5527. <remarks>NOTE: This member is now obsolete. Instead,
  5528. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5529. This property will be removed 12 months later since December 2018.
  5530. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5531. </member>
  5532. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  5533. <summary>
  5534. Imports a <see cref="T:System.Data.DataTable" /> object into a worksheet.
  5535. </summary>
  5536. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5537. <param name="isFieldNameShown">
  5538. Indicates whether the field name of the datatable will be imported to the first row.
  5539. Default is true.</param>
  5540. <param name="firstRow">The row number of the first cell to import.</param>
  5541. <param name="firstColumn">The column number of the first cell to import.</param>
  5542. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5543. <returns>Total number of rows imported</returns>
  5544. <remarks>NOTE: This member is now obsolete. Instead,
  5545. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5546. This property will be removed 12 months later since December 2018.
  5547. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5548. </member>
  5549. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
  5550. <summary>
  5551. Imports a <see cref="T:System.Data.DataTable" /> into a worksheet.
  5552. </summary>
  5553. <example>
  5554. <code>
  5555. [C#]
  5556. DataTable dt = new DataTable("Employee");
  5557. dt.Columns.Add("Employee_ID",typeof(Int32));
  5558. dt.Columns.Add("Employee_Name",typeof(string));
  5559. dt.Columns.Add("Gender",typeof(string));
  5560. DataRow dr = dt.NewRow();
  5561. dr[0] = 1;
  5562. dr[1] = "John Smith";
  5563. dr[2] = "Male";
  5564. dt.Rows.Add(dr);
  5565. dr = dt.NewRow();
  5566. dr[0] = 2;
  5567. dr[1] = "Mary Miller";
  5568. dr[2] = "Female";
  5569. dt.Rows.Add(dr);
  5570. cells.ImportDataTable(dt, true, 12, 12, 10, 10);
  5571. [Visual Basic]
  5572. Dim dt As DataTable = New DataTable("Employee")
  5573. dt.Columns.Add("Employee_ID",Type.GetType(Int32))
  5574. dt.Columns.Add("Employee_Name",Type.GetType(String))
  5575. dt.Columns.Add("Gender",Type.GetType(String))
  5576. Dim dr As DataRow = dt.NewRow()
  5577. dr(0) = 1
  5578. dr(1) = "John Smith"
  5579. dr(2) = "Male"
  5580. dt.Rows.Add(dr)
  5581. dr = dt.NewRow()
  5582. dr(0) = 2
  5583. dr(1) = "Mary Miller"
  5584. dr(2) = "Female"
  5585. dt.Rows.Add(dr)
  5586. cells.ImportDataTable(dt, True, 12, 12, 10, 10)
  5587. </code>
  5588. </example>
  5589. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5590. <param name="isFieldNameShown">
  5591. Indicates whether the field name of the datatable will be imported to the first row.
  5592. Default is true.
  5593. </param>
  5594. <param name="firstRow">The row number of the first cell to import in.</param>
  5595. <param name="firstColumn">The column number of the first cell to import in.</param>
  5596. <param name="totalRows">Number of rows to be imported.</param>
  5597. <param name="totalColumns">Number of columns to be imported.</param>
  5598. <returns>Total number of rows imported</returns>
  5599. <remarks>NOTE: This member is now obsolete. Instead,
  5600. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5601. This property will be removed 12 months later since December 2018.
  5602. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5603. </member>
  5604. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.SqlClient.SqlDataReader,System.Int32,System.Int32,System.Boolean)">
  5605. <summary>
  5606. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5607. </summary>
  5608. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5609. <param name="firstRow">The row number of the first cell to import in.</param>
  5610. <param name="firstColumn">The column number of the first cell to import in.</param>
  5611. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5612. <returns>Total number of rows imported.</returns>
  5613. <remarks>NOTE: This member is now obsolete. Instead,
  5614. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5615. This property will be removed 12 months later since December 2018.
  5616. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5617. </member>
  5618. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.SqlClient.SqlDataReader,System.Int32,System.Int32,System.Boolean)">
  5619. <summary>
  5620. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5621. </summary>
  5622. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5623. <param name="firstRow">The row number of the first cell to import in.</param>
  5624. <param name="firstColumn">The column number of the first cell to import in.</param>
  5625. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5626. <returns>Total number of rows imported.</returns>
  5627. <remarks>NOTE: This member is now obsolete. Instead,
  5628. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5629. This property will be removed 12 months later since December 2018.
  5630. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5631. </member>
  5632. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.SqlClient.SqlDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  5633. <summary>
  5634. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5635. </summary>
  5636. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5637. <param name="isFieldNameShown">
  5638. Indicates whether the field name of the data reader will be imported to the first row.
  5639. </param>
  5640. <param name="firstRow">The row number of the first cell to import in.</param>
  5641. <param name="firstColumn">The column number of the first cell to import in.</param>
  5642. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5643. <returns>Total number of rows imported.</returns>
  5644. <remarks>NOTE: This member is now obsolete. Instead,
  5645. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5646. This property will be removed 12 months later since December 2018.
  5647. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5648. </member>
  5649. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.SqlClient.SqlDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  5650. <summary>
  5651. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5652. </summary>
  5653. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5654. <param name="isFieldNameShown">
  5655. Indicates whether the field name of the data reader will be imported to the first row.
  5656. </param>
  5657. <param name="firstRow">The row number of the first cell to import in.</param>
  5658. <param name="firstColumn">The column number of the first cell to import in.</param>
  5659. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5660. <returns>Total number of rows imported.</returns>
  5661. <remarks>NOTE: This member is now obsolete. Instead,
  5662. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5663. This property will be removed 12 months later since December 2018.
  5664. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5665. </member>
  5666. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.SqlClient.SqlDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5667. <summary>
  5668. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5669. </summary>
  5670. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5671. <param name="isFieldNameShown">
  5672. Indicates whether the field name of the data reader will be imported to the first row.
  5673. </param>
  5674. <param name="firstRow">The row number of the first cell to import in.</param>
  5675. <param name="firstColumn">The column number of the first cell to import in.</param>
  5676. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5677. <param name="dateFormatString">Date format string for cells.</param>
  5678. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5679. <returns>Total number of rows imported.</returns>
  5680. <remarks>NOTE: This member is now obsolete. Instead,
  5681. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5682. This property will be removed 12 months later since December 2018.
  5683. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5684. </member>
  5685. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.SqlClient.SqlDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5686. <summary>
  5687. Imports data from a <see cref="T:System.Data.SqlClient.SqlDataReader" /> object.
  5688. </summary>
  5689. <param name="reader">The <see cref="T:System.Data.SqlClient.SqlDataReader" /> object which contains data.</param>
  5690. <param name="isFieldNameShown">
  5691. Indicates whether the field name of the data reader will be imported to the first row.
  5692. </param>
  5693. <param name="firstRow">The row number of the first cell to import in.</param>
  5694. <param name="firstColumn">The column number of the first cell to import in.</param>
  5695. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5696. <param name="dateFormatString">Date format string for cells.</param>
  5697. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5698. <returns>Total number of rows imported.</returns>
  5699. <remarks>NOTE: This member is now obsolete. Instead,
  5700. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5701. This property will be removed 12 months later since December 2018.
  5702. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5703. </member>
  5704. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.OleDb.OleDbDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5705. <summary>
  5706. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5707. </summary>
  5708. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5709. <param name="isFieldNameShown">
  5710. Indicates whether the field name of the data reader will be imported to the first row.
  5711. </param>
  5712. <param name="firstRow">The row number of the first cell to import in.</param>
  5713. <param name="firstColumn">The column number of the first cell to import in.</param>
  5714. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5715. <param name="dateFormatString">Date format string for cells.</param>
  5716. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5717. <returns>Total number of rows imported.</returns>
  5718. <remarks>NOTE: This member is now obsolete. Instead,
  5719. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5720. This property will be removed 12 months later since December 2018.
  5721. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5722. </member>
  5723. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.OleDb.OleDbDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5724. <summary>
  5725. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5726. </summary>
  5727. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5728. <param name="isFieldNameShown">
  5729. Indicates whether the field name of the data reader will be imported to the first row.
  5730. </param>
  5731. <param name="firstRow">The row number of the first cell to import in.</param>
  5732. <param name="firstColumn">The column number of the first cell to import in.</param>
  5733. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5734. <param name="dateFormatString">Date format string for cells.</param>
  5735. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5736. <returns>Total number of rows imported.</returns>
  5737. <remarks>NOTE: This member is now obsolete. Instead,
  5738. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5739. This property will be removed 12 months later since December 2018.
  5740. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5741. </member>
  5742. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.OleDb.OleDbDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  5743. <summary>
  5744. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5745. </summary>
  5746. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5747. <param name="isFieldNameShown">
  5748. Indicates whether the field name of the data reader will be imported to the first row.
  5749. </param>
  5750. <param name="firstRow">The row number of the first cell to import in.</param>
  5751. <param name="firstColumn">The column number of the first cell to import in.</param>
  5752. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5753. <returns>Total number of rows imported.</returns>
  5754. <remarks>NOTE: This member is now obsolete. Instead,
  5755. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5756. This property will be removed 12 months later since December 2018.
  5757. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5758. </member>
  5759. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.OleDb.OleDbDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  5760. <summary>
  5761. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5762. </summary>
  5763. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5764. <param name="isFieldNameShown">
  5765. Indicates whether the field name of the data reader will be imported to the first row.
  5766. </param>
  5767. <param name="firstRow">The row number of the first cell to import in.</param>
  5768. <param name="firstColumn">The column number of the first cell to import in.</param>
  5769. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5770. <returns>Total number of rows imported.</returns>
  5771. <remarks>NOTE: This member is now obsolete. Instead,
  5772. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5773. This property will be removed 12 months later since December 2018.
  5774. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5775. </member>
  5776. <member name="M:Aspose.Cells.Cells.ImportFromDataReader(System.Data.OleDb.OleDbDataReader,System.Int32,System.Int32,System.Boolean)">
  5777. <summary>
  5778. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5779. </summary>
  5780. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5781. <param name="firstRow">The row number of the first cell to import in.</param>
  5782. <param name="firstColumn">The column number of the first cell to import in.</param>
  5783. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5784. <returns>Total number of rows imported.</returns>
  5785. <remarks>NOTE: This member is now obsolete. Instead,
  5786. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5787. This property will be removed 12 months later since December 2018.
  5788. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5789. </member>
  5790. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.OleDb.OleDbDataReader,System.Int32,System.Int32,System.Boolean)">
  5791. <summary>
  5792. Imports data from a <see cref="T:System.Data.OleDb.OleDbDataReader" /> object.
  5793. </summary>
  5794. <param name="reader">The <see cref="T:System.Data.OleDb.OleDbDataReader" /> object which contains data.</param>
  5795. <param name="firstRow">The row number of the first cell to import in.</param>
  5796. <param name="firstColumn">The column number of the first cell to import in.</param>
  5797. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5798. <returns>Total number of rows imported.</returns>
  5799. <remarks>NOTE: This member is now obsolete. Instead,
  5800. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5801. This property will be removed 12 months later since December 2018.
  5802. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5803. </member>
  5804. <member name="M:Aspose.Cells.Cells.ImportData(System.Data.IDataReader,System.Int32,System.Int32)">
  5805. <summary>
  5806. Imports data from a <see cref="T:System.Data.IDataReader" /> object.
  5807. </summary>
  5808. <param name="reader">The <see cref="T:System.Data.IDataReader" /> object which contains data.</param>
  5809. <param name="firstRow">The row number of the first cell to import in.</param>
  5810. <param name="firstColumn">The column number of the first cell to import in.</param>
  5811. <returns>Total number of rows imported.</returns>
  5812. </member>
  5813. <member name="M:Aspose.Cells.Cells.ImportData(System.Data.IDataReader,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  5814. <summary>
  5815. Imports data from a <see cref="T:System.Data.IDataReader" /> object.
  5816. </summary>
  5817. <param name="reader">The <see cref="T:System.Data.IDataReader" /> object which contains data.</param>
  5818. <param name="firstRow">The row number of the first cell to import in.</param>
  5819. <param name="firstColumn">The column number of the first cell to import in.</param>
  5820. <param name="options">The options of importing table.</param>
  5821. <returns>Total number of rows imported.</returns>
  5822. </member>
  5823. <member name="M:Aspose.Cells.Cells.ImportDataReader(System.Data.IDataReader,System.Boolean,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5824. <summary>
  5825. Imports data from a <see cref="T:System.Data.IDataReader" /> object.
  5826. </summary>
  5827. <param name="reader">The <see cref="T:System.Data.IDataReader" /> object which contains data.</param>
  5828. <param name="isFieldNameShown">
  5829. Indicates whether the field name of the data reader will be imported to the first row.
  5830. </param>
  5831. <param name="firstRow">The row number of the first cell to import in.</param>
  5832. <param name="firstColumn">The column number of the first cell to import in.</param>
  5833. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5834. <param name="dateFormatString">Date format string for cells.</param>
  5835. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5836. <returns>Total number of rows imported.</returns>
  5837. <remarks>NOTE: This member is now obsolete. Instead,
  5838. please use Cells.ImportData(IDataReader, int, int,ImportTableOptions) method.
  5839. This property will be removed 12 months later since December 2018.
  5840. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5841. </member>
  5842. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.String)">
  5843. <summary>
  5844. Imports a <see cref="T:System.Data.DataTable" /> into a worksheet.
  5845. </summary>
  5846. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5847. <param name="isFieldNameShown">
  5848. Indicates whether the field name of the datatable will be imported to the first row.
  5849. Default is true.
  5850. </param>
  5851. <param name="firstRow">The row number of the first cell to import in.</param>
  5852. <param name="firstColumn">The column number of the first cell to import in.</param>
  5853. <param name="rowNumber">Number of rows to be imported.</param>
  5854. <param name="columnNumber">Number of columns to be imported.</param>
  5855. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5856. <param name="dateFormatString">Date format string for cells.</param>
  5857. <returns>Total number of rows imported.</returns>
  5858. <remarks>This method automatically format date time values.
  5859. However, if the DateTable is very huge, this method may slow down the program.
  5860. In this case, you'd better format the cell manually.</remarks>
  5861. <remarks>NOTE: This member is now obsolete. Instead,
  5862. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5863. This property will be removed 12 months later since December 2018.
  5864. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5865. </member>
  5866. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  5867. <summary>
  5868. Imports a <see cref="T:System.Data.DataTable" /> into a worksheet.
  5869. </summary>
  5870. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5871. <param name="isFieldNameShown">
  5872. Indicates whether the field name of the datatable will be imported to the first row.
  5873. Default is true.
  5874. </param>
  5875. <param name="firstRow">The row number of the first cell to import in.</param>
  5876. <param name="firstColumn">The column number of the first cell to import in.</param>
  5877. <param name="rowNumber">Number of rows to be imported.</param>
  5878. <param name="columnNumber">Number of columns to be imported.</param>
  5879. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5880. <param name="dateFormatString">Date format string for cells.</param>
  5881. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5882. <returns>Total number of rows imported.</returns>
  5883. <remarks>This method automatically format date time values.
  5884. However, if the DateTable is very huge, this method may slow down the program.
  5885. In this case, you'd better format the cell manually.</remarks>
  5886. <remarks>NOTE: This member is now obsolete. Instead,
  5887. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5888. This property will be removed 12 months later since December 2018.
  5889. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5890. </member>
  5891. <member name="M:Aspose.Cells.Cells.ImportDataRow(System.Data.DataRow,System.Int32,System.Int32)">
  5892. <summary>
  5893. Imports a DataRow into the Excel file.
  5894. </summary>
  5895. <param name="dataRow">DataRow object.</param>
  5896. <param name="row">Row index.</param>
  5897. <param name="firstColumn">First column index.</param>
  5898. </member>
  5899. <member name="M:Aspose.Cells.Cells.ImportDataTable(System.Data.DataTable,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  5900. <summary>
  5901. Imports a <see cref="T:System.Data.DataTable" /> into a worksheet.
  5902. </summary>
  5903. <param name="dataTable">The <see cref="T:System.Data.DataTable" /> object to be imported.</param>
  5904. <param name="isFieldNameShown">
  5905. Indicates whether the field name of the datatable will be imported to the first row.
  5906. Default is true.
  5907. </param>
  5908. <param name="firstRow">The row number of the first cell to import in.</param>
  5909. <param name="firstColumn">The column number of the first cell to import in.</param>
  5910. <param name="rowNumber">Number of rows to be imported.</param>
  5911. <param name="columnNumber">Number of columns to be imported.</param>
  5912. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  5913. <returns>Total number of rows imported.</returns>
  5914. <remarks>NOTE: This member is now obsolete. Instead,
  5915. please use Cells.ImportData(DataTable,int,int,ImportTableOptions) method, instead.
  5916. This property will be removed 12 months later since December 2018.
  5917. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  5918. </member>
  5919. <member name="M:Aspose.Cells.Cells.ImportTwoDimensionArray(System.Object[0:,0:],System.Int32,System.Int32)">
  5920. <summary>
  5921. Imports a two-dimension array of data into a worksheet.
  5922. </summary>
  5923. <param name="objArray">Two-dimension data array.</param>
  5924. <param name="firstRow">The row number of the first cell to import in.</param>
  5925. <param name="firstColumn">The column number of the first cell to import in.</param>
  5926. </member>
  5927. <member name="M:Aspose.Cells.Cells.ImportTwoDimensionArray(System.Object[0:,0:],System.Int32,System.Int32,System.Boolean)">
  5928. <summary>
  5929. Imports a two-dimension array of data into a worksheet.
  5930. </summary>
  5931. <param name="objArray">Two-dimension data array.</param>
  5932. <param name="firstRow">The row number of the first cell to import in.</param>
  5933. <param name="firstColumn">The column number of the first cell to import in.</param>
  5934. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5935. </member>
  5936. <member name="M:Aspose.Cells.Cells.ImportTwoDimensionArray(System.Object[0:,0:],System.Object[0:,0:],System.Int32,System.Int32,System.Boolean)">
  5937. <summary>
  5938. Imports a two-dimension array of data into a worksheet.
  5939. </summary>
  5940. <param name="objArray">Two-dimension data array.</param>
  5941. <param name="styles">Two-dimension data style.</param>
  5942. <param name="firstRow">The row number of the first cell to import in.</param>
  5943. <param name="firstColumn">The column number of the first cell to import in.</param>
  5944. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  5945. </member>
  5946. <member name="M:Aspose.Cells.Cells.ImportTwoDimensionArray(System.Object[0:,0:],System.Object[0:,0:],System.Int32,System.Int32,Aspose.Cells.TxtLoadOptions)">
  5947. <summary>
  5948. Imports a two-dimension array of data into a worksheet.
  5949. </summary>
  5950. <param name="objArray">Two-dimension data array.</param>
  5951. <param name="styles">Two-dimension data style.</param>
  5952. <param name="firstRow">The row number of the first cell to import in.</param>
  5953. <param name="firstColumn">The column number of the first cell to import in.</param>
  5954. <param name="opts">Options for converting string values</param>
  5955. </member>
  5956. <member name="M:Aspose.Cells.Cells.ImportObjectArray(System.Object[],System.Int32,System.Int32,System.Boolean)">
  5957. <summary>
  5958. Imports an array of data into a worksheet.
  5959. </summary>
  5960. <param name="objArray">Data array.</param>
  5961. <param name="firstRow">The row number of the first cell to import in.</param>
  5962. <param name="firstColumn">The column number of the first cell to import in.</param>
  5963. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  5964. </member>
  5965. <member name="M:Aspose.Cells.Cells.ImportArrayList(System.Collections.ArrayList,System.Int32,System.Int32,System.Boolean)">
  5966. <summary>
  5967. Imports an arraylist of data into a worksheet.
  5968. </summary>
  5969. <param name="arrayList">Data arraylist.</param>
  5970. <param name="firstRow">The row number of the first cell to import in.</param>
  5971. <param name="firstColumn">The column number of the first cell to import in.</param>
  5972. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  5973. </member>
  5974. <member name="M:Aspose.Cells.Cells.ImportObjectArray(System.Object[],System.Int32,System.Int32,System.Boolean,System.Int32)">
  5975. <summary>
  5976. Imports an array of data into a worksheet.
  5977. </summary>
  5978. <param name="objArray">Data array.</param>
  5979. <param name="firstRow">The row number of the first cell to import in.</param>
  5980. <param name="firstColumn">The column number of the first cell to import in.</param>
  5981. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  5982. <param name="skip">Skipped number of rows or columns.</param>
  5983. </member>
  5984. <member name="M:Aspose.Cells.Cells.ImportArray(System.String[0:,0:],System.Int32,System.Int32)">
  5985. <summary>
  5986. Imports a two-dimension array of string into a worksheet.
  5987. </summary>
  5988. <param name="stringArray">Two-dimension string array.</param>
  5989. <param name="firstRow">The row number of the first cell to import in.</param>
  5990. <param name="firstColumn">The column number of the first cell to import in.</param>
  5991. </member>
  5992. <member name="M:Aspose.Cells.Cells.ImportFormulaArray(System.String[],System.Int32,System.Int32,System.Boolean)">
  5993. <summary>
  5994. Imports an array of formula into a worksheet.
  5995. </summary>
  5996. <param name="stringArray">Formula array.</param>
  5997. <param name="firstRow">The row number of the first cell to import in.</param>
  5998. <param name="firstColumn">The column number of the first cell to import in.</param>
  5999. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  6000. </member>
  6001. <member name="M:Aspose.Cells.Cells.ImportArray(System.String[],System.Int32,System.Int32,System.Boolean)">
  6002. <summary>
  6003. Imports an array of string into a worksheet.
  6004. </summary>
  6005. <param name="stringArray">String array.</param>
  6006. <param name="firstRow">The row number of the first cell to import in.</param>
  6007. <param name="firstColumn">The column number of the first cell to import in.</param>
  6008. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  6009. </member>
  6010. <member name="M:Aspose.Cells.Cells.ImportArray(System.Int32[0:,0:],System.Int32,System.Int32)">
  6011. <summary>
  6012. Imports a two-dimension array of integer into a worksheet.
  6013. </summary>
  6014. <param name="intArray">Two-dimension integer array.</param>
  6015. <param name="firstRow">The row number of the first cell to import in.</param>
  6016. <param name="firstColumn">The column number of the first cell to import in.</param>
  6017. </member>
  6018. <member name="M:Aspose.Cells.Cells.ImportArray(System.Int32[],System.Int32,System.Int32,System.Boolean)">
  6019. <summary>
  6020. Imports an array of integer into a worksheet.
  6021. </summary>
  6022. <param name="intArray">Integer array.</param>
  6023. <param name="firstRow">The row number of the first cell to import in.</param>
  6024. <param name="firstColumn">The column number of the first cell to import in.</param>
  6025. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  6026. </member>
  6027. <member name="M:Aspose.Cells.Cells.ImportArray(System.Double[0:,0:],System.Int32,System.Int32)">
  6028. <summary>
  6029. Imports a two-dimension array of double into a worksheet.
  6030. </summary>
  6031. <param name="doubleArray">Two-dimension double array.</param>
  6032. <param name="firstRow">The row number of the first cell to import in.</param>
  6033. <param name="firstColumn">The column number of the first cell to import in.</param>
  6034. </member>
  6035. <member name="M:Aspose.Cells.Cells.ImportArray(System.Double[],System.Int32,System.Int32,System.Boolean)">
  6036. <summary>
  6037. Imports an array of double into a worksheet.
  6038. </summary>
  6039. <param name="doubleArray">Double array.</param>
  6040. <param name="firstRow">The row number of the first cell to import in.</param>
  6041. <param name="firstColumn">The column number of the first cell to import in.</param>
  6042. <param name="isVertical">Specifies to import data vertically or horizontally.</param>
  6043. </member>
  6044. <member name="M:Aspose.Cells.Cells.TextToColumns(System.Int32,System.Int32,System.Int32,Aspose.Cells.TxtLoadOptions)">
  6045. <summary>
  6046. Splits the text in the column to columns.
  6047. </summary>
  6048. <param name="row">The row index.</param>
  6049. <param name="column">The column index.</param>
  6050. <param name="totalRows">The number of rows.</param>
  6051. <param name="options">The split options.</param>
  6052. </member>
  6053. <member name="M:Aspose.Cells.Cells.ImportCSV(System.String,System.String,System.Boolean,System.Int32,System.Int32)">
  6054. <summary>
  6055. Import a CSV file to the cells.
  6056. </summary>
  6057. <param name="fileName">The CSV file name.</param>
  6058. <param name="splitter">The splitter</param>
  6059. <param name="convertNumericData"> Whether the string in text file is converted to numeric data.</param>
  6060. <param name="firstRow">The row number of the first cell to import in.</param>
  6061. <param name="firstColumn">The column number of the first cell to import in.</param>
  6062. </member>
  6063. <member name="M:Aspose.Cells.Cells.ImportCSV(System.IO.Stream,System.String,System.Boolean,System.Int32,System.Int32)">
  6064. <summary>
  6065. Import a CSV file to the cells.
  6066. </summary>
  6067. <param name="stream">The CSV file stream.</param>
  6068. <param name="splitter">The splitter</param>
  6069. <param name="convertNumericData"> Whether the string in text file is converted to numeric data.</param>
  6070. <param name="firstRow">The row number of the first cell to import in.</param>
  6071. <param name="firstColumn">The column number of the first cell to import in.</param>
  6072. </member>
  6073. <member name="M:Aspose.Cells.Cells.ImportCSV(System.String,Aspose.Cells.TxtLoadOptions,System.Int32,System.Int32)">
  6074. <summary>
  6075. Import a CSV file to the cells.
  6076. </summary>
  6077. <param name="fileName">The CSV file name.</param>
  6078. <param name="options">The load options for reading text file</param>
  6079. <param name="firstRow">The row number of the first cell to import in.</param>
  6080. <param name="firstColumn">The column number of the first cell to import in.</param>
  6081. </member>
  6082. <member name="M:Aspose.Cells.Cells.ImportCSV(System.IO.Stream,Aspose.Cells.TxtLoadOptions,System.Int32,System.Int32)">
  6083. <summary>
  6084. Import a CSV file to the cells.
  6085. </summary>
  6086. <param name="stream">The CSV file stream.</param>
  6087. <param name="options">The load options for reading text file</param>
  6088. <param name="firstRow">The row number of the first cell to import in.</param>
  6089. <param name="firstColumn">The column number of the first cell to import in.</param>
  6090. </member>
  6091. <member name="M:Aspose.Cells.Cells.Merge(System.Int32,System.Int32,System.Int32,System.Int32)">
  6092. <summary>
  6093. Merges a specified range of cells into a single cell.
  6094. </summary>
  6095. <param name="firstRow">First row of this range(zero based)</param>
  6096. <param name="firstColumn">First column of this range(zero based)</param>
  6097. <param name="totalRows">Number of rows(one based)</param>
  6098. <param name="totalColumns">Number of columns(one based)</param>
  6099. <remarks>
  6100. Reference the merged cell via the address of the upper-left cell in the range.
  6101. </remarks>
  6102. </member>
  6103. <member name="M:Aspose.Cells.Cells.Merge(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  6104. <summary>
  6105. Merges a specified range of cells into a single cell.
  6106. </summary>
  6107. <param name="firstRow">First row of this range(zero based)</param>
  6108. <param name="firstColumn">First column of this range(zero based)</param>
  6109. <param name="totalRows">Number of rows(one based)</param>
  6110. <param name="totalColumns">Number of columns(one based)</param>
  6111. <param name="mergeConflict">Merge conflict merged ranges.</param>
  6112. <remarks>
  6113. Reference the merged cell via the address of the upper-left cell in the range.
  6114. If mergeConflict is true and the merged range conflicts with other merged cells,
  6115. other merged cells will be automatically removed.
  6116. </remarks>
  6117. </member>
  6118. <member name="M:Aspose.Cells.Cells.Merge(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
  6119. <summary>
  6120. Merges a specified range of cells into a single cell.
  6121. </summary>
  6122. <param name="firstRow">First row of this range(zero based)</param>
  6123. <param name="firstColumn">First column of this range(zero based)</param>
  6124. <param name="totalRows">Number of rows(one based)</param>
  6125. <param name="totalColumns">Number of columns(one based)</param>
  6126. <param name="checkConflict">Indicates whether check the merged cells intersects other merged cells</param>
  6127. <param name="mergeConflict">Merge conflict merged ranges.</param>
  6128. <remarks>
  6129. Reference the merged cell via the address of the upper-left cell in the range.
  6130. If mergeConflict is true and the merged range conflicts with other merged cells,
  6131. other merged cells will be automatically removed.
  6132. </remarks>
  6133. </member>
  6134. <member name="M:Aspose.Cells.Cells.UnMerge(System.Int32,System.Int32,System.Int32,System.Int32)">
  6135. <summary>
  6136. Unmerges a specified range of merged cells.
  6137. </summary>
  6138. <param name="firstRow">First row of this range(zero based)</param>
  6139. <param name="firstColumn">First column of this range(zero based)</param>
  6140. <param name="totalRows">Number of rows(one based)</param>
  6141. <param name="totalColumns">Number of columns(one based)</param>
  6142. </member>
  6143. <member name="M:Aspose.Cells.Cells.HideRow(System.Int32)">
  6144. <summary>
  6145. Hides a row.
  6146. </summary>
  6147. <param name="row">Row index.</param>
  6148. </member>
  6149. <member name="M:Aspose.Cells.Cells.UnhideRow(System.Int32,System.Double)">
  6150. <summary>
  6151. Unhides a row.
  6152. </summary>
  6153. <param name="row">Row index.</param>
  6154. <param name="height">Row height. The row's height will be changed only when the row is hidden and given height value is positive.</param>
  6155. </member>
  6156. <member name="M:Aspose.Cells.Cells.HideRows(System.Int32,System.Int32)">
  6157. <summary>
  6158. Hides multiple rows.
  6159. </summary>
  6160. <param name="row">The row index.</param>
  6161. <param name="totalRows">The row number.</param>
  6162. </member>
  6163. <member name="M:Aspose.Cells.Cells.UnhideRows(System.Int32,System.Int32,System.Double)">
  6164. <summary>
  6165. Unhides the hidden rows.
  6166. </summary>
  6167. <param name="row">The row index.</param>
  6168. <param name="totalRows">The row number.</param>
  6169. <param name="height">Row height. The row's height will be changed only when the row is hidden and given height value is positive.</param>
  6170. </member>
  6171. <member name="M:Aspose.Cells.Cells.SetRowHeightPixel(System.Int32,System.Int32)">
  6172. <summary>
  6173. Sets row height in unit of pixels.
  6174. </summary>
  6175. <param name="row">Row index.</param>
  6176. <param name="pixels">Number of pixels.</param>
  6177. </member>
  6178. <member name="M:Aspose.Cells.Cells.SetRowHeightInch(System.Int32,System.Double)">
  6179. <summary>
  6180. Sets row height in unit of inches.
  6181. </summary>
  6182. <param name="row">Row index.</param>
  6183. <param name="inches">Number of inches. It should be between 0 and 409.5/72.</param>
  6184. </member>
  6185. <member name="M:Aspose.Cells.Cells.SetRowHeight(System.Int32,System.Double)">
  6186. <summary>
  6187. Sets the height of the specified row.
  6188. </summary>
  6189. <param name="row">Row index.</param>
  6190. <param name="height">Height of row.In unit of point It should be between 0 and 409.5.</param>
  6191. </member>
  6192. <member name="M:Aspose.Cells.Cells.HideColumn(System.Int32)">
  6193. <summary>
  6194. Hides a column.
  6195. </summary>
  6196. <param name="column">Column index.</param>
  6197. </member>
  6198. <member name="M:Aspose.Cells.Cells.UnhideColumn(System.Int32,System.Double)">
  6199. <summary>
  6200. Unhides a column
  6201. </summary>
  6202. <param name="column">Column index.</param>
  6203. <param name="width">Column width.</param>
  6204. </member>
  6205. <member name="M:Aspose.Cells.Cells.HideColumns(System.Int32,System.Int32)">
  6206. <summary>
  6207. Hide multiple columns.
  6208. </summary>
  6209. <param name="column">Column index.</param>
  6210. <param name="totalColumns">Column number.</param>
  6211. </member>
  6212. <member name="M:Aspose.Cells.Cells.UnhideColumns(System.Int32,System.Int32,System.Double)">
  6213. <summary>
  6214. Unhide multiple columns.
  6215. </summary>
  6216. <param name="column">Column index.</param>
  6217. <param name="totalColumns">Column number</param>
  6218. <param name="width">Column width.</param>
  6219. <remarks>
  6220. Only applies the column width to the hidden columns.
  6221. </remarks>
  6222. </member>
  6223. <member name="M:Aspose.Cells.Cells.GetRowHeight(System.Int32)">
  6224. <summary>
  6225. Gets the height of a specified row.
  6226. </summary>
  6227. <param name="row">Row index</param>
  6228. <returns>Height of row</returns>
  6229. </member>
  6230. <member name="M:Aspose.Cells.Cells.GetViewRowHeight(System.Int32)">
  6231. <summary>
  6232. Gets the height of a specified row.
  6233. </summary>
  6234. <param name="row">Row index</param>
  6235. <returns>Height of row</returns>
  6236. </member>
  6237. <member name="M:Aspose.Cells.Cells.GetRowHeightPixel(System.Int32)">
  6238. <summary>
  6239. Gets the height of a specified row in unit of pixel.
  6240. </summary>
  6241. <param name="row">Row index</param>
  6242. <returns>Height of row</returns>
  6243. </member>
  6244. <member name="M:Aspose.Cells.Cells.GetRowHeightInch(System.Int32)">
  6245. <summary>
  6246. Gets the height of a specified row in unit of inches.
  6247. </summary>
  6248. <param name="row">Row index</param>
  6249. <returns>Height of row</returns>
  6250. </member>
  6251. <member name="M:Aspose.Cells.Cells.GetViewRowHeightInch(System.Int32)">
  6252. <summary>
  6253. Gets the height of a specified row in unit of inches.
  6254. </summary>
  6255. <param name="row">Row index</param>
  6256. <returns>Height of row</returns>
  6257. </member>
  6258. <member name="M:Aspose.Cells.Cells.SetColumnWidthPixel(System.Int32,System.Int32)">
  6259. <summary>
  6260. Sets column width in unit of pixels in normal view.
  6261. </summary>
  6262. <param name="column">Column index.</param>
  6263. <param name="pixels">Number of pixels.</param>
  6264. </member>
  6265. <member name="M:Aspose.Cells.Cells.SetColumnWidthInch(System.Int32,System.Double)">
  6266. <summary>
  6267. Sets column width in unit of inches in normal view.
  6268. </summary>
  6269. <param name="column">Column index.</param>
  6270. <param name="inches">Number of inches.</param>
  6271. </member>
  6272. <member name="M:Aspose.Cells.Cells.SetColumnWidth(System.Int32,System.Double)">
  6273. <summary>
  6274. Sets the width of the specified column in normal view.
  6275. </summary>
  6276. <param name="column">Column index.</param>
  6277. <param name="width">Width of column.Column width must be between 0 and 255.</param>
  6278. <remarks>To hide a column, sets column width to zero.</remarks>
  6279. </member>
  6280. <member name="M:Aspose.Cells.Cells.GetColumnWidthPixel(System.Int32)">
  6281. <summary>
  6282. Gets the width of the specified column in normal view, in units of pixel.
  6283. </summary>
  6284. <param name="column">Column index</param>
  6285. <returns>Width of column in normal view.</returns>
  6286. </member>
  6287. <member name="M:Aspose.Cells.Cells.GetColumnWidthInch(System.Int32)">
  6288. <summary>
  6289. Gets the width of the specified column in normal view, in units of inches.
  6290. </summary>
  6291. <param name="column">Column index</param>
  6292. <returns>Width of column</returns>
  6293. </member>
  6294. <member name="M:Aspose.Cells.Cells.GetColumnWidth(System.Int32)">
  6295. <summary>
  6296. Gets the width of the specified column in normal view
  6297. </summary>
  6298. <param name="column">Column index</param>
  6299. <returns>Width of column</returns>
  6300. </member>
  6301. <member name="M:Aspose.Cells.Cells.GetViewColumnWidthPixel(System.Int32)">
  6302. <summary>
  6303. Get the width in different view type.
  6304. </summary>
  6305. <param name="column">The column index.</param>
  6306. <returns>the column width in unit of pixels</returns>
  6307. </member>
  6308. <member name="M:Aspose.Cells.Cells.SetViewColumnWidthPixel(System.Int32,System.Int32)">
  6309. <summary>
  6310. Sets the width of the column in different view.
  6311. </summary>
  6312. <param name="column">The column index.</param>
  6313. <param name="pixels">The width in unit of pixels.</param>
  6314. </member>
  6315. <member name="M:Aspose.Cells.Cells.GetLastDataRow(System.Int32)">
  6316. <summary>
  6317. Gets the last row index of cell which contains data in the specified column.
  6318. </summary>
  6319. <param name="column">Column index.</param>
  6320. <returns>last row index.</returns>
  6321. </member>
  6322. <member name="M:Aspose.Cells.Cells.ApplyColumnStyle(System.Int32,Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  6323. <summary>
  6324. Applies formats for a whole column.
  6325. </summary>
  6326. <param name="column">The column index.</param>
  6327. <param name="style">The style object which will be applied.</param>
  6328. <param name="flag">Flags which indicates applied formatting properties.</param>
  6329. </member>
  6330. <member name="M:Aspose.Cells.Cells.ApplyRowStyle(System.Int32,Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  6331. <summary>
  6332. Applies formats for a whole row.
  6333. </summary>
  6334. <param name="row">The row index.</param>
  6335. <param name="style">The style object which will be applied.</param>
  6336. <param name="flag">Flags which indicates applied formatting properties.</param>
  6337. </member>
  6338. <member name="M:Aspose.Cells.Cells.ApplyStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  6339. <summary>
  6340. Applies formats for a whole worksheet.
  6341. </summary>
  6342. <param name="style">The style object which will be applied.</param>
  6343. <param name="flag">Flags which indicates applied formatting properties.</param>
  6344. </member>
  6345. <member name="M:Aspose.Cells.Cells.CopyColumns(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32,Aspose.Cells.PasteOptions)">
  6346. <summary>
  6347. Copies data and formats of a whole column.
  6348. </summary>
  6349. <param name="sourceCells0">Source Cells object contains data and formats to copy.</param>
  6350. <param name="sourceColumnIndex">Source column index.</param>
  6351. <param name="destinationColumnIndex">Destination column index.</param>
  6352. <param name="columnNumber">The copied column number.</param>
  6353. <param name="pasteOptions">the options of pasting.</param>
  6354. </member>
  6355. <member name="M:Aspose.Cells.Cells.CopyColumn(Aspose.Cells.Cells,System.Int32,System.Int32)">
  6356. <summary>
  6357. Copies data and formats of a whole column.
  6358. </summary>
  6359. <param name="sourceCells">Source Cells object contains data and formats to copy.</param>
  6360. <param name="sourceColumnIndex">Source column index.</param>
  6361. <param name="destinationColumnIndex">Destination column index.</param>
  6362. </member>
  6363. <member name="M:Aspose.Cells.Cells.CopyColumns(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32)">
  6364. <summary>
  6365. Copies data and formats of a whole column.
  6366. </summary>
  6367. <param name="sourceCells0">Source Cells object contains data and formats to copy.</param>
  6368. <param name="sourceColumnIndex">Source column index.</param>
  6369. <param name="destinationColumnIndex">Destination column index.</param>
  6370. <param name="columnNumber">The copied column number.</param>
  6371. </member>
  6372. <member name="M:Aspose.Cells.Cells.CopyColumns(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32,System.Int32)">
  6373. <summary>
  6374. Copies data and formats of the whole columns.
  6375. </summary>
  6376. <param name="sourceCells">Source Cells object contains data and formats to copy.</param>
  6377. <param name="sourceColumnIndex">Source column index.</param>
  6378. <param name="sourceTotalColumns">The number of the source columns.</param>
  6379. <param name="destinationColumnIndex">Destination column index.</param>
  6380. <param name="destinationTotalColumns">The number of the destination columns.</param>
  6381. </member>
  6382. <member name="M:Aspose.Cells.Cells.CopyRow(Aspose.Cells.Cells,System.Int32,System.Int32)">
  6383. <summary>
  6384. Copies data and formats of a whole row.
  6385. </summary>
  6386. <param name="sourceCells">Source Cells object contains data and formats to copy.</param>
  6387. <param name="sourceRowIndex">Source row index.</param>
  6388. <param name="destinationRowIndex">Destination row index.</param>
  6389. </member>
  6390. <member name="M:Aspose.Cells.Cells.CopyRows(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32)">
  6391. <summary>
  6392. Copies data and formats of some whole rows.
  6393. </summary>
  6394. <param name="sourceCells">Source Cells object contains data and formats to copy.</param>
  6395. <param name="sourceRowIndex">Source row index.</param>
  6396. <param name="destinationRowIndex">Destination row index.</param>
  6397. <param name="rowNumber">The copied row number.</param>
  6398. </member>
  6399. <member name="M:Aspose.Cells.Cells.CopyRows(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32,Aspose.Cells.CopyOptions)">
  6400. <summary>
  6401. Copies data and formats of some whole rows.
  6402. </summary>
  6403. <param name="sourceCells0">Source Cells object contains data and formats to copy.</param>
  6404. <param name="sourceRowIndex">Source row index.</param>
  6405. <param name="destinationRowIndex">Destination row index.</param>
  6406. <param name="rowNumber">The copied row number.</param>
  6407. <param name="copyOptions">The copy options.</param>
  6408. </member>
  6409. <member name="M:Aspose.Cells.Cells.CopyRows(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32,Aspose.Cells.CopyOptions,Aspose.Cells.PasteOptions)">
  6410. <summary>
  6411. Copies data and formats of some whole rows.
  6412. </summary>
  6413. <param name="sourceCells0">Source Cells object contains data and formats to copy.</param>
  6414. <param name="sourceRowIndex">Source row index.</param>
  6415. <param name="destinationRowIndex">Destination row index.</param>
  6416. <param name="rowNumber">The copied row number.</param>
  6417. <param name="copyOptions">The copy options.</param>
  6418. <param name="pasteOptions">the options of pasting.</param>
  6419. </member>
  6420. <member name="M:Aspose.Cells.Cells.GetGroupedRowOutlineLevel(System.Int32)">
  6421. <summary>
  6422. Gets the outline level (zero-based) of the row.
  6423. </summary>
  6424. <param name="rowIndex">The row index.</param>
  6425. <returns>The outline level (zero-based) of the row.</returns>
  6426. <remarks>If the row is not grouped, returns zero.</remarks>
  6427. </member>
  6428. <member name="M:Aspose.Cells.Cells.GetGroupedColumnOutlineLevel(System.Int32)">
  6429. <summary>
  6430. Gets the outline level (zero-based) of the column.
  6431. </summary>
  6432. <param name="columnIndex">The column index</param>
  6433. <returns>The outline level of the column</returns>
  6434. <remarks>If the column is not grouped, returns zero.</remarks>
  6435. </member>
  6436. <member name="M:Aspose.Cells.Cells.GetMaxGroupedColumnOutlineLevel">
  6437. <summary>
  6438. Gets the max grouped column outline level (zero-based).
  6439. </summary>
  6440. <returns> The max grouped column outline level (zero-based)</returns>
  6441. </member>
  6442. <member name="M:Aspose.Cells.Cells.GetMaxGroupedRowOutlineLevel">
  6443. <summary>
  6444. Gets the max grouped row outline level (zero-based).
  6445. </summary>
  6446. <returns> The max grouped row outline level (zero-based)</returns>
  6447. </member>
  6448. <member name="M:Aspose.Cells.Cells.ShowGroupDetail(System.Boolean,System.Int32)">
  6449. <summary>
  6450. Uncollapses the grouped rows/columns.
  6451. </summary>
  6452. <param name="isVertical">True, uncollapses the grouped rows.</param>
  6453. <param name="index">The row/column index</param>
  6454. </member>
  6455. <member name="M:Aspose.Cells.Cells.HideGroupDetail(System.Boolean,System.Int32)">
  6456. <summary>
  6457. Collapses the grouped rows/columns.
  6458. </summary>
  6459. <param name="isVertical">True, collapse the grouped rows.</param>
  6460. <param name="index">The row/column index</param>
  6461. </member>
  6462. <member name="M:Aspose.Cells.Cells.UngroupColumns(System.Int32,System.Int32)">
  6463. <summary>
  6464. Ungroups columns.
  6465. </summary>
  6466. <param name="firstIndex">The first column index to be ungrouped.</param>
  6467. <param name="lastIndex">The last column index to be ungrouped.</param>
  6468. </member>
  6469. <member name="M:Aspose.Cells.Cells.GroupColumns(System.Int32,System.Int32)">
  6470. <summary>
  6471. Groups columns.
  6472. </summary>
  6473. <param name="firstIndex">The first column index to be grouped.</param>
  6474. <param name="lastIndex">The last column index to be grouped.</param>
  6475. </member>
  6476. <member name="M:Aspose.Cells.Cells.GroupColumns(System.Int32,System.Int32,System.Boolean)">
  6477. <summary>
  6478. Groups columns.
  6479. </summary>
  6480. <param name="firstIndex">The first column index to be grouped.</param>
  6481. <param name="lastIndex">The last column index to be grouped.</param>
  6482. <param name="isHidden">Specifies if the grouped columns are hidden.</param>
  6483. </member>
  6484. <member name="M:Aspose.Cells.Cells.UngroupRows(System.Int32,System.Int32,System.Boolean)">
  6485. <summary>
  6486. Ungroups rows.
  6487. </summary>
  6488. <param name="firstIndex">The first row index to be ungrouped.</param>
  6489. <param name="lastIndex">The last row index to be ungrouped.</param>
  6490. <param name="isAll">True, removes all grouped info.Otherwise, remove the outer group info.</param>
  6491. </member>
  6492. <member name="M:Aspose.Cells.Cells.UngroupRows(System.Int32,System.Int32)">
  6493. <summary>
  6494. Ungroups rows.
  6495. </summary>
  6496. <param name="firstIndex">The first row index to be ungrouped.</param>
  6497. <param name="lastIndex">The last row index to be ungrouped.</param>
  6498. <remarks>
  6499. Only removes outer group info.
  6500. </remarks>
  6501. </member>
  6502. <member name="M:Aspose.Cells.Cells.GroupRows(System.Int32,System.Int32,System.Boolean)">
  6503. <summary>
  6504. Groups rows.
  6505. </summary>
  6506. <param name="firstIndex">The first row index to be grouped.</param>
  6507. <param name="lastIndex">The last row index to be grouped.</param>
  6508. <param name="isHidden">Specifies if the grouped columns are hidden.</param>
  6509. </member>
  6510. <member name="M:Aspose.Cells.Cells.GroupRows(System.Int32,System.Int32)">
  6511. <summary>
  6512. Groups rows.
  6513. </summary>
  6514. <param name="firstIndex">The first row index to be grouped.</param>
  6515. <param name="lastIndex">The last row index to be grouped.</param>
  6516. </member>
  6517. <member name="M:Aspose.Cells.Cells.DeleteColumn(System.Int32,System.Boolean)">
  6518. <summary>
  6519. Deletes a column.
  6520. </summary>
  6521. <param name="columnIndex">Column index.</param>
  6522. <param name="updateReference">Indicates if update references in other worksheets.</param>
  6523. </member>
  6524. <member name="M:Aspose.Cells.Cells.DeleteColumn(System.Int32)">
  6525. <summary>
  6526. Deletes a column.
  6527. </summary>
  6528. <param name="columnIndex">Column index.</param>
  6529. </member>
  6530. <member name="M:Aspose.Cells.Cells.DeleteColumns(System.Int32,System.Int32,System.Boolean)">
  6531. <summary>
  6532. Deletes several columns.
  6533. </summary>
  6534. <param name="columnIndex">Column index.</param>
  6535. <param name="totalColumns">Number of columns to be deleted.</param>
  6536. <param name="updateReference">Indicates if update references in other worksheets.</param>
  6537. </member>
  6538. <member name="M:Aspose.Cells.Cells.IsDeletingRangeEnabled(System.Int32,System.Int32,System.Int32,System.Int32)">
  6539. <summary>
  6540. Check whether the range could be deleted.
  6541. </summary>
  6542. <param name="startRow">The start row index of the range.</param>
  6543. <param name="startColumn">The start column index of the range.</param>
  6544. <param name="totalRows">The number of the rows in the range.</param>
  6545. <param name="totalColumns">The number of the columns in the range.</param>
  6546. <returns>
  6547. </returns>
  6548. </member>
  6549. <member name="M:Aspose.Cells.Cells.DeleteRows(System.Int32,System.Int32)">
  6550. <summary>
  6551. Deletes several rows.
  6552. </summary>
  6553. <param name="rowIndex">The first row index to be deleted.</param>
  6554. <param name="totalRows">Number of rows to be deleted.</param>
  6555. <remarks>
  6556. If the deleted range contains the top part(not whole) of the table(ListObject),
  6557. the ranged could not be deleted and nothing will be done.It works as MS Excel.
  6558. </remarks>
  6559. </member>
  6560. <member name="M:Aspose.Cells.Cells.DeleteRow(System.Int32)">
  6561. <summary>
  6562. Deletes a row.
  6563. </summary>
  6564. <param name="rowIndex">Row index.</param>
  6565. </member>
  6566. <member name="M:Aspose.Cells.Cells.DeleteRows(System.Int32,System.Int32,System.Boolean)">
  6567. <summary>
  6568. Deletes multiple rows in the worksheet.
  6569. </summary>
  6570. <param name="rowIndex">Row index.</param>
  6571. <param name="totalRows">Number of rows to be deleted.</param>
  6572. <param name="updateReference">Indicates if update references in other worksheets.</param>
  6573. <returns>
  6574. </returns>
  6575. </member>
  6576. <member name="M:Aspose.Cells.Cells.DeleteBlankColumns">
  6577. <summary>
  6578. Delete all blank columns which do not contain any data.
  6579. </summary>
  6580. </member>
  6581. <member name="M:Aspose.Cells.Cells.DeleteBlankColumns(Aspose.Cells.DeleteOptions)">
  6582. <summary>
  6583. Delete all blank columns which do not contain any data.
  6584. </summary>
  6585. <param name="options">The options of deleting range.</param>
  6586. </member>
  6587. <member name="M:Aspose.Cells.Cells.IsBlankColumn(System.Int32)">
  6588. <summary>
  6589. Checks whether given column is blank(does not contain any data).
  6590. </summary>
  6591. <param name="columnIndex">the column index</param>
  6592. <returns>true if given column does not contain any data</returns>
  6593. </member>
  6594. <member name="M:Aspose.Cells.Cells.DeleteBlankRows">
  6595. <summary>
  6596. Delete all blank rows which do not contain any data.
  6597. </summary>
  6598. </member>
  6599. <member name="M:Aspose.Cells.Cells.DeleteBlankRows(Aspose.Cells.DeleteOptions)">
  6600. <summary>
  6601. Delete all blank rows which do not contain any data.
  6602. </summary>
  6603. <param name="options">The options of deleting range.</param>
  6604. </member>
  6605. <member name="M:Aspose.Cells.Cells.InsertColumns(System.Int32,System.Int32)">
  6606. <summary>
  6607. Inserts some columns into the worksheet.
  6608. </summary>
  6609. <param name="columnIndex">Column index.</param>
  6610. <param name="totalColumns">The number of columns.</param>
  6611. </member>
  6612. <member name="M:Aspose.Cells.Cells.InsertColumns(System.Int32,System.Int32,System.Boolean)">
  6613. <summary>
  6614. Inserts some columns into the worksheet.
  6615. </summary>
  6616. <param name="columnIndex">Column index.</param>
  6617. <param name="totalColumns">The number of columns.</param>
  6618. <param name="updateReference">Indicates if references in other worksheets will be updated.</param>
  6619. </member>
  6620. <member name="M:Aspose.Cells.Cells.InsertColumn(System.Int32,System.Boolean)">
  6621. <summary>
  6622. Inserts a new column into the worksheet.
  6623. </summary>
  6624. <param name="columnIndex">Column index.</param>
  6625. <param name="updateReference">Indicates if references in other worksheets will be updated.</param>
  6626. </member>
  6627. <member name="M:Aspose.Cells.Cells.InsertColumn(System.Int32)">
  6628. <summary>
  6629. Inserts a new column into the worksheet.
  6630. </summary>
  6631. <param name="columnIndex">Column index.</param>
  6632. </member>
  6633. <member name="M:Aspose.Cells.Cells.InsertRows(System.Int32,System.Int32,System.Boolean)">
  6634. <summary>
  6635. Inserts multiple rows into the worksheet.
  6636. </summary>
  6637. <param name="rowIndex">Row index.</param>
  6638. <param name="totalRows">Number of rows to be inserted.</param>
  6639. <param name="updateReference">Indicates if references in other worksheets will be updated.</param>
  6640. </member>
  6641. <member name="M:Aspose.Cells.Cells.InsertRows(System.Int32,System.Int32,Aspose.Cells.InsertOptions)">
  6642. <summary>
  6643. Inserts multiple rows into the worksheet.
  6644. </summary>
  6645. <param name="rowIndex">Row index.</param>
  6646. <param name="totalRows">Number of rows to be inserted.</param>
  6647. <param name="options">Indicates if references in other worksheets will be updated.</param>
  6648. </member>
  6649. <member name="M:Aspose.Cells.Cells.InsertRows(System.Int32,System.Int32)">
  6650. <summary>
  6651. Inserts multiple rows into the worksheet.
  6652. </summary>
  6653. <param name="rowIndex">Row index.</param>
  6654. <param name="totalRows">Number of rows to be inserted.</param>
  6655. </member>
  6656. <member name="M:Aspose.Cells.Cells.InsertRow(System.Int32)">
  6657. <summary>
  6658. Inserts a new row into the worksheet.
  6659. </summary>
  6660. <param name="rowIndex">Row index.</param>
  6661. </member>
  6662. <member name="M:Aspose.Cells.Cells.ClearRange(Aspose.Cells.CellArea)">
  6663. <summary>
  6664. Clears contents and formatting of a range.
  6665. </summary>
  6666. <param name="range">Range to be cleared.</param>
  6667. </member>
  6668. <member name="M:Aspose.Cells.Cells.ClearRange(System.Int32,System.Int32,System.Int32,System.Int32)">
  6669. <summary>
  6670. Clears contents and formatting of a range.
  6671. </summary>
  6672. <param name="startRow">Start row index.</param>
  6673. <param name="startColumn">Start column index.</param>
  6674. <param name="endRow">End row index.</param>
  6675. <param name="endColumn">End column index.</param>
  6676. </member>
  6677. <member name="M:Aspose.Cells.Cells.ClearContents(Aspose.Cells.CellArea)">
  6678. <summary>
  6679. Clears contents of a range.
  6680. </summary>
  6681. <param name="range">Range to be cleared.</param>
  6682. </member>
  6683. <member name="M:Aspose.Cells.Cells.ClearContents(System.Int32,System.Int32,System.Int32,System.Int32)">
  6684. <summary>
  6685. Clears contents of a range.
  6686. </summary>
  6687. <param name="startRow">Start row index.</param>
  6688. <param name="startColumn">Start column index.</param>
  6689. <param name="endRow">End row index.</param>
  6690. <param name="endColumn">End column index.</param>
  6691. </member>
  6692. <member name="M:Aspose.Cells.Cells.ClearFormats(Aspose.Cells.CellArea)">
  6693. <summary>
  6694. Clears formatting of a range.
  6695. </summary>
  6696. <param name="range">Range to be cleared.</param>
  6697. </member>
  6698. <member name="M:Aspose.Cells.Cells.ClearFormats(System.Int32,System.Int32,System.Int32,System.Int32)">
  6699. <summary>
  6700. Clears formatting of a range.
  6701. </summary>
  6702. <param name="startRow">Start row index.</param>
  6703. <param name="startColumn">Start column index.</param>
  6704. <param name="endRow">End row index.</param>
  6705. <param name="endColumn">End column index.</param>
  6706. </member>
  6707. <member name="M:Aspose.Cells.Cells.LinkToXmlMap(System.String,System.Int32,System.Int32,System.String)">
  6708. <summary>
  6709. Link to a xml map.
  6710. </summary>
  6711. <param name="mapName">name of xml map</param>
  6712. <param name="row">row of the destination cell</param>
  6713. <param name="column">column of the destination cell</param>
  6714. <param name="path">path of xml element in xml map</param>
  6715. e.g. A xml map element structure:
  6716. -RootElement
  6717. |-Attribute1
  6718. |-SubElement
  6719. |-Attribute2
  6720. |-Attribute3
  6721. To link "Attribute1", path is "/RootElement/Attribute1"
  6722. To link "Attribute2", path is "/RootElement/SubElement/Attribute2"
  6723. To link whole "SubElement", path is "/RootElement/SubElement"
  6724. </member>
  6725. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Int32,System.Int32)">
  6726. <summary>
  6727. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6728. </summary>
  6729. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6730. <param name="firstRow">The row number of the first cell to import in.</param>
  6731. <param name="firstColumn">The column number of the first cell to import in.</param>
  6732. <returns>Total number of rows imported</returns>
  6733. </member>
  6734. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Int32,System.Int32,System.Boolean)">
  6735. <remarks>
  6736. NOTE: This member is now obsolete. Instead,
  6737. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6738. This property will be removed 12 months later since November 2018.
  6739. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6740. </member>
  6741. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Int32,System.Int32,System.Int32,System.Int32)">
  6742. <summary>
  6743. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6744. </summary>
  6745. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6746. <param name="firstRow">The row number of the first cell to import in.</param>
  6747. <param name="firstColumn">The column number of the first cell to import in.</param>
  6748. <param name="totalRows">Number of rows to be imported.</param>
  6749. <param name="totalColumns">Number of columns to be imported.</param>
  6750. <returns>Total number of rows imported</returns>
  6751. <remarks>
  6752. NOTE: This member is now obsolete. Instead,
  6753. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6754. This property will be removed 12 months later since November 2018.
  6755. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6756. </member>
  6757. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  6758. <summary>
  6759. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6760. </summary>
  6761. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6762. <param name="firstRow">The row number of the first cell to import in.</param>
  6763. <param name="firstColumn">The column number of the first cell to import in.</param>
  6764. <param name="totalRows">Number of rows to be imported.</param>
  6765. <param name="totalColumns">Number of columns to be imported.</param>
  6766. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6767. <returns>Total number of rows imported</returns>
  6768. <remarks>
  6769. NOTE: This member is now obsolete. Instead,
  6770. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6771. This property will be removed 12 months later since November 2018.
  6772. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6773. </member>
  6774. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  6775. <summary>
  6776. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6777. </summary>
  6778. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6779. <param name="isFieldNameShown">
  6780. Indicates whether the field name of the data view will be imported to the first row.</param>
  6781. <param name="firstRow">The row number of the first cell to import in.</param>
  6782. <param name="firstColumn">The column number of the first cell to import in.</param>
  6783. <param name="totalRows">Number of rows to be imported.</param>
  6784. <param name="totalColumns">Number of columns to be imported.</param>
  6785. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6786. <returns>Total number of rows imported</returns>
  6787. <remarks>
  6788. NOTE: This member is now obsolete. Instead,
  6789. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6790. This property will be removed 12 months later since November 2018.
  6791. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6792. </member>
  6793. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.String)">
  6794. <summary>
  6795. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6796. </summary>
  6797. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6798. <param name="isFieldNameShown">
  6799. Indicates whether the field name of the data view will be imported to the first row.</param>
  6800. <param name="firstRow">The row number of the first cell to import in.</param>
  6801. <param name="firstColumn">The column number of the first cell to import in.</param>
  6802. <param name="rowNumber">Number of rows to be imported.</param>
  6803. <param name="columnNumber">Number of columns to be imported.</param>
  6804. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6805. <param name="numberFormatString">Number format string for cells.</param>
  6806. <returns>Total number of rows imported</returns>
  6807. <remarks>
  6808. NOTE: This member is now obsolete. Instead,
  6809. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6810. This property will be removed 12 months later since November 2018.
  6811. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6812. </member>
  6813. <member name="M:Aspose.Cells.Cells.ImportDataView(System.Data.DataView,System.Boolean,System.Int32,System.Int32,System.Boolean)">
  6814. <summary>
  6815. Imports a <see cref="T:System.Data.DataView" /> into a worksheet.
  6816. </summary>
  6817. <param name="dataView">The <see cref="T:System.Data.DataView" /> object to be imported.</param>
  6818. <param name="isFieldNameShown">
  6819. Indicates whether the field name of the data view will be imported to the first row.</param>
  6820. <param name="firstRow">The row number of the first cell to import in.</param>
  6821. <param name="firstColumn">The column number of the first cell to import in.</param>
  6822. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6823. <returns>Total number of rows imported</returns>
  6824. <remarks>
  6825. NOTE: This member is now obsolete. Instead,
  6826. please use Cells.ImportData(DataView,int,int,ImportTableOptions) method.
  6827. This property will be removed 12 months later since November 2018.
  6828. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6829. </member>
  6830. <member name="M:Aspose.Cells.Cells.ImportDataGridAsString(System.Web.UI.WebControls.DataGrid,System.Int32,System.Int32,System.Boolean)">
  6831. <summary>
  6832. Imports a <see cref="T:System.Web.UI.WebControls.DataGrid" /> into a worksheet. This method doesn't try to convert text into numeric values.
  6833. </summary>
  6834. <param name="dataGrid">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> object to be imported.</param>
  6835. <param name="firstRow">The row number of the first cell to import in.</param>
  6836. <param name="firstColumn">The column number of the first cell to import in.</param>
  6837. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6838. <returns>Total number of rows imported</returns>
  6839. </member>
  6840. <member name="M:Aspose.Cells.Cells.ImportGridView(System.Web.UI.WebControls.GridView,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  6841. <summary>
  6842. Imports a grid view to this cells.
  6843. </summary>
  6844. <param name="gridView">The grid view object.</param>
  6845. <param name="firstRow">The row number of the first cell to import in.</param>
  6846. <param name="firstColumn">The column number of the first cell to import in.</param>
  6847. <param name="options">import options.</param>
  6848. <returns>The row number.</returns>
  6849. </member>
  6850. <member name="M:Aspose.Cells.Cells.ImportDataGrid(System.Web.UI.WebControls.DataGrid,System.Int32,System.Int32,System.Boolean)">
  6851. <summary>
  6852. Imports a <see cref="T:System.Web.UI.WebControls.DataGrid" /> into a worksheet.
  6853. </summary>
  6854. <param name="dataGrid">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> object to be imported.</param>
  6855. <param name="firstRow">The row number of the first cell to import in.</param>
  6856. <param name="firstColumn">The column number of the first cell to import in.</param>
  6857. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6858. <returns>Total number of rows imported</returns>
  6859. </member>
  6860. <member name="M:Aspose.Cells.Cells.ImportDataGrid(System.Web.UI.WebControls.DataGrid,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  6861. <summary>
  6862. Imports a <see cref="T:System.Web.UI.WebControls.DataGrid" /> into a worksheet.
  6863. </summary>
  6864. <param name="dataGrid">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> object to be imported.</param>
  6865. <param name="firstRow">The row number of the first cell to import in.</param>
  6866. <param name="firstColumn">The column number of the first cell to import in.</param>
  6867. <param name="totalRows">Number of rows to be imported.</param>
  6868. <param name="totalColumns">Number of columns to be imported.</param>
  6869. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6870. <returns>Total number of rows imported</returns>
  6871. </member>
  6872. <member name="M:Aspose.Cells.Cells.ImportDataGrid(System.Web.UI.WebControls.DataGrid,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Boolean)">
  6873. <summary>
  6874. Imports a <see cref="T:System.Web.UI.WebControls.DataGrid" /> into a worksheet.
  6875. </summary>
  6876. <param name="dataGrid">The <see cref="T:System.Web.UI.WebControls.DataGrid" /> object to be imported.</param>
  6877. <param name="firstRow">The row number of the first cell to import in.</param>
  6878. <param name="firstColumn">The column number of the first cell to import in.</param>
  6879. <param name="totalRows">Number of rows to be imported.</param>
  6880. <param name="totalColumns">Number of columns to be imported.</param>
  6881. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  6882. <param name="importStyle">Indicates whether importing the cell style.</param>
  6883. <returns>Total number of rows imported</returns>
  6884. </member>
  6885. <member name="M:Aspose.Cells.Cells.FindFormula(System.String,Aspose.Cells.Cell)">
  6886. <summary>
  6887. Finds the cell with the input string.
  6888. </summary>
  6889. <param name="formula">The formula to search for.</param>
  6890. <param name="previousCell">Previous cell with the same formula. This parameter can be set to null if searching from the start.</param>
  6891. <returns>Cell object.</returns>
  6892. <remarks>Returns null (Nothing) if no cell is found.
  6893. NOTE: This member is now obsolete. Instead,
  6894. please use Cells.Find(object,Cell,FindOptions) method with LookInType as LookInType.OnlyFormulas
  6895. and LookAtType as LookAtType.EntireContent.
  6896. This member will be removed 12 months later since November 2018.
  6897. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6898. </member>
  6899. <member name="M:Aspose.Cells.Cells.FindFormulaContains(System.String,Aspose.Cells.Cell)">
  6900. <summary>
  6901. Finds the cell with formula which contains the input string.
  6902. </summary>
  6903. <param name="formula">The formula to search for.</param>
  6904. <param name="previousCell">Previous cell with the same formula. This parameter can be set to null if searching from the start.</param>
  6905. <returns>Cell object.</returns>
  6906. <remarks>Returns null (Nothing) if no cell is found.
  6907. NOTE: This member is now obsolete. Instead,
  6908. please use Cells.Find(object,Cell,FindOptions) method with LookInType as LookInType.OnlyFormulas
  6909. and LookAtType as LookAtType.Contains.
  6910. This member will be removed 12 months later since November 2018.
  6911. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  6912. </member>
  6913. <member name="M:Aspose.Cells.Cells.Find(System.Object,Aspose.Cells.Cell)">
  6914. <summary>
  6915. Finds the cell containing with the input object.
  6916. </summary>
  6917. <param name="what">The object to search for.
  6918. The type should be int,double,DateTime,string,bool.
  6919. </param>
  6920. <param name="previousCell">Previous cell with the same object.
  6921. This parameter can be set to null if searching from the start.</param>
  6922. <returns>Cell object.</returns>
  6923. <remarks>Returns null (Nothing) if no cell is found.</remarks>
  6924. </member>
  6925. <member name="M:Aspose.Cells.Cells.Find(System.Object,Aspose.Cells.Cell,Aspose.Cells.FindOptions)">
  6926. <summary>
  6927. Finds the cell containing with the input object.
  6928. </summary>
  6929. <param name="what">The object to search for.
  6930. The type should be int,double,DateTime,string,bool.
  6931. </param>
  6932. <param name="previousCell">Previous cell with the same object.
  6933. This parameter can be set to null if searching from the start.</param>
  6934. <param name="findOptions">Find options</param>
  6935. <returns>Cell object.</returns>
  6936. <remarks>Returns null (Nothing) if no cell is found.</remarks>
  6937. </member>
  6938. <member name="M:Aspose.Cells.Cells.EndCellInRow(System.Int32)">
  6939. <summary>
  6940. Gets the last cell in this row.
  6941. </summary>
  6942. <param name="rowIndex">Row index.</param>
  6943. <returns>Cell object.</returns>
  6944. </member>
  6945. <member name="M:Aspose.Cells.Cells.EndCellInColumn(System.Int16)">
  6946. <summary>
  6947. Gets the last cell in this column.
  6948. </summary>
  6949. <param name="columnIndex">Column index.</param>
  6950. <returns>Cell object.</returns>
  6951. </member>
  6952. <member name="M:Aspose.Cells.Cells.EndCellInColumn(System.Int32,System.Int32,System.Int16,System.Int16)">
  6953. <summary>
  6954. Gets the last cell with maximum column index in this range.
  6955. </summary>
  6956. <param name="startRow">Start row index.</param>
  6957. <param name="endRow">End row index.</param>
  6958. <param name="startColumn">Start column index.</param>
  6959. <param name="endColumn">End column index.</param>
  6960. <returns>Cell object.</returns>
  6961. </member>
  6962. <member name="M:Aspose.Cells.Cells.EndCellInRow(System.Int32,System.Int32,System.Int32,System.Int32)">
  6963. <summary>
  6964. Gets the last cell with maximum row index in this range.
  6965. </summary>
  6966. <param name="startRow">Start row index.</param>
  6967. <param name="endRow">End row index.</param>
  6968. <param name="startColumn">Start column index.</param>
  6969. <param name="endColumn">End column index.</param>
  6970. <returns>Cell object.</returns>
  6971. </member>
  6972. <member name="M:Aspose.Cells.Cells.MoveRange(Aspose.Cells.CellArea,System.Int32,System.Int32)">
  6973. <summary>
  6974. Moves the range.
  6975. </summary>
  6976. <param name="sourceArea">The range which should be moved.</param>
  6977. <param name="destRow">The dest row.</param>
  6978. <param name="destColumn">The dest column.</param>
  6979. </member>
  6980. <member name="M:Aspose.Cells.Cells.InsertCutCells(Aspose.Cells.Range,System.Int32,System.Int32,Aspose.Cells.ShiftType)">
  6981. <summary>
  6982. Insert cut range.
  6983. </summary>
  6984. <param name="cutRange">The cut range.</param>
  6985. <param name="row">The row.</param>
  6986. <param name="column">The column.</param>
  6987. <param name="shiftType">The shift type .</param>
  6988. </member>
  6989. <member name="M:Aspose.Cells.Cells.InsertRange(Aspose.Cells.CellArea,System.Int32,Aspose.Cells.ShiftType,System.Boolean)">
  6990. <summary>
  6991. Inserts a range of cells and shift cells according to the shift option.
  6992. </summary>
  6993. <param name="area">Shift area.</param>
  6994. <param name="shiftNumber">Number of rows or columns to be inserted.</param>
  6995. <param name="shiftType">Shift cells option.</param>
  6996. <param name="updateReference">Indicates if update references in other worksheets.</param>
  6997. </member>
  6998. <member name="M:Aspose.Cells.Cells.InsertRange(Aspose.Cells.CellArea,Aspose.Cells.ShiftType)">
  6999. <summary>
  7000. Inserts a range of cells and shift cells according to the shift option.
  7001. </summary>
  7002. <param name="area">Shift area.</param>
  7003. <param name="shiftType">Shift cells option.</param>
  7004. </member>
  7005. <member name="M:Aspose.Cells.Cells.InsertRange(Aspose.Cells.CellArea,System.Int32,Aspose.Cells.ShiftType)">
  7006. <summary>
  7007. Inserts a range of cells and shift cells according to the shift option.
  7008. </summary>
  7009. <param name="area">Shift area.</param>
  7010. <param name="shiftNumber">Number of rows or columns to be inserted.</param>
  7011. <param name="shiftType">Shift cells option.</param>
  7012. </member>
  7013. <member name="M:Aspose.Cells.Cells.DeleteRange(System.Int32,System.Int32,System.Int32,System.Int32,Aspose.Cells.ShiftType)">
  7014. <summary>
  7015. Deletes a range of cells and shift cells according to the shift option.
  7016. </summary>
  7017. <param name="startRow">Start row index.</param>
  7018. <param name="startColumn">Start column index.</param>
  7019. <param name="endRow">End row index.</param>
  7020. <param name="endColumn">End column index.</param>
  7021. <param name="shiftType">Shift cells option.</param>
  7022. </member>
  7023. <member name="M:Aspose.Cells.Cells.ExportArray(System.Int32,System.Int32,System.Int32,System.Int32)">
  7024. <summary>
  7025. Exports data in the <see cref="T:Aspose.Cells.Cells" /> collection to a two-dimension array object.
  7026. </summary>
  7027. <param name="firstRow">The row number of the first cell to export out.</param>
  7028. <param name="firstColumn">The column number of the first cell to export out.</param>
  7029. <param name="totalRows">Number of rows to be exported</param>
  7030. <param name="totalColumns">Number of columns to be exported</param>
  7031. <returns>Exported cell value array object.</returns>
  7032. </member>
  7033. <member name="M:Aspose.Cells.Cells.ExportTypeArray(System.Int32,System.Int32,System.Int32,System.Int32)">
  7034. <summary>
  7035. Exports cell value type in the <see cref="T:Aspose.Cells.Cells" /> collection to a two-dimension array object.
  7036. </summary>
  7037. <param name="firstRow">The row number of the first cell to export out.</param>
  7038. <param name="firstColumn">The column number of the first cell to export out.</param>
  7039. <param name="totalRows">Number of rows to be exported.</param>
  7040. <param name="totalColumns">Number of columns to be exported.</param>
  7041. <returns>Exported <see cref="T:Aspose.Cells.CellValueType" /> array object.</returns>
  7042. </member>
  7043. <member name="M:Aspose.Cells.Cells.ImportCustomObjects(System.Collections.ICollection,System.String[],System.Boolean,System.Int32,System.Int32,System.Int32,System.Boolean,System.String,System.Boolean)">
  7044. <summary>
  7045. Imports custom objects.
  7046. </summary>
  7047. <param name="list">The custom object</param>
  7048. <param name="propertyNames">The property names.If it is null,we will import all properties of the object.</param>
  7049. <param name="isPropertyNameShown">
  7050. Indicates whether the property name will be imported to the first row.
  7051. </param>
  7052. <param name="firstRow">The row number of the first cell to import in.</param>
  7053. <param name="firstColumn">The column number of the first cell to import in.</param>
  7054. <param name="rowNumber">Number of rows to be imported.</param>
  7055. <param name="insertRows">Indicates whether extra rows are added to fit data.</param>
  7056. <param name="dateFormatString">Date format string for cells.</param>
  7057. <param name="convertStringToNumber">Indicates if this method will try to convert string to number.</param>
  7058. <returns>Total number of rows imported.</returns>
  7059. <remarks>The custom objects should be the same type.</remarks>
  7060. </member>
  7061. <member name="M:Aspose.Cells.Cells.ImportCustomObjects(System.Collections.ICollection,System.Int32,System.Int32,Aspose.Cells.ImportTableOptions)">
  7062. <summary>
  7063. Imports custom objects.
  7064. </summary>
  7065. <param name="list">The custom object</param>
  7066. <param name="firstRow">The row number of the first cell to import in.</param>
  7067. <param name="firstColumn">The column number of the first cell to import in.</param>
  7068. <param name="options"> The import options.</param>
  7069. <returns>Total number of rows imported.</returns>
  7070. <remarks>The custom objects should be the same type.</remarks>
  7071. </member>
  7072. <member name="M:Aspose.Cells.Cells.RetrieveSubtotalSetting(Aspose.Cells.CellArea)">
  7073. <summary>
  7074. Retrieves subtotals setting of the range.
  7075. </summary>
  7076. <param name="ca">The range</param>
  7077. <returns>
  7078. </returns>
  7079. </member>
  7080. <member name="M:Aspose.Cells.Cells.Subtotal(Aspose.Cells.CellArea,System.Int32,Aspose.Cells.ConsolidationFunction,System.Int32[])">
  7081. <summary>
  7082. Creates subtotals for the range.
  7083. </summary>
  7084. <param name="ca">The range</param>
  7085. <param name="groupBy">The field to group by, as a zero-based integer offset</param>
  7086. <param name="function">The subtotal function.</param>
  7087. <param name="totalList">An array of zero-based field offsets, indicating the fields to which the subtotals are added.</param>
  7088. </member>
  7089. <member name="M:Aspose.Cells.Cells.Subtotal(Aspose.Cells.CellArea,System.Int32,Aspose.Cells.ConsolidationFunction,System.Int32[],System.Boolean,System.Boolean,System.Boolean)">
  7090. <summary>
  7091. Creates subtotals for the range.
  7092. </summary>
  7093. <param name="ca">The range</param>
  7094. <param name="groupBy">The field to group by, as a zero-based integer offset</param>
  7095. <param name="function">The subtotal function.</param>
  7096. <param name="totalList">An array of zero-based field offsets, indicating the fields to which the subtotals are added.</param>
  7097. <param name="replace">Indicates whether replace the current subtotals</param>
  7098. <param name="pageBreaks">Indicates whether add page break between groups</param>
  7099. <param name="summaryBelowData">Indicates whether add summary below data.</param>
  7100. </member>
  7101. <member name="M:Aspose.Cells.Cells.RemoveFormulas">
  7102. <summary>
  7103. Removes all formula and replaces with the value of the formula.
  7104. </summary>
  7105. </member>
  7106. <member name="M:Aspose.Cells.Cells.RemoveDuplicates">
  7107. <summary>
  7108. Removes duplicate rows in the sheet.
  7109. </summary>
  7110. </member>
  7111. <member name="M:Aspose.Cells.Cells.RemoveDuplicates(System.Int32,System.Int32,System.Int32,System.Int32)">
  7112. <summary>
  7113. Removes duplicate values in the range.
  7114. </summary>
  7115. <param name="startRow">The start row.</param>
  7116. <param name="startColumn">The start column</param>
  7117. <param name="endRow">The end row index.</param>
  7118. <param name="endColumn">The end column index.</param>
  7119. </member>
  7120. <member name="M:Aspose.Cells.Cells.RemoveDuplicates(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.Int32[])">
  7121. <summary>
  7122. Removes duplicate data of the range.
  7123. </summary>
  7124. <param name="startRow">The start row.</param>
  7125. <param name="startColumn">The start column</param>
  7126. <param name="endRow">The end row index.</param>
  7127. <param name="endColumn">The end column index.</param>
  7128. <param name="hasHeaders">Indicates whether the range contains headers.</param>
  7129. <param name="columnOffsets">The column offsets.</param>
  7130. </member>
  7131. <member name="M:Aspose.Cells.Cells.ConvertStringToNumericValue">
  7132. <summary>
  7133. Converts string data in cells to numeric value if possible.
  7134. </summary>
  7135. </member>
  7136. <member name="M:Aspose.Cells.Cells.GetDependents(System.Boolean,System.Int32,System.Int32)">
  7137. <summary>
  7138. Get all cells which refer to the specific cell.
  7139. </summary>
  7140. <param name="isAll">Indicates whether check other worksheets</param>
  7141. <param name="row">The row index.</param>
  7142. <param name="column">The column index.</param>
  7143. <returns>
  7144. </returns>
  7145. </member>
  7146. <member name="M:Aspose.Cells.Cells.GetCellStyle(System.Int32,System.Int32)">
  7147. <summary>
  7148. Get the style of given cell.
  7149. </summary>
  7150. <param name="row">row index</param>
  7151. <param name="column">column</param>
  7152. <returns>the style of given cell.</returns>
  7153. </member>
  7154. <member name="P:Aspose.Cells.Cells.OdsCellFields">
  7155. <summary>
  7156. Gets the list of fields of ods.
  7157. </summary>
  7158. </member>
  7159. <member name="P:Aspose.Cells.Cells.Count">
  7160. <summary>
  7161. Gets the total count of instantiated Cell objects.
  7162. </summary>
  7163. </member>
  7164. <member name="P:Aspose.Cells.Cells.CountLarge">
  7165. <summary>
  7166. Gets the total count of instantiated Cell objects.
  7167. </summary>
  7168. </member>
  7169. <member name="P:Aspose.Cells.Cells.Item(System.Int32)">
  7170. <summary>
  7171. Gets <see cref="T:Aspose.Cells.Cell" /> item within the worksheet
  7172. </summary>
  7173. <param name="index">The zero based index of the element.</param>
  7174. <value>The element at the specified index.</value>
  7175. <remarks>NOTE: This member is now obsolete.
  7176. Instead, please use Cells.GetEnumerator() method to iterate all cells in this worksheet.
  7177. This property will be removed 12 months later since February 2015.
  7178. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  7179. </member>
  7180. <member name="P:Aspose.Cells.Cells.Rows">
  7181. <summary>
  7182. Gets the collection of <see cref="T:Aspose.Cells.Row" /> objects that represents the individual rows in this worksheet.
  7183. </summary>
  7184. </member>
  7185. <member name="P:Aspose.Cells.Cells.MergedCells">
  7186. <summary>
  7187. Gets the collection of merged cells.
  7188. </summary>
  7189. <remarks>In this collection, each item is a <see cref="T:Aspose.Cells.CellArea" /> structure which represents an area of merged cells.</remarks>
  7190. </member>
  7191. <member name="P:Aspose.Cells.Cells.Item(System.Int32,System.Int32)">
  7192. <summary>
  7193. Gets the <see cref="T:Aspose.Cells.Cell" /> element at the specified cell row index and column index.
  7194. </summary>
  7195. <param name="row">Row index.</param>
  7196. <param name="column">Column index.</param>
  7197. <returns>The <see cref="T:Aspose.Cells.Cell" /> object.</returns>
  7198. <example>
  7199. <code>
  7200. [C#]
  7201. Cells cells = excel.Worksheets[0].Cells;
  7202. Cell cell = cells[0, 0]; //Gets the cell at "A1"
  7203. [Visual Basic]
  7204. Dim cells As Cells = excel.Worksheets(0).Cells
  7205. Dim cell As Cell = cells(0,0) 'Gets the cell at "A1"
  7206. </code>
  7207. </example>
  7208. </member>
  7209. <member name="P:Aspose.Cells.Cells.Item(System.String)">
  7210. <summary>
  7211. Gets the <see cref="T:Aspose.Cells.Cell" /> element at the specified cell name.
  7212. </summary>
  7213. <param name="cellName">Cell name,including its column letter and row number, for example A5.</param>
  7214. <returns>A <see cref="T:Aspose.Cells.Cell" /> object</returns>
  7215. <example>
  7216. <code>
  7217. [C#]
  7218. Cells cells = excel.Worksheets[0].Cells;
  7219. Cell cell = cells["A1"]; //Gets the cell at "A1"
  7220. [Visual Basic]
  7221. Dim cells As Cells = excel.Worksheets(0).Cells
  7222. Dim cell As Cell = cells("A1") 'Gets the cell at "A1"
  7223. </code>
  7224. </example>
  7225. </member>
  7226. <member name="P:Aspose.Cells.Cells.MultiThreadReading">
  7227. <summary>
  7228. Gets or sets whether the cells data model should support Multi-Thread reading.
  7229. Default value of this property is false.
  7230. If there are multiple threads to read Row/Cell objects in this collection concurrently,
  7231. this property should be set as true, otherwise unexpected result may be produced.
  7232. Supporting Multi-Thread reading may degrade the performance for accessing Row/Cell objects from this collection.
  7233. </summary>
  7234. </member>
  7235. <member name="P:Aspose.Cells.Cells.MemorySetting">
  7236. <summary>
  7237. Gets or sets the memory usage option for this cells.
  7238. </summary>
  7239. </member>
  7240. <member name="P:Aspose.Cells.Cells.Style">
  7241. <summary>
  7242. Gets and sets the default style.
  7243. </summary>
  7244. </member>
  7245. <member name="P:Aspose.Cells.Cells.StandardWidthInch">
  7246. <summary>
  7247. Gets or sets the default column width in the worksheet, in unit of inches.
  7248. </summary>
  7249. </member>
  7250. <member name="P:Aspose.Cells.Cells.StandardWidthPixels">
  7251. <summary>
  7252. Gets or sets the default column width in the worksheet, in unit of pixels.
  7253. </summary>
  7254. </member>
  7255. <member name="P:Aspose.Cells.Cells.StandardWidth">
  7256. <summary>
  7257. Gets or sets the default column width in the worksheet, in unit of characters.
  7258. </summary>
  7259. </member>
  7260. <member name="P:Aspose.Cells.Cells.StandardHeight">
  7261. <summary>
  7262. Gets or sets the default row height in this worksheet, in unit of points.
  7263. </summary>
  7264. </member>
  7265. <member name="P:Aspose.Cells.Cells.StandardHeightPixels">
  7266. <summary>
  7267. Gets or sets the default row height in this worksheet, in unit of pixels.
  7268. </summary>
  7269. </member>
  7270. <member name="P:Aspose.Cells.Cells.PreserveString">
  7271. <summary>
  7272. Gets or sets a value indicating whether all worksheet values are preserved as strings.
  7273. Default is false.
  7274. </summary>
  7275. </member>
  7276. <member name="P:Aspose.Cells.Cells.MinRow">
  7277. <summary>
  7278. Minimum row index of cell which contains data or style.
  7279. </summary>
  7280. </member>
  7281. <member name="P:Aspose.Cells.Cells.MaxRow">
  7282. <summary>
  7283. Maximum row index of cell which contains data or style.
  7284. </summary>
  7285. <remarks>
  7286. Return -1 if there is no cell which contains data or style in the worksheet.
  7287. </remarks>
  7288. </member>
  7289. <member name="P:Aspose.Cells.Cells.MinColumn">
  7290. <summary>
  7291. Minimum column index of cell which contains data or style.
  7292. </summary>
  7293. </member>
  7294. <member name="P:Aspose.Cells.Cells.MaxColumn">
  7295. <summary>
  7296. Maximum column index of cell which contains data or style.
  7297. </summary>
  7298. <remarks>
  7299. Return -1 if there is no cell.
  7300. </remarks>
  7301. </member>
  7302. <member name="P:Aspose.Cells.Cells.MinDataRow">
  7303. <summary>
  7304. Minimum row index of cell which contains data.
  7305. </summary>
  7306. </member>
  7307. <member name="P:Aspose.Cells.Cells.MaxDataRow">
  7308. <summary>
  7309. Maximum row index of cell which contains data.
  7310. </summary>
  7311. <remarks>
  7312. Return -1 if there is no cell which contains data.
  7313. </remarks>
  7314. </member>
  7315. <member name="P:Aspose.Cells.Cells.MinDataColumn">
  7316. <summary>
  7317. Minimum column index of cell which contains data.
  7318. </summary>
  7319. </member>
  7320. <member name="P:Aspose.Cells.Cells.MaxDataColumn">
  7321. <summary>
  7322. Maximum column index of cell which contains data.
  7323. </summary>
  7324. <remarks>
  7325. Return -1 if there is not cell which contains data.
  7326. Don't call this property repeatedly. This property will iterate all cells in a worksheet.</remarks>
  7327. </member>
  7328. <member name="P:Aspose.Cells.Cells.IsDefaultRowHeightMatched">
  7329. <summary>
  7330. Indicates that row height and default font height matches
  7331. </summary>
  7332. </member>
  7333. <member name="P:Aspose.Cells.Cells.IsDefaultRowHidden">
  7334. <summary>
  7335. Indicates whether the row is default hidden.
  7336. </summary>
  7337. </member>
  7338. <member name="P:Aspose.Cells.Cells.Columns">
  7339. <summary>
  7340. Gets the collection of <see cref="T:Aspose.Cells.Column" /> objects that represents the individual columns in this worksheet.
  7341. </summary>
  7342. </member>
  7343. <member name="P:Aspose.Cells.Cells.Ranges">
  7344. <summary>
  7345. Gets the collection of <see cref="T:Aspose.Cells.Range" /> objects created at run time.
  7346. </summary>
  7347. </member>
  7348. <member name="P:Aspose.Cells.Cells.LastCell">
  7349. <summary>
  7350. Gets the last cell in this worksheet.
  7351. </summary>
  7352. </member>
  7353. <member name="P:Aspose.Cells.Cells.MaxDisplayRange">
  7354. <summary>
  7355. Gets the max range which includes data, merged cells and shapes.
  7356. </summary>
  7357. </member>
  7358. <member name="P:Aspose.Cells.Cells.FirstCell">
  7359. <summary>
  7360. Gets the first cell in this worksheet.
  7361. </summary>
  7362. </member>
  7363. <member name="T:Aspose.Cells.ColumnCollection">
  7364. <summary>
  7365. Collects the <seealso cref="T:Aspose.Cells.Column" /> objects that represent the individual columns in a worksheet.
  7366. </summary>
  7367. <example>
  7368. <code>
  7369. [C#]
  7370. //Instantiating a Workbook object
  7371. Workbook workbook = new Workbook();
  7372. //Obtaining the reference of the first worksheet
  7373. Worksheet worksheet = workbook.Worksheets[0];
  7374. //Add new Style to Workbook
  7375. Style style = workbook.CreateStyle();
  7376. //Setting the background color to Blue
  7377. style.ForegroundColor = Color.Blue;
  7378. //setting Background Pattern
  7379. style.Pattern = BackgroundType.Solid;
  7380. //New Style Flag
  7381. StyleFlag styleFlag = new StyleFlag();
  7382. //Set All Styles
  7383. styleFlag.All = true;
  7384. //Change the default width of first ten columns
  7385. for (int i = 0; i &lt; 10; i++)
  7386. {
  7387. worksheet.Cells.Columns[i].Width = 20;
  7388. }
  7389. //Get the Column with non default formatting
  7390. ColumnCollection columns = worksheet.Cells.Columns;
  7391. foreach (Column column in columns)
  7392. {
  7393. //Apply Style to first ten Columns
  7394. column.ApplyStyle(style, styleFlag);
  7395. }
  7396. //Saving the Excel file
  7397. workbook.Save("D:\\book1.xls");
  7398. [VB.NET]
  7399. 'Instantiating a Workbook object
  7400. Dim workbook As New Workbook()
  7401. 'Obtaining the reference of the first worksheet
  7402. Dim worksheet As Worksheet = workbook.Worksheets(0)
  7403. 'Add new Style to Workbook
  7404. Dim style As Style = workbook.CreateStyles()
  7405. 'Setting the background color to Blue
  7406. style.ForegroundColor = Color.Blue
  7407. 'setting Background Pattern
  7408. style.Pattern = BackgroundType.Solid
  7409. 'New Style Flag
  7410. Dim styleFlag As New StyleFlag()
  7411. 'Set All Styles
  7412. styleFlag.All = True
  7413. 'Change the default width of first ten columns
  7414. For i As Integer = 0 To 9
  7415. worksheet.Cells.Columns(i).Width = 20
  7416. Next i
  7417. 'Get the Column with non default formatting
  7418. Dim columns As ColumnCollection = worksheet.Cells.Columns
  7419. For Each column As Column In columns
  7420. 'Apply Style to first ten Columns
  7421. column.ApplyStyle(style, styleFlag)
  7422. Next column
  7423. 'Saving the Excel file
  7424. workbook.Save("D:\book1.xls")
  7425. </code>
  7426. </example>
  7427. </member>
  7428. <member name="M:Aspose.Cells.ColumnCollection.GetByIndex(System.Int32)">
  7429. <summary>
  7430. Gets the column object by the index.
  7431. </summary>
  7432. <param name="index">
  7433. </param>
  7434. <returns>Returns the column object.</returns>
  7435. <remarks>NOTE: This member is now obsolete. Instead,
  7436. please use Columns.GetColumnByIndex() method.
  7437. This property will be removed 12 months later since June 2010.
  7438. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  7439. </member>
  7440. <member name="M:Aspose.Cells.ColumnCollection.GetColumnByIndex(System.Int32)">
  7441. <summary>
  7442. Gets the <see cref="T:Aspose.Cells.Column" /> object by the position in the list.
  7443. </summary>
  7444. <param name="index">The position in the list.</param>
  7445. <returns>Returns the column object.</returns>
  7446. </member>
  7447. <member name="P:Aspose.Cells.ColumnCollection.Item(System.Int32)">
  7448. <summary>
  7449. Gets a <seealso cref="T:Aspose.Cells.Column" /> object by column index. The Column object of given column index will be instantiated if it does not exist before.
  7450. </summary>
  7451. </member>
  7452. <member name="T:Aspose.Cells.Column">
  7453. <summary>
  7454. Represents a single column in a worksheet.
  7455. </summary>
  7456. <example>
  7457. <code>
  7458. [C#]
  7459. //Instantiating a Workbook object
  7460. Workbook workbook = new Workbook();
  7461. //Obtaining the reference of the first worksheet
  7462. Worksheet worksheet = workbook.Worksheets[0];
  7463. Style style = workbook.CreateStyle();
  7464. //Setting the background color to Blue
  7465. style.BackgroundColor = Color.Blue;
  7466. //Setting the foreground color to Red
  7467. style.ForegroundColor= Color.Red;
  7468. //setting Background Pattern
  7469. style.Pattern = BackgroundType.DiagonalStripe;
  7470. //New Style Flag
  7471. StyleFlag styleFlag = new StyleFlag();
  7472. //Set All Styles
  7473. styleFlag.All = true;
  7474. //Get first Column
  7475. Column column = worksheet.Cells.Columns[0];
  7476. //Apply Style to first Column
  7477. column.ApplyStyle(style, styleFlag);
  7478. //Saving the Excel file
  7479. workbook.Save("D:\\book1.xls");
  7480. [VB.NET]
  7481. 'Instantiating a Workbook object
  7482. Dim workbook As New Workbook()
  7483. 'Obtaining the reference of the first worksheet
  7484. Dim worksheet As Worksheet = workbook.Worksheets(0)
  7485. Dim style As Style = workbook.CreateStyle()
  7486. 'Setting the background color to Blue
  7487. style.BackgroundColor = Color.Blue
  7488. 'Setting the foreground color to Red
  7489. style.ForegroundColor = Color.Red
  7490. 'setting Background Pattern
  7491. style.Pattern = BackgroundType.DiagonalStripe
  7492. 'New Style Flag
  7493. Dim styleFlag As New StyleFlag()
  7494. 'Set All Styles
  7495. styleFlag.All = True
  7496. 'Get first Column
  7497. Dim column As Column = worksheet.Cells.Columns(0)
  7498. 'Apply Style to first Column
  7499. column.ApplyStyle(style, styleFlag)
  7500. 'Saving the Excel file
  7501. workbook.Save("D:\book1.xls")
  7502. </code>
  7503. </example>
  7504. </member>
  7505. <member name="M:Aspose.Cells.Column.ApplyStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  7506. <summary>
  7507. Applies formats for a whole column.
  7508. </summary>
  7509. <param name="style">The style object which will be applied.</param>
  7510. <param name="flag">Flags which indicates applied formatting properties.</param>
  7511. </member>
  7512. <member name="P:Aspose.Cells.Column.Index">
  7513. <summary>
  7514. Gets the index of this column.
  7515. </summary>
  7516. </member>
  7517. <member name="P:Aspose.Cells.Column.Width">
  7518. <summary>
  7519. Gets and sets the column width in unit of characters.
  7520. </summary>
  7521. </member>
  7522. <member name="P:Aspose.Cells.Column.GroupLevel">
  7523. <summary>
  7524. Gets the group level of the column.
  7525. </summary>
  7526. </member>
  7527. <member name="P:Aspose.Cells.Column.IsHidden">
  7528. <summary>
  7529. Indicates whether the column is hidden.
  7530. </summary>
  7531. </member>
  7532. <member name="P:Aspose.Cells.Column.Style">
  7533. <summary>
  7534. Gets the style of this column.
  7535. </summary>
  7536. <remarks>
  7537. You have to call Column.ApplyStyle() method to save your changing with the row style,
  7538. otherwise it will not effect.
  7539. </remarks>
  7540. </member>
  7541. <member name="T:Aspose.Cells.SubtotalSetting">
  7542. <summary>
  7543. Represents the setting of the subtotal .
  7544. </summary>
  7545. </member>
  7546. <member name="P:Aspose.Cells.SubtotalSetting.GroupBy">
  7547. <summary>
  7548. The field to group by, as a zero-based integer offset
  7549. </summary>
  7550. </member>
  7551. <member name="P:Aspose.Cells.SubtotalSetting.SubtotalFunction">
  7552. <summary>
  7553. The subtotal function.
  7554. </summary>
  7555. </member>
  7556. <member name="P:Aspose.Cells.SubtotalSetting.TotalList">
  7557. <summary>
  7558. An array of zero-based field offsets, indicating the fields to which the subtotals are added.
  7559. </summary>
  7560. </member>
  7561. <member name="P:Aspose.Cells.SubtotalSetting.SummaryBelowData">
  7562. <summary>
  7563. Indicates whether add summary below data.
  7564. </summary>
  7565. </member>
  7566. <member name="T:Aspose.Cells.OdsLoadOptions">
  7567. <summary>
  7568. Represents the options of loading ods file.
  7569. </summary>
  7570. </member>
  7571. <member name="M:Aspose.Cells.OdsLoadOptions.#ctor">
  7572. <summary>
  7573. Represents the options of loading ods file.
  7574. </summary>
  7575. </member>
  7576. <member name="M:Aspose.Cells.OdsLoadOptions.#ctor(Aspose.Cells.LoadFormat)">
  7577. <summary>
  7578. Represents the options of loading ods file.
  7579. </summary>
  7580. <param name="type">The load format type.</param>
  7581. </member>
  7582. <member name="P:Aspose.Cells.OdsLoadOptions.ApplyExcelDefaultStyleToHyperlink">
  7583. <summary>
  7584. Indicates whether applying the default style of the Excel to hyperlink.
  7585. </summary>
  7586. </member>
  7587. <member name="P:Aspose.Cells.OdsLoadOptions.RefreshPivotTables">
  7588. <summary>
  7589. Indicates whether refresh pivot tables when loading file.
  7590. </summary>
  7591. </member>
  7592. <member name="T:Aspose.Cells.Ods.OdsCellField">
  7593. <summary>
  7594. Represents the cell field of ods.
  7595. </summary>
  7596. </member>
  7597. <member name="P:Aspose.Cells.Ods.OdsCellField.CustomFormat">
  7598. <summary>
  7599. Represents the custom format of the field's value.
  7600. </summary>
  7601. </member>
  7602. <member name="P:Aspose.Cells.Ods.OdsCellField.FieldType">
  7603. <summary>
  7604. Gets and sets the type of the field.
  7605. </summary>
  7606. </member>
  7607. <member name="P:Aspose.Cells.Ods.OdsCellField.Row">
  7608. <summary>
  7609. Get and sets the row index of the cell.
  7610. </summary>
  7611. </member>
  7612. <member name="P:Aspose.Cells.Ods.OdsCellField.Column">
  7613. <summary>
  7614. Get and sets the column index of the cell.
  7615. </summary>
  7616. </member>
  7617. <member name="T:Aspose.Cells.Ods.OdsCellFieldCollection">
  7618. <summary>
  7619. Represents the fields of ODS.
  7620. </summary>
  7621. </member>
  7622. <member name="M:Aspose.Cells.Ods.OdsCellFieldCollection.Add(System.Int32,System.Int32,Aspose.Cells.Ods.OdsCellFieldType,System.String)">
  7623. <summary>
  7624. Adds a field.
  7625. </summary>
  7626. <param name="row">The row index.</param>
  7627. <param name="column">The column index.</param>
  7628. <param name="fieldType">The type of the field.</param>
  7629. <param name="format">The number format of the field.</param>
  7630. <returns>
  7631. </returns>
  7632. </member>
  7633. <member name="M:Aspose.Cells.Ods.OdsCellFieldCollection.UpdateFieldsValue">
  7634. <summary>
  7635. Update fields value to the cells.
  7636. </summary>
  7637. </member>
  7638. <member name="P:Aspose.Cells.Ods.OdsCellFieldCollection.Item(System.Int32)">
  7639. <summary>
  7640. Gets the field by the index.
  7641. </summary>
  7642. <param name="index">The index.</param>
  7643. <returns>
  7644. </returns>
  7645. </member>
  7646. <member name="P:Aspose.Cells.Ods.OdsCellFieldCollection.Item(System.Int32,System.Int32)">
  7647. <summary>
  7648. Gets the field by row and column index.
  7649. </summary>
  7650. <param name="row">The row index.</param>
  7651. <param name="column">The column index.</param>
  7652. <returns>
  7653. </returns>
  7654. </member>
  7655. <member name="T:Aspose.Cells.Ods.OdsCellFieldType">
  7656. <summary>
  7657. Represents the cell field type of ods.
  7658. </summary>
  7659. </member>
  7660. <member name="F:Aspose.Cells.Ods.OdsCellFieldType.Date">
  7661. <summary>
  7662. Current date.
  7663. </summary>
  7664. </member>
  7665. <member name="F:Aspose.Cells.Ods.OdsCellFieldType.SheetName">
  7666. <summary>
  7667. The name of the sheet.
  7668. </summary>
  7669. </member>
  7670. <member name="F:Aspose.Cells.Ods.OdsCellFieldType.Title">
  7671. <summary>
  7672. The name of the file.
  7673. </summary>
  7674. </member>
  7675. <member name="T:Aspose.Cells.Ods.OdsGeneratorType">
  7676. <summary>
  7677. Represents the type of ODS generator.
  7678. </summary>
  7679. </member>
  7680. <member name="F:Aspose.Cells.Ods.OdsGeneratorType.LibreOffice">
  7681. <summary>
  7682. Libre Office
  7683. </summary>
  7684. </member>
  7685. <member name="F:Aspose.Cells.Ods.OdsGeneratorType.OpenOffice">
  7686. <summary>
  7687. Open Office
  7688. </summary>
  7689. </member>
  7690. <member name="T:Aspose.Cells.Ods.OdsPageBackground">
  7691. <summary>
  7692. Represents the page background of ods.
  7693. </summary>
  7694. </member>
  7695. <member name="P:Aspose.Cells.Ods.OdsPageBackground.Type">
  7696. <summary>
  7697. Gets and sets the page background type.
  7698. </summary>
  7699. </member>
  7700. <member name="P:Aspose.Cells.Ods.OdsPageBackground.Color">
  7701. <summary>
  7702. Gets and sets the color of background.
  7703. </summary>
  7704. </member>
  7705. <member name="P:Aspose.Cells.Ods.OdsPageBackground.GraphicType">
  7706. <summary>
  7707. Gets and sets the page background graphic type.
  7708. </summary>
  7709. </member>
  7710. <member name="P:Aspose.Cells.Ods.OdsPageBackground.GraphicPositionType">
  7711. <summary>
  7712. Gets and set the background graphic position.
  7713. </summary>
  7714. </member>
  7715. <member name="P:Aspose.Cells.Ods.OdsPageBackground.IsLink">
  7716. <summary>
  7717. Indicates whether it's a linked graphic.
  7718. </summary>
  7719. </member>
  7720. <member name="P:Aspose.Cells.Ods.OdsPageBackground.LinkedGraphic">
  7721. <summary>
  7722. Gets and sets the linked graphic path.
  7723. </summary>
  7724. </member>
  7725. <member name="P:Aspose.Cells.Ods.OdsPageBackground.GraphicData">
  7726. <summary>
  7727. Gets and sets the graphic data.
  7728. </summary>
  7729. </member>
  7730. <member name="T:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType">
  7731. <summary>
  7732. Represents the position.
  7733. </summary>
  7734. </member>
  7735. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.TopLeft">
  7736. <summary>
  7737. Top left.
  7738. </summary>
  7739. </member>
  7740. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.TopCenter">
  7741. <summary>
  7742. Top center.
  7743. </summary>
  7744. </member>
  7745. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.TopRight">
  7746. <summary>
  7747. Top right.
  7748. </summary>
  7749. </member>
  7750. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.CenterLeft">
  7751. <summary>
  7752. Center left.
  7753. </summary>
  7754. </member>
  7755. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.CenterCenter">
  7756. <summary>
  7757. Center.
  7758. </summary>
  7759. </member>
  7760. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.CenterRight">
  7761. <summary>
  7762. Center right.
  7763. </summary>
  7764. </member>
  7765. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.BottomLeft">
  7766. <summary>
  7767. Bottom left.
  7768. </summary>
  7769. </member>
  7770. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.BottomCenter">
  7771. <summary>
  7772. Bottom center.
  7773. </summary>
  7774. </member>
  7775. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicPositionType.BottomRight">
  7776. <summary>
  7777. Bottom right.
  7778. </summary>
  7779. </member>
  7780. <member name="T:Aspose.Cells.Ods.OdsPageBackgroundGraphicType">
  7781. <summary>
  7782. Represents the type of formatting page background with image.
  7783. </summary>
  7784. </member>
  7785. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicType.Position">
  7786. <summary>
  7787. Set the image at specific position.
  7788. </summary>
  7789. </member>
  7790. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicType.Area">
  7791. <summary>
  7792. Stretch the image.
  7793. </summary>
  7794. </member>
  7795. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundGraphicType.Tile">
  7796. <summary>
  7797. Repeat and repeat the image.
  7798. </summary>
  7799. </member>
  7800. <member name="T:Aspose.Cells.Ods.OdsPageBackgroundType">
  7801. <summary>
  7802. Represents the page background type of ods.
  7803. </summary>
  7804. </member>
  7805. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundType.None">
  7806. <summary>
  7807. No background.
  7808. </summary>
  7809. </member>
  7810. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundType.Color">
  7811. <summary>
  7812. Formats the background with color.
  7813. </summary>
  7814. </member>
  7815. <member name="F:Aspose.Cells.Ods.OdsPageBackgroundType.Graphic">
  7816. <summary>
  7817. Formats the background with image.
  7818. </summary>
  7819. </member>
  7820. <member name="T:Aspose.Cells.PageLayoutAlignmentType">
  7821. <summary>
  7822. Enumerates page layout alignment types.
  7823. </summary>
  7824. </member>
  7825. <member name="F:Aspose.Cells.PageLayoutAlignmentType.Bottom">
  7826. <summary>
  7827. Represents bottom page layout alignment.
  7828. </summary>
  7829. </member>
  7830. <member name="F:Aspose.Cells.PageLayoutAlignmentType.Center">
  7831. <summary>
  7832. Represents center page layout alignment.
  7833. </summary>
  7834. </member>
  7835. <member name="F:Aspose.Cells.PageLayoutAlignmentType.Left">
  7836. <summary>
  7837. Represents left page layout alignment.
  7838. </summary>
  7839. </member>
  7840. <member name="F:Aspose.Cells.PageLayoutAlignmentType.Right">
  7841. <summary>
  7842. Represents right page layout alignment.
  7843. </summary>
  7844. </member>
  7845. <member name="F:Aspose.Cells.PageLayoutAlignmentType.Top">
  7846. <summary>
  7847. Represents top page layout alignment.
  7848. </summary>
  7849. </member>
  7850. <member name="T:Aspose.Cells.PaneStateType">
  7851. <summary>
  7852. Represents state of the sheet's pane.
  7853. </summary>
  7854. </member>
  7855. <member name="F:Aspose.Cells.PaneStateType.Frozen">
  7856. <summary>
  7857. Panes are frozen, but were not before being frozen.
  7858. </summary>
  7859. </member>
  7860. <member name="F:Aspose.Cells.PaneStateType.FrozenSplit">
  7861. <summary>
  7862. Panes are frozen and were split before being frozen.
  7863. </summary>
  7864. </member>
  7865. <member name="F:Aspose.Cells.PaneStateType.Split">
  7866. <summary>
  7867. Panes are split, but not frozen.
  7868. </summary>
  7869. </member>
  7870. <member name="F:Aspose.Cells.PaneStateType.Normal">
  7871. <summary>
  7872. Panes are not frozen and not split.
  7873. </summary>
  7874. </member>
  7875. <member name="T:Aspose.Cells.QueryTables.DataMashup">
  7876. <summary>
  7877. Represents mashup data.
  7878. </summary>
  7879. </member>
  7880. <member name="P:Aspose.Cells.QueryTables.DataMashup.PowerQueryFormulas">
  7881. <summary>
  7882. Gets all power query formulas.
  7883. </summary>
  7884. </member>
  7885. <member name="P:Aspose.Cells.QueryTables.DataMashup.PowerQueryFormulaParameters">
  7886. <summary>
  7887. Gets all parameters of power query formulas.
  7888. </summary>
  7889. </member>
  7890. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormula">
  7891. <summary>
  7892. Represents the definition of power query formula.
  7893. </summary>
  7894. </member>
  7895. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormula.FormulaDefinition">
  7896. <summary>
  7897. Gets the definition of the power query formula.
  7898. </summary>
  7899. </member>
  7900. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormula.Name">
  7901. <summary>
  7902. Gets and sets the name of the power query formula.
  7903. </summary>
  7904. </member>
  7905. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormula.PowerQueryFormulaItems">
  7906. <summary>
  7907. Gets all items of power query formula.
  7908. </summary>
  7909. </member>
  7910. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaCollction">
  7911. <summary>
  7912. Represents all power query formulas in the mashup data.
  7913. </summary>
  7914. </member>
  7915. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaCollction.Item(System.Int32)">
  7916. <summary>
  7917. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormula" /> by the index in the list.
  7918. </summary>
  7919. <param name="index">The index.</param>
  7920. <returns>
  7921. </returns>
  7922. </member>
  7923. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaCollction.Item(System.String)">
  7924. <summary>
  7925. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormula" /> by the name of the power query formula.
  7926. </summary>
  7927. <param name="name">The name of the item.</param>
  7928. <returns>
  7929. </returns>
  7930. </member>
  7931. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaFunction">
  7932. <summary>
  7933. Represents the function of power query.
  7934. </summary>
  7935. </member>
  7936. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaFunction.F">
  7937. <summary>
  7938. Gets and sets the definition of function.
  7939. </summary>
  7940. </member>
  7941. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaItem">
  7942. <summary>
  7943. Represents the item of the power query formula.
  7944. </summary>
  7945. </member>
  7946. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaItem.Name">
  7947. <summary>
  7948. Gets the name of the item.
  7949. </summary>
  7950. </member>
  7951. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaItem.Value">
  7952. <summary>
  7953. Gets the value of the item.
  7954. </summary>
  7955. </member>
  7956. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaItemCollection">
  7957. <summary>
  7958. Represents all item of the power query formula.
  7959. </summary>
  7960. </member>
  7961. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaItemCollection.Item(System.Int32)">
  7962. <summary>
  7963. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormulaItem" /> by the index in the list.
  7964. </summary>
  7965. <param name="index">The index.</param>
  7966. <returns>
  7967. </returns>
  7968. </member>
  7969. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaItemCollection.Item(System.String)">
  7970. <summary>
  7971. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormulaItem" /> by the name of the item.
  7972. </summary>
  7973. <param name="name">The name of the item.</param>
  7974. <returns>
  7975. </returns>
  7976. </member>
  7977. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaParameter">
  7978. <summary>
  7979. Represents the parameter of power query formula.
  7980. </summary>
  7981. </member>
  7982. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaParameter.Name">
  7983. <summary>
  7984. Gets the name of parameter.
  7985. </summary>
  7986. </member>
  7987. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaParameter.Value">
  7988. <summary>
  7989. Gets the value of parameter.
  7990. </summary>
  7991. </member>
  7992. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaParameter.ParameterDefinition">
  7993. <summary>
  7994. Gets the definition of the parameter.
  7995. </summary>
  7996. </member>
  7997. <member name="T:Aspose.Cells.QueryTables.PowerQueryFormulaParameterCollection">
  7998. <summary>
  7999. Represents the
  8000. </summary>
  8001. </member>
  8002. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaParameterCollection.Item(System.Int32)">
  8003. <summary>
  8004. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormulaParameter" /> by the index in the list.
  8005. </summary>
  8006. <param name="index">The index.</param>
  8007. <returns>
  8008. </returns>
  8009. </member>
  8010. <member name="P:Aspose.Cells.QueryTables.PowerQueryFormulaParameterCollection.Item(System.String)">
  8011. <summary>
  8012. Gets <see cref="T:Aspose.Cells.QueryTables.PowerQueryFormulaParameter" /> by the name of the item.
  8013. </summary>
  8014. <param name="name">The name of the item.</param>
  8015. <returns>
  8016. </returns>
  8017. </member>
  8018. <member name="T:Aspose.Cells.Range">
  8019. <summary>
  8020. Encapsulates the object that represents a range of cells within a spreadsheet.
  8021. </summary>
  8022. </member>
  8023. <member name="M:Aspose.Cells.Range.GetEnumerator">
  8024. <summary>
  8025. Gets the enumerator for cells in this Range.
  8026. </summary>
  8027. <returns>The cells enumerator</returns>
  8028. <remarks>When traversing elements by the returned Enumerator, the cells collection
  8029. should not be modified(such as operations that will cause new Cell/Row be instantiated or existing Cell/Row be deleted).
  8030. Otherwise the enumerator may not be able to traverse all cells correctly(some elements may be traversed repeatedly or skipped).</remarks>
  8031. </member>
  8032. <member name="M:Aspose.Cells.Range.IsIntersect(Aspose.Cells.Range)">
  8033. <summary>
  8034. Indicates whether the range is intersect.
  8035. </summary>
  8036. <param name="range">The range.</param>
  8037. <returns> Whether the range is intersect.</returns>
  8038. <remarks>If the two ranges area not in the same worksheet ,return false.</remarks>
  8039. </member>
  8040. <member name="M:Aspose.Cells.Range.Intersect(Aspose.Cells.Range)">
  8041. <summary>
  8042. Returns a Range object that represents the rectangular intersection of two ranges.
  8043. </summary>
  8044. <param name="range">The intersecting range.</param>
  8045. <returns>a Range object</returns>
  8046. <remarks>If the two ranges are not intersected, returns null.</remarks>
  8047. </member>
  8048. <member name="M:Aspose.Cells.Range.Union(Aspose.Cells.Range)">
  8049. <summary>
  8050. Returns the union of two ranges.
  8051. </summary>
  8052. <param name="range">The range</param>
  8053. <returns>The union of two ranges.
  8054. </returns>
  8055. </member>
  8056. <member name="M:Aspose.Cells.Range.Merge">
  8057. <summary>
  8058. Combines a range of cells into a single cell.
  8059. </summary>
  8060. <remarks>
  8061. Reference the merged cell via the address of the upper-left cell in the range.
  8062. </remarks>
  8063. </member>
  8064. <member name="M:Aspose.Cells.Range.UnMerge">
  8065. <summary>
  8066. Unmerges merged cells of this range.
  8067. </summary>
  8068. </member>
  8069. <member name="M:Aspose.Cells.Range.PutValue(System.String,System.Boolean,System.Boolean)">
  8070. <summary>
  8071. Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset.
  8072. </summary>
  8073. <param name="stringValue">Input value</param>
  8074. <param name="isConverted">True: converted to other data type if appropriate.</param>
  8075. <param name="setStyle">True: set the number format to cell's style when converting to other data type</param>
  8076. </member>
  8077. <member name="M:Aspose.Cells.Range.ApplyStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  8078. <summary>
  8079. Applies formats for a whole range.
  8080. </summary>
  8081. <param name="style">The style object which will be applied.</param>
  8082. <param name="flag">Flags which indicates applied formatting properties.</param>
  8083. <remarks>Each cell in this range will contains a <see cref="T:Aspose.Cells.Style" /> object.
  8084. So this is a memory-consuming method. Please use it carefully.</remarks>
  8085. </member>
  8086. <member name="M:Aspose.Cells.Range.SetStyle(Aspose.Cells.Style)">
  8087. <summary>
  8088. Sets the style of the range.
  8089. </summary>
  8090. <param name="style">The Style object.</param>
  8091. </member>
  8092. <member name="M:Aspose.Cells.Range.SetOutlineBorders(Aspose.Cells.CellBorderType,System.Drawing.Color)">
  8093. <summary>
  8094. Sets the outline borders around a range of cells with same border style and color.
  8095. </summary>
  8096. <param name="borderStyle">Border style.</param>
  8097. <param name="borderColor">Border color.</param>
  8098. </member>
  8099. <member name="M:Aspose.Cells.Range.SetOutlineBorders(Aspose.Cells.CellBorderType[],System.Drawing.Color[])">
  8100. <summary>
  8101. Sets out line borders around a range of cells.
  8102. </summary>
  8103. <param name="borderStyles">Border styles.</param>
  8104. <param name="borderColors">Border colors.</param>
  8105. <remarks>
  8106. Both the length of borderStyles and borderStyles must be 4.
  8107. The order of borderStyles and borderStyles must be top,bottom,left,right
  8108. </remarks>
  8109. </member>
  8110. <member name="M:Aspose.Cells.Range.SetOutlineBorder(Aspose.Cells.BorderType,Aspose.Cells.CellBorderType,System.Drawing.Color)">
  8111. <summary>
  8112. Sets outline border around a range of cells.
  8113. </summary>
  8114. <param name="borderEdge">Border edge.</param>
  8115. <param name="borderStyle">Border style.</param>
  8116. <param name="borderColor">Border color.</param>
  8117. </member>
  8118. <member name="M:Aspose.Cells.Range.MoveTo(System.Int32,System.Int32)">
  8119. <summary>
  8120. Move the current range to the dest range.
  8121. </summary>
  8122. <param name="destRow">The start row of the dest range.</param>
  8123. <param name="destColumn">The start column of the dest range.</param>
  8124. </member>
  8125. <member name="M:Aspose.Cells.Range.CopyData(Aspose.Cells.Range)">
  8126. <summary>
  8127. Copies cell data (including formulas) from a source range.
  8128. </summary>
  8129. <param name="range">Source <see cref="T:Aspose.Cells.Range" /> object.</param>
  8130. </member>
  8131. <member name="M:Aspose.Cells.Range.CopyValue(Aspose.Cells.Range)">
  8132. <summary>
  8133. Copies cell value from a source range.
  8134. </summary>
  8135. <param name="range">Source <see cref="T:Aspose.Cells.Range" /> object.</param>
  8136. </member>
  8137. <member name="M:Aspose.Cells.Range.CopyStyle(Aspose.Cells.Range)">
  8138. <summary>
  8139. Copies style settings from a source range.
  8140. </summary>
  8141. <param name="range">Source <see cref="T:Aspose.Cells.Range" /> object.</param>
  8142. </member>
  8143. <member name="M:Aspose.Cells.Range.Copy(Aspose.Cells.Range,Aspose.Cells.PasteOptions)">
  8144. <summary>
  8145. Copying the range with paste special options.
  8146. </summary>
  8147. <param name="range">The source range.</param>
  8148. <param name="options">The paste special options.</param>
  8149. </member>
  8150. <member name="M:Aspose.Cells.Range.Copy(Aspose.Cells.Range)">
  8151. <summary>
  8152. Copies data (including formulas), formatting, drawing objects etc. from a source range.
  8153. </summary>
  8154. <param name="range">Source <see cref="T:Aspose.Cells.Range" /> object.</param>
  8155. </member>
  8156. <member name="M:Aspose.Cells.Range.GetCellOrNull(System.Int32,System.Int32)">
  8157. <summary>
  8158. Gets <see cref="T:Aspose.Cells.Cell" /> object or null in this range.
  8159. </summary>
  8160. <param name="rowOffset">Row offset in this range, zero based.</param>
  8161. <param name="columnOffset">Column offset in this range, zero based.</param>
  8162. <returns>
  8163. <see cref="T:Aspose.Cells.Cell" /> object.</returns>
  8164. </member>
  8165. <member name="M:Aspose.Cells.Range.GetOffset(System.Int32,System.Int32)">
  8166. <summary>
  8167. Gets <see cref="T:Aspose.Cells.Range" /> range by offset.
  8168. </summary>
  8169. <param name="rowOffset">Row offset in this range, zero based.</param>
  8170. <param name="columnOffset">Column offset in this range, zero based.</param>
  8171. <returns>
  8172. </returns>
  8173. </member>
  8174. <member name="M:Aspose.Cells.Range.ToString">
  8175. <summary>
  8176. Returns a string represents the current Range object.
  8177. </summary>
  8178. <returns>
  8179. </returns>
  8180. </member>
  8181. <member name="M:Aspose.Cells.Range.ExportDataTable">
  8182. <summary>
  8183. Exports data in this range to a <see cref="T:System.Data.DataTable" /> object.
  8184. </summary>
  8185. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  8186. </member>
  8187. <member name="M:Aspose.Cells.Range.ExportDataTable(Aspose.Cells.ExportTableOptions)">
  8188. <summary>
  8189. Exports data in this range to a <see cref="T:System.Data.DataTable" /> object.
  8190. </summary>
  8191. <param name="options">The options of exporting range to datatable.</param>
  8192. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  8193. </member>
  8194. <member name="M:Aspose.Cells.Range.ExportDataTableAsString">
  8195. <summary>
  8196. Exports data in this range to a <see cref="T:System.Data.DataTable" /> object.
  8197. </summary>
  8198. <returns>Exported <see cref="T:System.Data.DataTable" /> object.</returns>
  8199. <remarks>All data in the <see cref="T:Aspose.Cells.Cells" /> collection are converted to strings.</remarks>
  8200. </member>
  8201. <member name="P:Aspose.Cells.Range.Hyperlinks">
  8202. <summary>
  8203. Gets all hyperlink in the range.
  8204. </summary>
  8205. </member>
  8206. <member name="P:Aspose.Cells.Range.RowCount">
  8207. <summary>
  8208. Gets the count of rows in the range.
  8209. </summary>
  8210. </member>
  8211. <member name="P:Aspose.Cells.Range.ColumnCount">
  8212. <summary>
  8213. Gets the count of columns in the range.
  8214. </summary>
  8215. </member>
  8216. <member name="P:Aspose.Cells.Range.CellCount">
  8217. <summary>
  8218. Gets all cell count in the range.
  8219. </summary>
  8220. </member>
  8221. <member name="P:Aspose.Cells.Range.Name">
  8222. <summary>
  8223. Gets or sets the name of the range.
  8224. </summary>
  8225. <remarks>Named range is supported. For example,
  8226. <p>range.Name = "Sheet1!MyRange";</p></remarks>
  8227. </member>
  8228. <member name="P:Aspose.Cells.Range.RefersTo">
  8229. <summary>
  8230. Gets the range's refers to.
  8231. </summary>
  8232. </member>
  8233. <member name="P:Aspose.Cells.Range.Address">
  8234. <summary>
  8235. Gets address of the range.
  8236. </summary>
  8237. </member>
  8238. <member name="P:Aspose.Cells.Range.FirstRow">
  8239. <summary>
  8240. Gets the index of the first row of the range.
  8241. </summary>
  8242. </member>
  8243. <member name="P:Aspose.Cells.Range.FirstColumn">
  8244. <summary>
  8245. Gets the index of the first column of the range.
  8246. </summary>
  8247. </member>
  8248. <member name="P:Aspose.Cells.Range.Value">
  8249. <summary>
  8250. Gets and sets the value of the range.
  8251. </summary>
  8252. <remarks>
  8253. If the range contains multiple cells, return a two-dimension <see cref="T:System.Array" /> object.
  8254. If applies object array to the range, it should be a two-dimension <see cref="T:System.Array" /> object.
  8255. </remarks>
  8256. </member>
  8257. <member name="P:Aspose.Cells.Range.ColumnWidth">
  8258. <summary>
  8259. Sets or gets the column width of this range
  8260. </summary>
  8261. </member>
  8262. <member name="P:Aspose.Cells.Range.RowHeight">
  8263. <summary>
  8264. Sets or gets the height of rows in this range
  8265. </summary>
  8266. </member>
  8267. <member name="P:Aspose.Cells.Range.Item(System.Int32,System.Int32)">
  8268. <summary>
  8269. Gets <see cref="T:Aspose.Cells.Cell" /> object in this range.
  8270. </summary>
  8271. <param name="rowOffset">Row offset in this range, zero based.</param>
  8272. <param name="columnOffset">Column offset in this range, zero based.</param>
  8273. <returns>
  8274. <see cref="T:Aspose.Cells.Cell" /> object.</returns>
  8275. </member>
  8276. <member name="P:Aspose.Cells.Range.EntireColumn">
  8277. <summary>
  8278. Gets a Range object that represents the entire column (or columns) that contains the specified range.
  8279. </summary>
  8280. </member>
  8281. <member name="P:Aspose.Cells.Range.EntireRow">
  8282. <summary>
  8283. Gets a Range object that represents the entire row (or rows) that contains the specified range.
  8284. </summary>
  8285. </member>
  8286. <member name="P:Aspose.Cells.Range.Worksheet">
  8287. <summary>
  8288. Gets the <see cref="P:Aspose.Cells.Range.Worksheet" />object which contains this range.
  8289. </summary>
  8290. </member>
  8291. <member name="T:Aspose.Cells.ResourceLoadingType">
  8292. <summary>
  8293. Represents how to loading the linked resource.
  8294. </summary>
  8295. </member>
  8296. <member name="F:Aspose.Cells.ResourceLoadingType.Default">
  8297. <summary>
  8298. Loads this resource as usual.
  8299. </summary>
  8300. </member>
  8301. <member name="F:Aspose.Cells.ResourceLoadingType.Skip">
  8302. <summary>
  8303. Skips loading of this resource.
  8304. </summary>
  8305. </member>
  8306. <member name="F:Aspose.Cells.ResourceLoadingType.UserProvided">
  8307. <summary>
  8308. Use stream provided by user
  8309. </summary>
  8310. </member>
  8311. <member name="T:Aspose.Cells.RowCollection">
  8312. <summary>
  8313. Collects the <seealso cref="T:Aspose.Cells.Row" /> objects that represent the individual rows in a worksheet.
  8314. </summary>
  8315. </member>
  8316. <member name="M:Aspose.Cells.RowCollection.GetEnumerator">
  8317. <summary>
  8318. Gets an enumerator that iterates through this collection
  8319. </summary>
  8320. <returns>enumerator</returns>
  8321. </member>
  8322. <member name="M:Aspose.Cells.RowCollection.GetRowByIndex(System.Int32)">
  8323. <summary>
  8324. Gets the row object by the position in the list.
  8325. </summary>
  8326. <param name="index">The position.</param>
  8327. <returns>The Row object at given position.</returns>
  8328. </member>
  8329. <member name="M:Aspose.Cells.RowCollection.Clear">
  8330. <summary>
  8331. Clear all rows and cells.
  8332. </summary>
  8333. </member>
  8334. <member name="M:Aspose.Cells.RowCollection.RemoveAt(System.Int32)">
  8335. <summary>
  8336. Remove the row at the specified index
  8337. </summary>
  8338. <param name="index">zero-based row index</param>
  8339. </member>
  8340. <member name="P:Aspose.Cells.RowCollection.Count">
  8341. <summary>
  8342. Gets the number of rows in this collection.
  8343. </summary>
  8344. </member>
  8345. <member name="P:Aspose.Cells.RowCollection.Item(System.Int32)">
  8346. <summary>
  8347. Gets a <seealso cref="T:Aspose.Cells.Row" /> object by given row index. The Row object of given row index will be instantiated if it does not exist before.
  8348. </summary>
  8349. </member>
  8350. <member name="T:Aspose.Cells.Row">
  8351. <summary>
  8352. Represents a single row in a worksheet.
  8353. </summary>
  8354. </member>
  8355. <member name="M:Aspose.Cells.Row.GetCellByIndex(System.Int32)">
  8356. <summary>
  8357. Get the cell by specific index in the list.
  8358. </summary>
  8359. <param name="index">The position.</param>
  8360. <returns>The Cell object.</returns>
  8361. <remarks>NOTE: This member is now obsolete.
  8362. Instead, please use Row.GetEnumerator() method to iterate all cells in this row.
  8363. This property will be removed 12 months later since February 2015.
  8364. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  8365. </member>
  8366. <member name="M:Aspose.Cells.Row.GetEnumerator">
  8367. <summary>
  8368. Gets the cells enumerator
  8369. </summary>
  8370. <returns>The cells enumerator</returns>
  8371. </member>
  8372. <member name="M:Aspose.Cells.Row.GetCellOrNull(System.Int32)">
  8373. <summary>
  8374. Gets the cell or null in the specific index.
  8375. </summary>
  8376. <param name="column">The column index</param>
  8377. <returns>Returns the cell object if the cell exists.
  8378. Or returns null if the cell object does not exist.</returns>
  8379. </member>
  8380. <member name="M:Aspose.Cells.Row.CopySettings(Aspose.Cells.Row,System.Boolean)">
  8381. <summary>
  8382. Copy settings of row, such as style, height, visibility, ...etc.
  8383. </summary>
  8384. <param name="source">the source row whose settings will be copied to this one</param>
  8385. <param name="checkStyle">whether check and gather style.
  8386. Only takes effect and be needed when two row objects belong to different workbook and the styles of two workbooks are different.</param>
  8387. </member>
  8388. <member name="M:Aspose.Cells.Row.ApplyStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  8389. <summary>
  8390. Applies formats for a whole row.
  8391. </summary>
  8392. <param name="style">The style object which will be applied.</param>
  8393. <param name="flag">Flags which indicates applied formatting properties.</param>
  8394. </member>
  8395. <member name="M:Aspose.Cells.Row.Equals(System.Object)">
  8396. <summary>
  8397. Checks whether this object refers to the same row with another.
  8398. </summary>
  8399. <param name="obj">another object</param>
  8400. <returns>true if two objects refers to the same row.</returns>
  8401. </member>
  8402. <member name="M:Aspose.Cells.Row.Equals(Aspose.Cells.Row)">
  8403. <summary>
  8404. Checks whether this object refers to the same row with another row object.
  8405. </summary>
  8406. <param name="row">another row object</param>
  8407. <returns>true if two row objects refers to the same row.</returns>
  8408. </member>
  8409. <member name="P:Aspose.Cells.Row.IsBlank">
  8410. <summary>
  8411. Indicates whether the row contains any data
  8412. </summary>
  8413. </member>
  8414. <member name="P:Aspose.Cells.Row.Item(System.Int32)">
  8415. <summary>
  8416. Gets the cell.
  8417. </summary>
  8418. <param name="column">The column index</param>
  8419. <returns>
  8420. </returns>
  8421. </member>
  8422. <member name="P:Aspose.Cells.Row.Height">
  8423. <summary>
  8424. Gets and sets the row height in unit of Points.
  8425. </summary>
  8426. </member>
  8427. <member name="P:Aspose.Cells.Row.IsHidden">
  8428. <summary>
  8429. Indicates whether the row is hidden.
  8430. </summary>
  8431. </member>
  8432. <member name="P:Aspose.Cells.Row.Index">
  8433. <summary>
  8434. Gets the index of this row.
  8435. </summary>
  8436. </member>
  8437. <member name="P:Aspose.Cells.Row.GroupLevel">
  8438. <summary>
  8439. Gets the group level of the row.
  8440. </summary>
  8441. </member>
  8442. <member name="P:Aspose.Cells.Row.IsHeightMatched">
  8443. <summary>
  8444. Indicates that row height and default font height matches
  8445. </summary>
  8446. </member>
  8447. <member name="P:Aspose.Cells.Row.Style">
  8448. <summary>
  8449. Represents the style of this row.
  8450. </summary>
  8451. <remarks> You have to call Row.ApplyStyle() method to save your changing with the row style,
  8452. otherwise it will not effect.
  8453. </remarks>
  8454. </member>
  8455. <member name="P:Aspose.Cells.Row.FirstCell">
  8456. <summary>
  8457. Gets the first cell object in the row.
  8458. </summary>
  8459. </member>
  8460. <member name="P:Aspose.Cells.Row.FirstDataCell">
  8461. <summary>
  8462. Gets the first non-blank cell in the row.
  8463. </summary>
  8464. </member>
  8465. <member name="P:Aspose.Cells.Row.LastCell">
  8466. <summary>
  8467. Gets the last cell object in the row.
  8468. </summary>
  8469. </member>
  8470. <member name="P:Aspose.Cells.Row.LastDataCell">
  8471. <summary>
  8472. Gets the last non-blank cell in the row.
  8473. </summary>
  8474. </member>
  8475. <member name="T:Aspose.Cells.DocxSaveOptions">
  8476. <summary>
  8477. Represents options of saving docx file.
  8478. </summary>
  8479. </member>
  8480. <member name="T:Aspose.Cells.SaveOptions">
  8481. <summary>
  8482. Represents all save options
  8483. </summary>
  8484. </member>
  8485. <member name="P:Aspose.Cells.SaveOptions.SaveFormat">
  8486. <summary>
  8487. Gets the save file format.
  8488. </summary>
  8489. </member>
  8490. <member name="P:Aspose.Cells.SaveOptions.ClearData">
  8491. <summary>
  8492. Make the workbook empty after saving the file.
  8493. </summary>
  8494. </member>
  8495. <member name="P:Aspose.Cells.SaveOptions.CachedFileFolder">
  8496. <summary>
  8497. The cached file folder is used to store some large data.
  8498. </summary>
  8499. </member>
  8500. <member name="P:Aspose.Cells.SaveOptions.ValidateMergedAreas">
  8501. <summary>
  8502. Indicates whether validate merged cells before saving the file.
  8503. </summary>
  8504. <remarks>
  8505. The default value is false.
  8506. </remarks>
  8507. </member>
  8508. <member name="P:Aspose.Cells.SaveOptions.MergeAreas">
  8509. <summary>
  8510. Indicates whether merge the areas of conditional formatting and validation before saving the file.
  8511. </summary>
  8512. <remarks>
  8513. The default value is false.
  8514. </remarks>
  8515. </member>
  8516. <member name="P:Aspose.Cells.SaveOptions.CreateDirectory">
  8517. <summary>
  8518. If true and the directory does not exist, the directory will be automatically created before saving the file.
  8519. </summary>
  8520. <remarks>
  8521. The default value is false.
  8522. </remarks>
  8523. </member>
  8524. <member name="P:Aspose.Cells.SaveOptions.SortNames">
  8525. <summary>
  8526. Indicates whether sorting defined names before saving file.
  8527. </summary>
  8528. </member>
  8529. <member name="P:Aspose.Cells.SaveOptions.RefreshChartCache">
  8530. <summary>
  8531. Indicates whether refreshing chart cache data
  8532. </summary>
  8533. </member>
  8534. <member name="P:Aspose.Cells.SaveOptions.PdfExportImagesFolder">
  8535. <summary>
  8536. The physical folder where images will be saved when exporting a workbook to Aspose.Pdf XML format.
  8537. Default is an empty string.
  8538. </summary>
  8539. </member>
  8540. <member name="P:Aspose.Cells.SaveOptions.EnableHTTPCompression">
  8541. <summary>
  8542. Indicates if http compression is to be used in user's IIS.
  8543. </summary>
  8544. <remarks>Please specify this property to true if http compression is used.</remarks>
  8545. </member>
  8546. <member name="P:Aspose.Cells.SaveOptions.WarningCallback">
  8547. <summary>
  8548. Gets or sets warning callback.
  8549. </summary>
  8550. </member>
  8551. <member name="P:Aspose.Cells.SaveOptions.UpdateSmartArt">
  8552. <summary>
  8553. Indicates whether updating smart art setting.
  8554. The default value is false.
  8555. </summary>
  8556. <remarks>
  8557. Only effects after calling Shape.GetResultOfSmartArt() method and the cached shapes exist in the template file.
  8558. </remarks>
  8559. </member>
  8560. <member name="M:Aspose.Cells.DocxSaveOptions.#ctor">
  8561. <summary>
  8562. Represents the pptx save options.
  8563. </summary>
  8564. </member>
  8565. <member name="T:Aspose.Cells.MarkdownSaveOptions">
  8566. <summary>
  8567. Represents the save options for markdown.
  8568. </summary>
  8569. </member>
  8570. <member name="M:Aspose.Cells.MarkdownSaveOptions.#ctor">
  8571. <summary>
  8572. Creates options for saving markdown document
  8573. </summary>
  8574. </member>
  8575. <member name="P:Aspose.Cells.MarkdownSaveOptions.Encoding">
  8576. <summary>
  8577. Gets and sets the default encoding.
  8578. </summary>
  8579. </member>
  8580. <member name="P:Aspose.Cells.MarkdownSaveOptions.FormatStrategy">
  8581. <summary>
  8582. Gets and sets the format strategy when exporting the cell value as string.
  8583. </summary>
  8584. </member>
  8585. <member name="P:Aspose.Cells.MarkdownSaveOptions.LightCellsDataProvider">
  8586. <summary>
  8587. The Data provider to provide cells data for saving workbook in light mode.
  8588. </summary>
  8589. </member>
  8590. <member name="P:Aspose.Cells.MarkdownSaveOptions.LineSeparator">
  8591. <summary>
  8592. Gets and sets the line separator.
  8593. </summary>
  8594. </member>
  8595. <member name="T:Aspose.Cells.OoxmlCompliance">
  8596. <summary>
  8597. Allows to specify which OOXML specification will be used when saving in the Xlsx format.
  8598. </summary>
  8599. </member>
  8600. <member name="F:Aspose.Cells.OoxmlCompliance.Ecma376_2006">
  8601. <summary>
  8602. ECMA-376 1st Edition, 2006.
  8603. </summary>
  8604. </member>
  8605. <member name="F:Aspose.Cells.OoxmlCompliance.Iso29500_2008_Strict">
  8606. <summary>
  8607. ISO/IEC 29500:2008 Strict compliance level.
  8608. </summary>
  8609. </member>
  8610. <member name="T:Aspose.Cells.OoxmlCompressionType">
  8611. <summary>
  8612. The Ooxml compression type
  8613. </summary>
  8614. </member>
  8615. <member name="F:Aspose.Cells.OoxmlCompressionType.Level1">
  8616. <summary>
  8617. The fastest but least effective compression.
  8618. </summary>
  8619. </member>
  8620. <member name="F:Aspose.Cells.OoxmlCompressionType.Level2">
  8621. <summary>
  8622. A little slower, but better, than level 1.
  8623. </summary>
  8624. </member>
  8625. <member name="F:Aspose.Cells.OoxmlCompressionType.Level3">
  8626. <summary>
  8627. A little slower, but better, than level 2.
  8628. </summary>
  8629. </member>
  8630. <member name="F:Aspose.Cells.OoxmlCompressionType.Level4">
  8631. <summary>
  8632. A little slower, but better, than level 3.
  8633. </summary>
  8634. </member>
  8635. <member name="F:Aspose.Cells.OoxmlCompressionType.Level5">
  8636. <summary>
  8637. A little slower than level 4, but with better compression.
  8638. </summary>
  8639. </member>
  8640. <member name="F:Aspose.Cells.OoxmlCompressionType.Level6">
  8641. <summary>
  8642. A good balance of speed and compression efficiency.
  8643. </summary>
  8644. </member>
  8645. <member name="F:Aspose.Cells.OoxmlCompressionType.Level7">
  8646. <summary>
  8647. Pretty good compression!
  8648. </summary>
  8649. </member>
  8650. <member name="F:Aspose.Cells.OoxmlCompressionType.Level8">
  8651. <summary>
  8652. Better compression than Level7!
  8653. </summary>
  8654. </member>
  8655. <member name="F:Aspose.Cells.OoxmlCompressionType.Level9">
  8656. <summary>
  8657. The "best" compression, where best means greatest reduction in size of the input data stream.
  8658. This is also the slowest compression.
  8659. </summary>
  8660. </member>
  8661. <member name="T:Aspose.Cells.PptxSaveOptions">
  8662. <summary>
  8663. Represents the pptx save options.
  8664. </summary>
  8665. </member>
  8666. <member name="M:Aspose.Cells.PptxSaveOptions.#ctor">
  8667. <summary>
  8668. Represents the pptx save options.
  8669. </summary>
  8670. </member>
  8671. <member name="T:Aspose.Cells.DataSorterKeyCollection">
  8672. <summary>
  8673. Represents the key list of data sorter.
  8674. </summary>
  8675. </member>
  8676. <member name="P:Aspose.Cells.DataSorterKeyCollection.Item(System.Int32)">
  8677. <summary>
  8678. Gets and sets <see cref="T:Aspose.Cells.DataSorterKey" /> by index.
  8679. </summary>
  8680. <param name="index">The index.</param>
  8681. <returns>
  8682. </returns>
  8683. </member>
  8684. <member name="T:Aspose.Cells.Tables.TableToRangeOptions">
  8685. <summary>
  8686. Represents the options when converting table to range.
  8687. </summary>
  8688. </member>
  8689. <member name="P:Aspose.Cells.Tables.TableToRangeOptions.LastRow">
  8690. <summary>
  8691. Gets and sets the last row index of the table.
  8692. </summary>
  8693. </member>
  8694. <member name="T:Aspose.Cells.TargetModeType">
  8695. <summary>
  8696. Represents the type of target mode.
  8697. </summary>
  8698. </member>
  8699. <member name="F:Aspose.Cells.TargetModeType.External">
  8700. <summary>
  8701. External link
  8702. </summary>
  8703. </member>
  8704. <member name="F:Aspose.Cells.TargetModeType.FilePath">
  8705. <summary>
  8706. Local and full paths to files\folders.
  8707. </summary>
  8708. </member>
  8709. <member name="F:Aspose.Cells.TargetModeType.Email">
  8710. <summary>
  8711. Email.
  8712. </summary>
  8713. </member>
  8714. <member name="F:Aspose.Cells.TargetModeType.CellReference">
  8715. <summary>
  8716. Link on cell or named range.
  8717. </summary>
  8718. </member>
  8719. <member name="T:Aspose.Cells.UnionRange">
  8720. <summary>
  8721. Represents union range.
  8722. </summary>
  8723. </member>
  8724. <member name="M:Aspose.Cells.UnionRange.Merge">
  8725. <summary>
  8726. Combines a range of cells into a single cell.
  8727. </summary>
  8728. <remarks>
  8729. Reference the merged cell via the address of the upper-left cell in the range.
  8730. </remarks>
  8731. </member>
  8732. <member name="M:Aspose.Cells.UnionRange.UnMerge">
  8733. <summary>
  8734. Unmerges merged cells of this range.
  8735. </summary>
  8736. </member>
  8737. <member name="M:Aspose.Cells.UnionRange.PutValue(System.String,System.Boolean,System.Boolean)">
  8738. <summary>
  8739. Puts a value into the range, if appropriate the value will be converted to other data type and cell's number format will be reset.
  8740. </summary>
  8741. <param name="stringValue">Input value</param>
  8742. <param name="isConverted">True: converted to other data type if appropriate.</param>
  8743. <param name="setStyle">True: set the number format to cell's style when converting to other data type</param>
  8744. </member>
  8745. <member name="M:Aspose.Cells.UnionRange.SetStyle(Aspose.Cells.Style)">
  8746. <summary>
  8747. Sets the style of the range.
  8748. </summary>
  8749. <param name="style">The Style object.</param>
  8750. </member>
  8751. <member name="M:Aspose.Cells.UnionRange.ApplyStyle(Aspose.Cells.Style,Aspose.Cells.StyleFlag)">
  8752. <summary>
  8753. Applies formats for a whole range.
  8754. </summary>
  8755. <param name="style">The style object which will be applied.</param>
  8756. <param name="flag">Flags which indicates applied formatting properties.</param>
  8757. <remarks>Each cell in this range will contains a <see cref="T:Aspose.Cells.Style" /> object.
  8758. So this is a memory-consuming method. Please use it carefully.</remarks>
  8759. </member>
  8760. <member name="M:Aspose.Cells.UnionRange.Copy(Aspose.Cells.UnionRange,Aspose.Cells.PasteOptions)">
  8761. <summary>
  8762. Copying the range with paste special options.
  8763. </summary>
  8764. <param name="range">The source range.</param>
  8765. <param name="options">The paste special options.</param>
  8766. </member>
  8767. <member name="M:Aspose.Cells.UnionRange.GetEnumerator">
  8768. <summary>
  8769. Gets the enumerator for cells in this Range.
  8770. </summary>
  8771. <returns>The cells enumerator</returns>
  8772. <remarks>When traversing elements by the returned Enumerator, the cells collection
  8773. should not be modified(such as operations that will cause new Cell/Row be instantiated or existing Cell/Row be deleted).
  8774. Otherwise the enumerator may not be able to traverse all cells correctly(some elements may be traversed repeatedly or skipped).</remarks>
  8775. </member>
  8776. <member name="M:Aspose.Cells.UnionRange.SetOutlineBorders(Aspose.Cells.CellBorderType[],System.Drawing.Color[])">
  8777. <summary>
  8778. Sets out line borders around a range of cells.
  8779. </summary>
  8780. <param name="borderStyles">Border styles.</param>
  8781. <param name="borderColors">Border colors.</param>
  8782. <remarks>
  8783. Both the length of borderStyles and borderStyles must be 4.
  8784. The order of borderStyles and borderStyles must be top,bottom,left,right
  8785. </remarks>
  8786. </member>
  8787. <member name="M:Aspose.Cells.UnionRange.SetOutlineBorders(Aspose.Cells.CellBorderType,System.Drawing.Color)">
  8788. <summary>
  8789. Sets the outline borders around a range of cells with same border style and color.
  8790. </summary>
  8791. <param name="borderStyle">Border style.</param>
  8792. <param name="borderColor">Border color.</param>
  8793. </member>
  8794. <member name="M:Aspose.Cells.UnionRange.Intersect(System.String)">
  8795. <summary>
  8796. Intersects another range.
  8797. </summary>
  8798. <param name="range">The range.</param>
  8799. <remarks>If the two union ranges are not intersected, returns null.</remarks>
  8800. </member>
  8801. <member name="M:Aspose.Cells.UnionRange.Intersect(Aspose.Cells.UnionRange)">
  8802. <summary>
  8803. Intersects another range.
  8804. </summary>
  8805. <param name="unionRange">The range.</param>
  8806. <remarks>If the two union ranges are not intersected, returns null.</remarks>
  8807. </member>
  8808. <member name="M:Aspose.Cells.UnionRange.Intersect(Aspose.Cells.Range[])">
  8809. <summary>
  8810. Intersects another range.
  8811. </summary>
  8812. <param name="ranges">The range.</param>
  8813. <remarks>If the two union ranges are not intersected, returns null.</remarks>
  8814. </member>
  8815. <member name="M:Aspose.Cells.UnionRange.Union(System.String)">
  8816. <summary>
  8817. Union another range.
  8818. </summary>
  8819. <param name="range">The range.</param>
  8820. <returns>
  8821. </returns>
  8822. </member>
  8823. <member name="M:Aspose.Cells.UnionRange.Union(Aspose.Cells.UnionRange)">
  8824. <summary>
  8825. Union another range.
  8826. </summary>
  8827. <param name="unionRange">The range.</param>
  8828. <returns>
  8829. </returns>
  8830. </member>
  8831. <member name="M:Aspose.Cells.UnionRange.Union(Aspose.Cells.Range[])">
  8832. <summary>
  8833. Union the ranges.
  8834. </summary>
  8835. <param name="ranges">The ranges.</param>
  8836. <returns>
  8837. </returns>
  8838. </member>
  8839. <member name="P:Aspose.Cells.UnionRange.FirstRow">
  8840. <summary>
  8841. Gets the index of the first row of the range.
  8842. </summary>
  8843. <remarks>
  8844. Only effects when it only contains one range.
  8845. </remarks>
  8846. </member>
  8847. <member name="P:Aspose.Cells.UnionRange.FirstColumn">
  8848. <summary>
  8849. Gets the index of the first column of the range.
  8850. </summary>
  8851. <remarks>
  8852. Only effects when it only contains one range.
  8853. </remarks>
  8854. </member>
  8855. <member name="P:Aspose.Cells.UnionRange.RowCount">
  8856. <summary>
  8857. Gets the count of rows in the range.
  8858. </summary>
  8859. <remarks>
  8860. Only effects when it only contains one range.
  8861. </remarks>
  8862. </member>
  8863. <member name="P:Aspose.Cells.UnionRange.ColumnCount">
  8864. <summary>
  8865. Gets the count of rows in the range.
  8866. </summary>
  8867. <remarks>
  8868. Only effects when it only contains one range.
  8869. </remarks>
  8870. </member>
  8871. <member name="P:Aspose.Cells.UnionRange.Value">
  8872. <summary>
  8873. Gets and sets the values of the range.
  8874. </summary>
  8875. </member>
  8876. <member name="P:Aspose.Cells.UnionRange.Name">
  8877. <summary>
  8878. Gets or sets the name of the range.
  8879. </summary>
  8880. <remarks>Named range is supported. For example,
  8881. <p>range.Name = "Sheet1!MyRange";</p></remarks>
  8882. </member>
  8883. <member name="P:Aspose.Cells.UnionRange.RefersTo">
  8884. <summary>
  8885. Gets the range's refers to.
  8886. </summary>
  8887. </member>
  8888. <member name="P:Aspose.Cells.UnionRange.HasRange">
  8889. <summary>
  8890. Indicates whether this has range.
  8891. </summary>
  8892. </member>
  8893. <member name="P:Aspose.Cells.UnionRange.Hyperlinks">
  8894. <summary>
  8895. Gets all hyperlink in the range.
  8896. </summary>
  8897. </member>
  8898. <member name="P:Aspose.Cells.UnionRange.CellCount">
  8899. <summary>
  8900. Gets all cell count in the range.
  8901. </summary>
  8902. </member>
  8903. <member name="P:Aspose.Cells.UnionRange.RangeCount">
  8904. <summary>
  8905. Gets the count of the ranges.
  8906. </summary>
  8907. </member>
  8908. <member name="P:Aspose.Cells.UnionRange.Ranges">
  8909. <summary>
  8910. Gets all union ranges.
  8911. </summary>
  8912. </member>
  8913. <member name="T:Aspose.Cells.Utility.ExportRangeToJsonOptions">
  8914. <summary>
  8915. Indicates the options that exporting range to json.
  8916. </summary>
  8917. </member>
  8918. <member name="P:Aspose.Cells.Utility.ExportRangeToJsonOptions.HasHeaderRow">
  8919. <summary>
  8920. Indicates whether the range contains header row.
  8921. </summary>
  8922. </member>
  8923. <member name="P:Aspose.Cells.Utility.ExportRangeToJsonOptions.ExportAsString">
  8924. <summary>
  8925. Exports the string value of the cells to json.
  8926. </summary>
  8927. </member>
  8928. <member name="P:Aspose.Cells.Utility.ExportRangeToJsonOptions.Indent">
  8929. <summary>
  8930. Indicates the indent.
  8931. </summary>
  8932. <remarks>
  8933. If the indent is null or empty, the exported json is not formatted.
  8934. </remarks>
  8935. </member>
  8936. <member name="T:Aspose.Cells.Utility.JsonLayoutOptions">
  8937. <summary>
  8938. Represents the options of json layout type.
  8939. </summary>
  8940. </member>
  8941. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.ArrayAsTable">
  8942. <summary>
  8943. Processes Array as table.
  8944. </summary>
  8945. </member>
  8946. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.IgnoreNull">
  8947. <summary>
  8948. Indicates whether ignoring null value.
  8949. </summary>
  8950. </member>
  8951. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.IgnoreArrayTitle">
  8952. <summary>
  8953. Indicates whether ignore title if array is a property of object.
  8954. </summary>
  8955. </member>
  8956. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.IgnoreObjectTitle">
  8957. <summary>
  8958. Indicates whether ignore title if object is a property of object.
  8959. </summary>
  8960. </member>
  8961. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.ConvertNumericOrDate">
  8962. <summary>
  8963. Gets or sets a value that indicates whether the string in json is converted to numeric or date.
  8964. </summary>
  8965. </member>
  8966. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.NumberFormat">
  8967. <summary>
  8968. Gets and sets the format of numeric value.
  8969. </summary>
  8970. </member>
  8971. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.DateFormat">
  8972. <summary>
  8973. Gets and sets the format of date value.
  8974. </summary>
  8975. </member>
  8976. <member name="P:Aspose.Cells.Utility.JsonLayoutOptions.TitleStyle">
  8977. <summary>
  8978. Gets and sets the style of the title.
  8979. </summary>
  8980. </member>
  8981. <member name="T:Aspose.Cells.Utility.JsonUtility">
  8982. <summary>
  8983. Represents the utility class of processing json.
  8984. </summary>
  8985. </member>
  8986. <member name="M:Aspose.Cells.Utility.JsonUtility.ImportData(System.String,Aspose.Cells.Cells,System.Int32,System.Int32,Aspose.Cells.Utility.JsonLayoutOptions)">
  8987. <summary>
  8988. Import the json string.
  8989. </summary>
  8990. <param name="json">The json string.</param>
  8991. <param name="cells">The Cells.</param>
  8992. <param name="row">The row index.</param>
  8993. <param name="column">The column index.</param>
  8994. <param name="option">The options of import json string.</param>
  8995. </member>
  8996. <member name="M:Aspose.Cells.Utility.JsonUtility.ExportRangeToJson(Aspose.Cells.Range,Aspose.Cells.Utility.ExportRangeToJsonOptions)">
  8997. <summary>
  8998. Exporting the range to json file.
  8999. </summary>
  9000. <param name="range">The range.</param>
  9001. <param name="options">The options of exporting.</param>
  9002. <returns>The json string value.</returns>
  9003. </member>
  9004. <member name="T:Aspose.Cells.WebExtensions.WebExtensionTaskPane">
  9005. <summary>
  9006. Represents a persisted taskpane object.
  9007. </summary>
  9008. </member>
  9009. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.WebExtension">
  9010. <summary>
  9011. Gets and sets the web extension part associated with the taskpane instance
  9012. </summary>
  9013. </member>
  9014. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.DockState">
  9015. <summary>
  9016. Gets and sets the last-docked location of this taskpane object.
  9017. </summary>
  9018. </member>
  9019. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.IsVisible">
  9020. <summary>
  9021. Indicates whether the Task Pane shows as visible by default when the document opens.
  9022. </summary>
  9023. </member>
  9024. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.IsLocked">
  9025. <summary>
  9026. Indicates whether the taskpane is locked to the document in the UI and cannot be closed by the user.
  9027. </summary>
  9028. </member>
  9029. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.Width">
  9030. <summary>
  9031. Gets and sets the default width value for this taskpane instance.
  9032. </summary>
  9033. </member>
  9034. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPane.Row">
  9035. <summary>
  9036. Gets and sets the index, enumerating from the outside to the inside, of this taskpane among other persisted taskpanes docked in the same default location.
  9037. </summary>
  9038. </member>
  9039. <member name="T:Aspose.Cells.WebExtensions.WebExtensionTaskPaneCollection">
  9040. <summary>
  9041. Represents the list of task pane.
  9042. </summary>
  9043. </member>
  9044. <member name="M:Aspose.Cells.WebExtensions.WebExtensionTaskPaneCollection.Add">
  9045. <summary>
  9046. Adds task pane.
  9047. </summary>
  9048. <returns>The index.</returns>
  9049. </member>
  9050. <member name="P:Aspose.Cells.WebExtensions.WebExtensionTaskPaneCollection.Item(System.Int32)">
  9051. <summary>
  9052. Gets task pane by the specific index.
  9053. </summary>
  9054. <param name="index">The index.</param>
  9055. <returns>The task pane.</returns>
  9056. </member>
  9057. <member name="T:Aspose.Cells.WebExtensions.WebExtension">
  9058. <summary>
  9059. Represents an Office Add-in instance.
  9060. </summary>
  9061. </member>
  9062. <member name="P:Aspose.Cells.WebExtensions.WebExtension.Id">
  9063. <summary>
  9064. Gets and sets the uniquely identifies the Office Add-in instance in the current document.
  9065. </summary>
  9066. </member>
  9067. <member name="P:Aspose.Cells.WebExtensions.WebExtension.IsFrozen">
  9068. <summary>
  9069. Indicates whether the user can interact with the Office Add-in or not.
  9070. </summary>
  9071. </member>
  9072. <member name="P:Aspose.Cells.WebExtensions.WebExtension.Reference">
  9073. <summary>
  9074. Get the primary reference to an Office Add-in.
  9075. </summary>
  9076. </member>
  9077. <member name="P:Aspose.Cells.WebExtensions.WebExtension.AlterReferences">
  9078. <summary>
  9079. Gets a list of alter references.
  9080. </summary>
  9081. </member>
  9082. <member name="P:Aspose.Cells.WebExtensions.WebExtension.Properties">
  9083. <summary>
  9084. Gets all properties of web extension.
  9085. </summary>
  9086. </member>
  9087. <member name="P:Aspose.Cells.WebExtensions.WebExtension.Bindings">
  9088. <summary>
  9089. Gets all bindings relationship between an Office Add-in and the data in the document.
  9090. </summary>
  9091. </member>
  9092. <member name="T:Aspose.Cells.WebExtensions.WebExtensionBinding">
  9093. <summary>
  9094. Represents a binding relationship between an Office Add-in and the data in the document.
  9095. </summary>
  9096. </member>
  9097. <member name="P:Aspose.Cells.WebExtensions.WebExtensionBinding.Id">
  9098. <summary>
  9099. Gets and sets the binding identifier.
  9100. </summary>
  9101. </member>
  9102. <member name="P:Aspose.Cells.WebExtensions.WebExtensionBinding.Type">
  9103. <summary>
  9104. Gets and sets the binding type.
  9105. </summary>
  9106. </member>
  9107. <member name="P:Aspose.Cells.WebExtensions.WebExtensionBinding.Appref">
  9108. <summary>
  9109. Gets and sets the binding key used to map the binding entry in this list with the bound data in the document.
  9110. </summary>
  9111. </member>
  9112. <member name="T:Aspose.Cells.WebExtensions.WebExtensionBindingCollection">
  9113. <summary>
  9114. Represents the list of binding relationships between an Office Add-in and the data in the document.
  9115. </summary>
  9116. </member>
  9117. <member name="M:Aspose.Cells.WebExtensions.WebExtensionBindingCollection.Add">
  9118. <summary>
  9119. Adds an a binding relationship between an Office Add-in and the data in the document.
  9120. </summary>
  9121. <returns>
  9122. </returns>
  9123. </member>
  9124. <member name="P:Aspose.Cells.WebExtensions.WebExtensionBindingCollection.Item(System.Int32)">
  9125. <summary>
  9126. Gets web extension binding relationship by the specific index.
  9127. </summary>
  9128. <param name="index">The index.</param>
  9129. <returns>The web extension binding relationship </returns>
  9130. </member>
  9131. <member name="T:Aspose.Cells.WebExtensions.WebExtensionCollection">
  9132. <summary>
  9133. Represents the list of web extension.
  9134. </summary>
  9135. </member>
  9136. <member name="M:Aspose.Cells.WebExtensions.WebExtensionCollection.Add">
  9137. <summary>
  9138. Adds a web extension.
  9139. </summary>
  9140. <returns>The index.</returns>
  9141. </member>
  9142. <member name="M:Aspose.Cells.WebExtensions.WebExtensionCollection.RemoveAt(System.Int32)">
  9143. <summary>
  9144. Remove web extension by the index.
  9145. </summary>
  9146. <param name="index">The index.</param>
  9147. </member>
  9148. <member name="P:Aspose.Cells.WebExtensions.WebExtensionCollection.Item(System.Int32)">
  9149. <summary>
  9150. Gets web extension by the specific index.
  9151. </summary>
  9152. <param name="index">The index.</param>
  9153. <returns>The web extension. </returns>
  9154. </member>
  9155. <member name="T:Aspose.Cells.WebExtensions.WebExtensionProperty">
  9156. <summary>
  9157. Represents an Office Add-in custom property.
  9158. </summary>
  9159. </member>
  9160. <member name="P:Aspose.Cells.WebExtensions.WebExtensionProperty.Name">
  9161. <summary>
  9162. Gets and set a custom property name.
  9163. </summary>
  9164. </member>
  9165. <member name="P:Aspose.Cells.WebExtensions.WebExtensionProperty.Value">
  9166. <summary>
  9167. Gets and sets a custom property value.
  9168. </summary>
  9169. </member>
  9170. <member name="T:Aspose.Cells.WebExtensions.WebExtensionPropertyCollection">
  9171. <summary>
  9172. Represents the list of web extension properties.
  9173. </summary>
  9174. </member>
  9175. <member name="M:Aspose.Cells.WebExtensions.WebExtensionPropertyCollection.Add(System.String,System.String)">
  9176. <summary>
  9177. Adds web extension property.
  9178. </summary>
  9179. <param name="name">The name of property.</param>
  9180. <param name="value">The value of property.</param>
  9181. <returns>The index of added property.</returns>
  9182. </member>
  9183. <member name="M:Aspose.Cells.WebExtensions.WebExtensionPropertyCollection.RemoveAt(System.String)">
  9184. <summary>
  9185. Remove the property by the name.
  9186. </summary>
  9187. <param name="name">The name of the property.</param>
  9188. </member>
  9189. <member name="P:Aspose.Cells.WebExtensions.WebExtensionPropertyCollection.Item(System.Int32)">
  9190. <summary>
  9191. Gets the property of web extension by the index.
  9192. </summary>
  9193. <param name="index">The index.</param>
  9194. <returns>The property of web extension. </returns>
  9195. </member>
  9196. <member name="P:Aspose.Cells.WebExtensions.WebExtensionPropertyCollection.Item(System.String)">
  9197. <summary>
  9198. Gets the property of web extension.
  9199. </summary>
  9200. <param name="name">The name of property.</param>
  9201. <returns>The property of web extension. </returns>
  9202. </member>
  9203. <member name="T:Aspose.Cells.WebExtensions.WebExtensionReference">
  9204. <summary>
  9205. Represents identify the provider location and version of the extension.
  9206. </summary>
  9207. </member>
  9208. <member name="P:Aspose.Cells.WebExtensions.WebExtensionReference.Id">
  9209. <summary>
  9210. Gets and sets the identifier associated with the Office Add-in within a catalog provider.
  9211. The identifier MUST be unique within a catalog provider.
  9212. </summary>
  9213. </member>
  9214. <member name="P:Aspose.Cells.WebExtensions.WebExtensionReference.Version">
  9215. <summary>
  9216. Gets and sets the version.
  9217. </summary>
  9218. </member>
  9219. <member name="P:Aspose.Cells.WebExtensions.WebExtensionReference.StoreName">
  9220. <summary>
  9221. Gets and sets the instance of the marketplace where the Office Add-in is stored. .
  9222. </summary>
  9223. </member>
  9224. <member name="P:Aspose.Cells.WebExtensions.WebExtensionReference.StoreType">
  9225. <summary>
  9226. Gets and sets the type of marketplace that the store attribute identifies.
  9227. </summary>
  9228. </member>
  9229. <member name="T:Aspose.Cells.WebExtensions.WebExtensionReferenceCollection">
  9230. <summary>
  9231. Represents the list of web extension reference.
  9232. </summary>
  9233. </member>
  9234. <member name="M:Aspose.Cells.WebExtensions.WebExtensionReferenceCollection.Add">
  9235. <summary>
  9236. Adds an empty reference of web extension.
  9237. </summary>
  9238. <returns>
  9239. </returns>
  9240. </member>
  9241. <member name="P:Aspose.Cells.WebExtensions.WebExtensionReferenceCollection.Item(System.Int32)">
  9242. <summary>
  9243. Gets web extension by the specific index.
  9244. </summary>
  9245. <param name="index">The index.</param>
  9246. <returns>The web extension</returns>
  9247. </member>
  9248. <member name="T:Aspose.Cells.WebExtensions.WebExtensionStoreType">
  9249. <summary>
  9250. Represents the store type of web extension.
  9251. </summary>
  9252. </member>
  9253. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.OMEX">
  9254. <summary>
  9255. Specifies that the store type is Office.com.
  9256. </summary>
  9257. </member>
  9258. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.SPCatalog">
  9259. <summary>
  9260. Specifies that the store type is SharePoint corporate catalog.
  9261. </summary>
  9262. </member>
  9263. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.SPApp">
  9264. <summary>
  9265. Specifies that the store type is a SharePoint web application.
  9266. </summary>
  9267. </member>
  9268. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.Exchange">
  9269. <summary>
  9270. Specifies that the store type is an Exchange server.
  9271. </summary>
  9272. </member>
  9273. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.FileSystem">
  9274. <summary>
  9275. Specifies that the store type is a file system share.
  9276. </summary>
  9277. </member>
  9278. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.Registry">
  9279. <summary>
  9280. Specifies that the store type is the system registry.
  9281. </summary>
  9282. </member>
  9283. <member name="F:Aspose.Cells.WebExtensions.WebExtensionStoreType.ExCatalog">
  9284. <summary>
  9285. Specifies that the store type is Centralized Deployment via Exchange.
  9286. </summary>
  9287. </member>
  9288. <member name="T:Aspose.Cells.Workbook">
  9289. <summary>
  9290. Represents a root object to create an Excel spreadsheet.
  9291. </summary>
  9292. <remarks>The Workbook class denotes an Excel spreadsheet. Each spreadsheet can contain multiple worksheets.
  9293. The basic feature of the class is to open and save native excel files.
  9294. The class has some advanced features like copying data from other Workbooks, combining two Workbooks and protecting the Excel spreadsheet.
  9295. </remarks>
  9296. <example>
  9297. The following example creates a Workbook, opens a file named designer.xls in it and makes the horizontal and vertical scroll bars invisible for the Workbook. It then replaces two string values with an Integer value and string value respectively within the spreadsheet and finally sends the updated file to the client browser.
  9298. <code>
  9299. [C#]
  9300. //Open a designer file
  9301. string designerFile = MapPath("Designer") + "\\designer.xls";
  9302. Workbook workbook = new Workbook(designerFile);
  9303. //Set scroll bars
  9304. workbook.Settings.IsHScrollBarVisible = false;
  9305. workbook.Settings.IsVScrollBarVisible = false;
  9306. //Replace the placeholder string with new values
  9307. int newInt = 100;
  9308. workbook.Replace("OldInt", newInt);
  9309. string newString = "Hello!";
  9310. workbook.Replace("OldString", newString);
  9311. XlsSaveOptions saveOptions = new XlsSaveOptions();
  9312. workbook.Save(Response, "result.xls", ContentDisposition.Inline, saveOptions);
  9313. [Visual Basic]
  9314. 'Open a designer file
  9315. Dim designerFile as String = MapPath("Designer") + "\designer.xls"
  9316. Dim workbook as Workbook = new Workbook(designerFile)
  9317. 'Set scroll bars
  9318. workbook.IsHScrollBarVisible = False
  9319. workbook.IsVScrollBarVisible = False
  9320. 'Replace the placeholder string with new values
  9321. Dim newInt as Integer = 100
  9322. workbook.Replace("OldInt", newInt)
  9323. Dim newString as String = "Hello!"
  9324. workbook.Replace("OldString", newString)
  9325. Dim saveOptions as XlsSaveOptions = new XlsSaveOptions()
  9326. workbook.Save(Response, "result.xls", ContentDisposition.Inline, saveOptions)
  9327. </code></example>
  9328. </member>
  9329. <member name="M:Aspose.Cells.Workbook.#ctor">
  9330. <summary>
  9331. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class.
  9332. </summary>
  9333. <example>
  9334. The following code shows how to use the Workbook constructor to create and initialize a new instance of the class.
  9335. <code>
  9336. [C#]
  9337. Workbook workbook = new Workbook();
  9338. [Visual Basic]
  9339. Dim workbook as Workbook = new Workbook()
  9340. </code></example>
  9341. <remarks>
  9342. The default file format type is Excel97To2003.If want create other format file type, please call Workbook(FileFormatType fileFormatType).
  9343. </remarks>
  9344. </member>
  9345. <member name="M:Aspose.Cells.Workbook.#ctor(Aspose.Cells.FileFormatType)">
  9346. <summary>
  9347. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class.
  9348. </summary>
  9349. <param name="fileFormatType">
  9350. The new file format.
  9351. </param>
  9352. <example>
  9353. The following code shows how to use the Workbook constructor to create and initialize a new instance of the class.
  9354. <code>
  9355. [C#]
  9356. Workbook workbook = new Workbook(FileFormatType.Excel2007Xlsx);
  9357. [Visual Basic]
  9358. Dim workbook as Workbook = new Workbook(FileFormatType.Excel2007Xlsx)
  9359. </code></example>
  9360. <remarks>
  9361. The default file format type is Excel97To2003.
  9362. </remarks>
  9363. </member>
  9364. <member name="M:Aspose.Cells.Workbook.#ctor(System.String)">
  9365. <summary>
  9366. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class and open a file.
  9367. </summary>
  9368. <param name="file">The file name.</param>
  9369. </member>
  9370. <member name="M:Aspose.Cells.Workbook.#ctor(System.IO.Stream)">
  9371. <summary>
  9372. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class and open a stream.
  9373. </summary>
  9374. <param name="stream">The stream.</param>
  9375. </member>
  9376. <member name="M:Aspose.Cells.Workbook.#ctor(System.String,Aspose.Cells.LoadOptions)">
  9377. <summary>
  9378. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class and open a file.
  9379. </summary>
  9380. <param name="file">The file name.</param>
  9381. <param name="loadOptions">The load options</param>
  9382. </member>
  9383. <member name="M:Aspose.Cells.Workbook.#ctor(System.IO.Stream,Aspose.Cells.LoadOptions)">
  9384. <summary>
  9385. Initializes a new instance of the <see cref="T:Aspose.Cells.Workbook" /> class and open stream.
  9386. </summary>
  9387. <param name="stream">The stream.</param>
  9388. <param name="loadOptions">The load options</param>
  9389. </member>
  9390. <member name="M:Aspose.Cells.Workbook.ParseFormulas(System.Boolean)">
  9391. <summary>
  9392. Parses all formulas which have not been parsed when they were loaded from template file or set to a cell.
  9393. </summary>
  9394. <param name="ignoreError">whether ignore error for invalid formula.
  9395. For one invalid formula, if ignore error then this formula will be ignored
  9396. and the process will continue to parse other formulas, otherwise exception will be thrown.</param>
  9397. </member>
  9398. <member name="M:Aspose.Cells.Workbook.Save(System.String,Aspose.Cells.SaveFormat)">
  9399. <summary>
  9400. Saves the workbook to the disk.
  9401. </summary>
  9402. <param name="fileName">The file name.</param>
  9403. <param name="saveFormat">The save format type.</param>
  9404. </member>
  9405. <member name="M:Aspose.Cells.Workbook.Save(System.String)">
  9406. <summary>
  9407. Save the workbook to the disk.
  9408. </summary>
  9409. <param name="fileName">
  9410. </param>
  9411. </member>
  9412. <member name="M:Aspose.Cells.Workbook.Save(System.String,Aspose.Cells.SaveOptions)">
  9413. <summary>
  9414. Saves the workbook to the disk.
  9415. </summary>
  9416. <param name="fileName">The file name.</param>
  9417. <param name="saveOptions">The save options.</param>
  9418. </member>
  9419. <member name="M:Aspose.Cells.Workbook.Save(System.IO.Stream,Aspose.Cells.SaveFormat)">
  9420. <summary>
  9421. Saves the workbook to the stream.
  9422. </summary>
  9423. <param name="stream">The file stream.</param>
  9424. <param name="saveFormat">The save file format type.</param>
  9425. </member>
  9426. <member name="M:Aspose.Cells.Workbook.Save(System.IO.Stream,Aspose.Cells.SaveOptions)">
  9427. <summary>
  9428. Saves the workbook to the stream.
  9429. </summary>
  9430. <param name="stream">The file stream.</param>
  9431. <param name="saveOptions">The save options.</param>
  9432. </member>
  9433. <member name="M:Aspose.Cells.Workbook.SaveToStream">
  9434. <summary>
  9435. Saves Excel file to a MemoryStream object and returns it.
  9436. </summary>
  9437. <returns>MemoryStream object which contains an Excel file.</returns>
  9438. <remarks>
  9439. This method provides same function as Save method and only save the workbook as Excel97-2003 xls file.
  9440. It's mainly for calling from COM clients.</remarks>
  9441. </member>
  9442. <member name="M:Aspose.Cells.Workbook.Save(System.Web.HttpResponse,System.String,Aspose.Cells.ContentDisposition,Aspose.Cells.SaveOptions)">
  9443. <summary>
  9444. Creates the result spreadsheet and transfer it to the client then open it in the browser or MS Workbook.
  9445. </summary>
  9446. <param name="response">Response object to return the spreadsheet to client.</param>
  9447. <param name="fileName">The name of created file.</param>
  9448. <param name="contentDisposition">The content disposition type.</param>
  9449. <param name="saveOptions">The save options.</param>
  9450. </member>
  9451. <member name="M:Aspose.Cells.Workbook.Save(System.Web.HttpResponse,System.String,Aspose.Cells.ContentDisposition,Aspose.Cells.SaveOptions,System.Boolean)">
  9452. <summary>
  9453. Creates the result spreadsheet and transfer it to the client then open it in the browser or MS Workbook.
  9454. </summary>
  9455. <param name="response">Response object to return the spreadsheet to client.</param>
  9456. <param name="fileName">The name of created file.</param>
  9457. <param name="contentDisposition">The content disposition type.</param>
  9458. <param name="saveOptions">The save options.</param>
  9459. <param name="enableHttpCompression">whether http compression is to be used</param>
  9460. </member>
  9461. <member name="M:Aspose.Cells.Workbook.RemoveUnusedStyles">
  9462. <summary>
  9463. Remove all unused styles.
  9464. </summary>
  9465. </member>
  9466. <member name="M:Aspose.Cells.Workbook.CreateStyle">
  9467. <summary>
  9468. Creates a new style.
  9469. </summary>
  9470. <returns>Returns a style object.</returns>
  9471. </member>
  9472. <member name="M:Aspose.Cells.Workbook.CreateBuiltinStyle(Aspose.Cells.BuiltinStyleType)">
  9473. <summary>
  9474. Creates built-in style by given type.
  9475. </summary>
  9476. <param name="type">
  9477. </param>
  9478. <returns>style object</returns>
  9479. </member>
  9480. <member name="M:Aspose.Cells.Workbook.CreateCellsColor">
  9481. <summary>
  9482. Creates a <see cref="T:Aspose.Cells.CellsColor" /> object.
  9483. </summary>
  9484. <returns>Returns a <see cref="T:Aspose.Cells.CellsColor" /> object.</returns>
  9485. </member>
  9486. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.String)">
  9487. <summary>
  9488. Replaces a cell's value with a new string.
  9489. </summary>
  9490. <example>
  9491. <code>
  9492. [C#]
  9493. Workbook workbook = new Workbook();
  9494. ......
  9495. workbook.Replace("AnOldValue", "NewValue");
  9496. [Visual Basic]
  9497. Dim workbook As Workbook = New Workbook()
  9498. ........
  9499. workbook.Replace("AnOldValue", "NewValue")
  9500. </code>
  9501. </example>
  9502. <param name="placeHolder">Cell placeholder</param>
  9503. <param name="newValue">String value to replace</param>
  9504. </member>
  9505. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.Int32)">
  9506. <summary>
  9507. Replaces a cell's value with a new integer.
  9508. </summary>
  9509. <example>
  9510. <code>
  9511. [C#]
  9512. Workbook workbook = new Workbook();
  9513. ......
  9514. int newValue = 100;
  9515. workbook.Replace("AnOldValue", newValue);
  9516. [Visual Basic]
  9517. Dim workbook As Workbook = New Workbook()
  9518. .........
  9519. Dim NewValue As Integer = 100
  9520. workbook.Replace("AnOldValue", NewValue)
  9521. </code>
  9522. </example>
  9523. <param name="placeHolder">Cell placeholder</param>
  9524. <param name="newValue">Integer value to replace</param>
  9525. </member>
  9526. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.Double)">
  9527. <summary>
  9528. Replaces a cell's value with a new double.
  9529. </summary>
  9530. <example>
  9531. <code>
  9532. [C#]
  9533. Workbook workbook = new Workbook();
  9534. ......
  9535. double newValue = 100.0;
  9536. workbook.Replace("AnOldValue", newValue);
  9537. [Visual Basic]
  9538. Dim workbook As Workbook = New Workbook()
  9539. .........
  9540. Dim NewValue As Double = 100.0
  9541. workbook.Replace("AnOldValue", NewValue)
  9542. </code>
  9543. </example>
  9544. <param name="placeHolder">Cell placeholder</param>
  9545. <param name="newValue">Double value to replace</param>
  9546. </member>
  9547. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.String[],System.Boolean)">
  9548. <summary>
  9549. Replaces a cell's value with a new string array.
  9550. </summary>
  9551. <example>
  9552. <code>
  9553. [C#]
  9554. Workbook workbook = new Workbook();
  9555. ......
  9556. string[] newValues = new string[]{"Tom", "Alice", "Jerry"};
  9557. workbook.Replace("AnOldValue", newValues, true);
  9558. [Visual Basic]
  9559. Dim workbook As Workbook = New Workbook()
  9560. .............
  9561. Dim NewValues() As String = New String() {"Tom", "Alice", "Jerry"}
  9562. workbook.Replace("AnOldValue", NewValues, True)
  9563. </code>
  9564. </example>
  9565. <param name="placeHolder">Cell placeholder</param>
  9566. <param name="newValues">String array to replace</param>
  9567. <param name="isVertical">True - Vertical, False - Horizontal</param>
  9568. </member>
  9569. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.Int32[],System.Boolean)">
  9570. <summary>
  9571. Replaces cells' values with an integer array.
  9572. </summary>
  9573. <example>
  9574. <code>
  9575. [C#]
  9576. Workbook workbook = new Workbook();
  9577. ......
  9578. int[] newValues = new int[]{1, 2, 3};
  9579. workbook.Replace("AnOldValue", newValues, true);
  9580. [Visual Basic]
  9581. Dim workbook As Workbook = New Workbook()
  9582. ...........
  9583. Dim NewValues() As Integer = New Integer() {1, 2, 3}
  9584. workbook.Replace("AnOldValue", NewValues, True)
  9585. </code>
  9586. </example>
  9587. <param name="placeHolder">Cell placeholder</param>
  9588. <param name="newValues">Integer array to replace</param>
  9589. <param name="isVertical">True - Vertical, False - Horizontal</param>
  9590. </member>
  9591. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.Double[],System.Boolean)">
  9592. <summary>
  9593. Replaces cells' values with a double array.
  9594. </summary>
  9595. <example>
  9596. <code>
  9597. [C#]
  9598. Workbook workbook = new Workbook();
  9599. ......
  9600. double[] newValues = new double[]{1.23, 2.56, 3.14159};
  9601. workbook.Replace("AnOldValue", newValues, true);
  9602. [Visual Basic]
  9603. Dim workbook As Workbook = New Workbook()
  9604. ...........
  9605. Dim NewValues() As Double = New Double() {1.23, 2.56, 3.14159}
  9606. workbook.Replace("AnOldValue", NewValues, True)
  9607. </code>
  9608. </example>
  9609. <param name="placeHolder">Cell placeholder</param>
  9610. <param name="newValues">Double array to replace</param>
  9611. <param name="isVertical">True - Vertical, False - Horizontal</param>
  9612. </member>
  9613. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.Data.DataTable)">
  9614. <summary>
  9615. Replaces cells' values with data from a <see cref="T:System.Data.DataTable" />.
  9616. </summary>
  9617. <example>
  9618. <code>
  9619. [C#]
  9620. Workbook workbook = new Workbook();
  9621. DataTable myDataTable = new DataTable("Customers");
  9622. // Adds data to myDataTable
  9623. ........
  9624. workbook.Replace("AnOldValue", myDataTable);
  9625. [Visual Basic]
  9626. Dim workbook As Workbook = New Workbook()
  9627. Dim myDataTable As DataTable = New DataTable("Customers")
  9628. ' Adds data to myDataTable
  9629. .............
  9630. workbook.Replace("AnOldValue", myDataTable)
  9631. </code>
  9632. </example>
  9633. <param name="placeHolder">Cell placeholder</param>
  9634. <param name="insertTable">DataTable to replace</param>
  9635. </member>
  9636. <member name="M:Aspose.Cells.Workbook.Replace(System.Boolean,System.Object)">
  9637. <summary>
  9638. Replaces cells' values with new data.
  9639. </summary>
  9640. <param name="boolValue">The boolean value to be replaced.</param>
  9641. <param name="newValue">New value. Can be string, integer, double or DateTime value.</param>
  9642. </member>
  9643. <member name="M:Aspose.Cells.Workbook.Replace(System.Int32,System.Object)">
  9644. <summary>
  9645. Replaces cells' values with new data.
  9646. </summary>
  9647. <param name="intValue">The integer value to be replaced.</param>
  9648. <param name="newValue">New value. Can be string, integer, double or DateTime value.</param>
  9649. </member>
  9650. <member name="M:Aspose.Cells.Workbook.Replace(System.String,System.String,Aspose.Cells.ReplaceOptions)">
  9651. <summary>
  9652. Replaces a cell's value with a new string.
  9653. </summary>
  9654. <param name="placeHolder">Cell placeholder</param>
  9655. <param name="newValue">String value to replace</param>
  9656. <param name="options"> The replace options</param>
  9657. </member>
  9658. <member name="M:Aspose.Cells.Workbook.Copy(Aspose.Cells.Workbook,Aspose.Cells.CopyOptions)">
  9659. <summary>
  9660. Copies data from a source Workbook object.
  9661. </summary>
  9662. <param name="source">Source Workbook object.</param>
  9663. <param name="copyOptions">
  9664. </param>
  9665. </member>
  9666. <member name="M:Aspose.Cells.Workbook.Copy(Aspose.Cells.Workbook)">
  9667. <summary>
  9668. Copies data from a source Workbook object.
  9669. </summary>
  9670. <param name="source">Source Workbook object.</param>
  9671. </member>
  9672. <member name="M:Aspose.Cells.Workbook.Combine(Aspose.Cells.Workbook)">
  9673. <summary>
  9674. Combines another Workbook object.
  9675. </summary>
  9676. <param name="secondWorkbook">Another Workbook object.</param>
  9677. <remarks>Currently, only cell data and cell style of the second Workbook object can be combined. Images, charts and other drawing objects are not supported.
  9678. </remarks>
  9679. </member>
  9680. <member name="M:Aspose.Cells.Workbook.GetStyleInPool(System.Int32)">
  9681. <summary>
  9682. Gets the style in the style pool.
  9683. All styles in the workbook will be gathered into a pool.
  9684. There is only a simple reference index in the cells.
  9685. </summary>
  9686. <param name="index">The index.</param>
  9687. <returns>
  9688. The style in the pool corresponds to given index, may be null.
  9689. </returns>
  9690. <remarks>
  9691. If the returned style is changed, the style of all cells(which refers to this style) will be changed.
  9692. </remarks>
  9693. </member>
  9694. <member name="M:Aspose.Cells.Workbook.GetFonts">
  9695. <summary>
  9696. Gets all fonts in the style pool.
  9697. </summary>
  9698. </member>
  9699. <member name="M:Aspose.Cells.Workbook.GetNamedStyle(System.String)">
  9700. <summary>
  9701. Gets the named style in the style pool.
  9702. </summary>
  9703. <param name="name">name of the style</param>
  9704. <returns>named style, maybe null.</returns>
  9705. </member>
  9706. <member name="M:Aspose.Cells.Workbook.ChangePalette(System.Drawing.Color,System.Int32)">
  9707. <summary>
  9708. Changes the palette for the spreadsheet in the specified index.
  9709. </summary>
  9710. <param name="color">Color structure.</param>
  9711. <param name="index">Palette index, 0 - 55.</param>
  9712. <remarks>The palette has 56 entries, each represented by an RGB value.
  9713. If you set a color which is not in the palette, it will not take effect.
  9714. So if you want to set a custom color, please change the palette at first.
  9715. <p>The following is the standard color palette.</p><table class="dtTABLE" cellspacing="0"><tr><td width="25%"><font color="gray"><b>Color</b></font>¡¡</td><td width="25%"><font color="gray"><b>Red</b></font>¡¡</td><td width="25%"><font color="gray"><b>Green</b></font>¡¡</td><td width="25%"><font color="gray"><b>Blue</b></font>¡¡</td></tr><tr><td width="25%">Black¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">White¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Red¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Lime¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Blue¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Yellow¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Magenta¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Cyan¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Maroon¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Green¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Navy¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Olive¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Purple¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Teal¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Silver¡¡</td><td width="25%">192¡¡</td><td width="25%">192¡¡</td><td width="25%">192¡¡</td></tr><tr><td width="25%">Gray¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Color17¡¡</td><td width="25%">153¡¡</td><td width="25%">153¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color18¡¡</td><td width="25%">153¡¡</td><td width="25%">51¡¡</td><td width="25%">102¡¡</td></tr><tr><td width="25%">Color19¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td><td width="25%">204¡¡</td></tr><tr><td width="25%">Color20¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color21¡¡</td><td width="25%">102¡¡</td><td width="25%">0¡¡</td><td width="25%">102¡¡</td></tr><tr><td width="25%">Color22¡¡</td><td width="25%">255¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Color23¡¡</td><td width="25%">0¡¡</td><td width="25%">102¡¡</td><td width="25%">204¡¡</td></tr><tr><td width="25%">Color24¡¡</td><td width="25%">204¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color25¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Color26¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color27¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color28¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color29¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Color30¡¡</td><td width="25%">128¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color31¡¡</td><td width="25%">0¡¡</td><td width="25%">128¡¡</td><td width="25%">128¡¡</td></tr><tr><td width="25%">Color32¡¡</td><td width="25%">0¡¡</td><td width="25%">0¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color33¡¡</td><td width="25%">0¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color34¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color35¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td><td width="25%">204¡¡</td></tr><tr><td width="25%">Color36¡¡</td><td width="25%">255¡¡</td><td width="25%">255¡¡</td><td width="25%">153¡¡</td></tr><tr><td width="25%">Color37¡¡</td><td width="25%">153¡¡</td><td width="25%">204¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color38¡¡</td><td width="25%">255¡¡</td><td width="25%">153¡¡</td><td width="25%">204¡¡</td></tr><tr><td width="25%">Color39¡¡</td><td width="25%">204¡¡</td><td width="25%">153¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color40¡¡</td><td width="25%">255¡¡</td><td width="25%">204¡¡</td><td width="25%">153¡¡</td></tr><tr><td width="25%">Color41¡¡</td><td width="25%">51¡¡</td><td width="25%">102¡¡</td><td width="25%">255¡¡</td></tr><tr><td width="25%">Color42¡¡</td><td width="25%">51¡¡</td><td width="25%">204¡¡</td><td width="25%">204¡¡</td></tr><tr><td width="25%">Color43¡¡</td><td width="25%">153¡¡</td><td width="25%">204¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color44¡¡</td><td width="25%">255¡¡</td><td width="25%">204¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color45¡¡</td><td width="25%">255¡¡</td><td width="25%">153¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color46¡¡</td><td width="25%">255¡¡</td><td width="25%">102¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color47¡¡</td><td width="25%">102¡¡</td><td width="25%">102¡¡</td><td width="25%">153¡¡</td></tr><tr><td width="25%">Color48¡¡</td><td width="25%">150¡¡</td><td width="25%">150¡¡</td><td width="25%">150¡¡</td></tr><tr><td width="25%">Color49¡¡</td><td width="25%">0¡¡</td><td width="25%">51¡¡</td><td width="25%">102¡¡</td></tr><tr><td width="25%">Color50¡¡</td><td width="25%">51¡¡</td><td width="25%">153¡¡</td><td width="25%">102¡¡</td></tr><tr><td width="25%">Color51¡¡</td><td width="25%">0¡¡</td><td width="25%">51¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color52¡¡</td><td width="25%">51¡¡</td><td width="25%">51¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color53¡¡</td><td width="25%">153¡¡</td><td width="25%">51¡¡</td><td width="25%">0¡¡</td></tr><tr><td width="25%">Color54¡¡</td><td width="25%">153¡¡</td><td width="25%">51¡¡</td><td width="25%">102¡¡</td></tr><tr><td width="25%">Color55¡¡</td><td width="25%">51¡¡</td><td width="25%">51¡¡</td><td width="25%">153¡¡</td></tr><tr><td width="25%">Color56¡¡</td><td width="25%">51¡¡</td><td width="25%">51¡¡</td><td width="25%">51¡¡</td></tr></table></remarks>
  9716. </member>
  9717. <member name="M:Aspose.Cells.Workbook.IsColorInPalette(System.Drawing.Color)">
  9718. <summary>
  9719. Checks if a color is in the palette for the spreadsheet.
  9720. </summary>
  9721. <param name="color">Color structure.</param>
  9722. <returns>Returns true if this color is in the palette. Otherwise, returns false</returns>
  9723. </member>
  9724. <member name="M:Aspose.Cells.Workbook.CalculateFormula">
  9725. <summary>
  9726. Calculates the result of formulas.
  9727. </summary>
  9728. <remarks>
  9729. For all supported formulas, please see the list at https://docs.aspose.com/display/cellsnet/Supported+Formula+Functions
  9730. </remarks>
  9731. </member>
  9732. <member name="M:Aspose.Cells.Workbook.CalculateFormula(System.Boolean)">
  9733. <summary>
  9734. Calculates the result of formulas.
  9735. </summary>
  9736. <param name="ignoreError">Indicates if hide the error in calculating formulas. The error may be unsupported function, external links, etc.</param>
  9737. </member>
  9738. <member name="M:Aspose.Cells.Workbook.CalculateFormula(System.Boolean,Aspose.Cells.ICustomFunction)">
  9739. <summary>
  9740. Calculates the result of formulas.
  9741. </summary>
  9742. <param name="ignoreError">Indicates if hide the error in calculating formulas. The error may be unsupported function, external links, etc.</param>
  9743. <param name="customFunction">The custom formula calculation functions to extend the calculation engine.</param>
  9744. <remarks>
  9745. NOTE: This member is now obsolete. Instead,
  9746. please use CalculateFormula(CalculationOptions) method.
  9747. This method will be removed 12 months later since August 2020.
  9748. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  9749. </member>
  9750. <member name="M:Aspose.Cells.Workbook.CalculateFormula(Aspose.Cells.CalculationOptions)">
  9751. <summary>
  9752. Calculating formulas in this workbook.
  9753. </summary>
  9754. <param name="options">Options for calculation</param>
  9755. </member>
  9756. <member name="M:Aspose.Cells.Workbook.GetMatchingColor(System.Drawing.Color)">
  9757. <summary>
  9758. Find best matching Color in current palette.
  9759. </summary>
  9760. <param name="rawColor">Raw color.</param>
  9761. <returns>Best matching color.</returns>
  9762. </member>
  9763. <member name="M:Aspose.Cells.Workbook.SetEncryptionOptions(Aspose.Cells.EncryptionType,System.Int32)">
  9764. <summary>
  9765. Set Encryption Options.
  9766. </summary>
  9767. <param name="encryptionType">The encryption type.</param>
  9768. <param name="keyLength">The key length.</param>
  9769. </member>
  9770. <member name="M:Aspose.Cells.Workbook.Protect(Aspose.Cells.ProtectionType,System.String)">
  9771. <summary>
  9772. Protects a workbook.
  9773. </summary>
  9774. <param name="protectionType">Protection type.</param>
  9775. <param name="password">Password to protect the workbook.</param>
  9776. </member>
  9777. <member name="M:Aspose.Cells.Workbook.ProtectSharedWorkbook(System.String)">
  9778. <summary>
  9779. Protects a shared workbook.
  9780. </summary>
  9781. <param name="password">Password to protect the workbook.</param>
  9782. </member>
  9783. <member name="M:Aspose.Cells.Workbook.Unprotect(System.String)">
  9784. <summary>
  9785. Unprotects a workbook.
  9786. </summary>
  9787. <param name="password">Password to unprotect the workbook.</param>
  9788. </member>
  9789. <member name="M:Aspose.Cells.Workbook.UnprotectSharedWorkbook(System.String)">
  9790. <summary>
  9791. Unprotects a shared workbook.
  9792. </summary>
  9793. <param name="password">Password to unprotect the workbook.</param>
  9794. </member>
  9795. <member name="M:Aspose.Cells.Workbook.RemoveMacro">
  9796. <summary>
  9797. Removes VBA/macro from this spreadsheet.
  9798. </summary>
  9799. </member>
  9800. <member name="M:Aspose.Cells.Workbook.RemoveDigitalSignature">
  9801. <summary>
  9802. Removes digital signature from this spreadsheet.
  9803. </summary>
  9804. </member>
  9805. <member name="M:Aspose.Cells.Workbook.AcceptAllRevisions">
  9806. <summary>
  9807. Accepts all tracked changes in the workbook.
  9808. </summary>
  9809. </member>
  9810. <member name="M:Aspose.Cells.Workbook.RemoveExternalLinks">
  9811. <summary>
  9812. Removes all external links in the workbook.
  9813. </summary>
  9814. </member>
  9815. <member name="M:Aspose.Cells.Workbook.GetThemeColor(Aspose.Cells.ThemeColorType)">
  9816. <summary>
  9817. Gets theme color.
  9818. </summary>
  9819. <param name="type">The theme color type.</param>
  9820. <returns>The theme color.</returns>
  9821. </member>
  9822. <member name="M:Aspose.Cells.Workbook.SetThemeColor(Aspose.Cells.ThemeColorType,System.Drawing.Color)">
  9823. <summary>
  9824. Sets the theme color
  9825. </summary>
  9826. <param name="type">The theme color type.</param>
  9827. <param name="color">the theme color</param>
  9828. </member>
  9829. <member name="M:Aspose.Cells.Workbook.CustomTheme(System.String,System.Drawing.Color[])">
  9830. <summary>
  9831. Customs the theme.
  9832. </summary>
  9833. <param name="themeName">The theme name</param>
  9834. <param name="colors">The theme colors</param>
  9835. <remarks>
  9836. The length of colors should be 12.
  9837. <table class="dtTABLE" cellspacing="0"><tr><td width="50%"><font color="gray"><b>Array index</b></font>¡¡</td><td width="50%"><font color="gray"><b>Theme type</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>0</b></font>¡¡</td><td width="50%"><font color="gray"><b>Backgournd1</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>1</b></font>¡¡</td><td width="50%"><font color="gray"><b>Text1</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>2</b></font>¡¡</td><td width="50%"><font color="gray"><b>Backgournd2</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>3</b></font>¡¡</td><td width="50%"><font color="gray"><b>Text2</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>4</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent1</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>5</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent2</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>6</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent3</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>7</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent4</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>8</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent5</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>9</b></font>¡¡</td><td width="50%"><font color="gray"><b>Accent6</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>10</b></font>¡¡</td><td width="50%"><font color="gray"><b>Hyperlink</b></font>¡¡</td></tr><tr><td width="50%"><font color="gray"><b>11</b></font>¡¡</td><td width="50%"><font color="gray"><b>Followed Hyperlink</b></font>¡¡</td></tr></table></remarks>
  9838. </member>
  9839. <member name="M:Aspose.Cells.Workbook.CopyTheme(Aspose.Cells.Workbook)">
  9840. <summary>
  9841. Copies the theme from another workbook.
  9842. </summary>
  9843. <param name="source">Source workbook.</param>
  9844. </member>
  9845. <member name="M:Aspose.Cells.Workbook.HasExernalLinks">
  9846. <summary>
  9847. Indicates whether this workbook contains external links to other data sources.
  9848. </summary>
  9849. <returns>Whether this workbook contains external links to other data sources.</returns>
  9850. </member>
  9851. <member name="M:Aspose.Cells.Workbook.UpdateLinkedDataSource(Aspose.Cells.Workbook[])">
  9852. <summary>
  9853. If this workbook contains external links to other data source,
  9854. Aspose.Cells will attempt to retrieve the latest data.
  9855. </summary>
  9856. <param name="exteralWorkbooks">
  9857. External workbooks are referenced by this workbook.
  9858. If it's null, we will directly open the external linked files..
  9859. If it's not null,
  9860. we will check whether the external link in the array first;
  9861. if not, we will open the external linked files again.
  9862. </param>
  9863. <remarks>
  9864. If the method is not called before calculating formulas,
  9865. Aspose.Cells will use the previous information(cached in the file);
  9866. Please set CellsHelper.StartupPath,CellsHelper.AltStartPath,CellsHelper.LibraryPath.
  9867. And please set Workbook.FilePath if this workbook is from a stream,
  9868. otherwise Aspose.Cells could not get the external link full path sometimes.
  9869. </remarks>
  9870. </member>
  9871. <member name="M:Aspose.Cells.Workbook.ImportXml(System.String,System.String,System.Int32,System.Int32)">
  9872. <summary>
  9873. Imports an xml file into the workbook.
  9874. </summary>
  9875. <param name="url">the path of the xml file.</param>
  9876. <param name="sheetName">the destination sheet name .</param>
  9877. <param name="row">the destination row of the xml.</param>
  9878. <param name="col">the destination column of the xml.</param>
  9879. </member>
  9880. <member name="M:Aspose.Cells.Workbook.ImportXml(System.IO.Stream,System.String,System.Int32,System.Int32)">
  9881. <summary>
  9882. Imports an xml file into the workbook.
  9883. </summary>
  9884. <param name="stream">the xml file stream.</param>
  9885. <param name="sheetName">the destination sheet name .</param>
  9886. <param name="row">the destination row of the xml.</param>
  9887. <param name="col">the destination column of the xml.</param>
  9888. </member>
  9889. <member name="M:Aspose.Cells.Workbook.ExportXml(System.String,System.String)">
  9890. <summary>
  9891. Export XML data.
  9892. </summary>
  9893. <param name="mapName">name of the XML map that need to be exported</param>
  9894. <param name="path">the export path</param>
  9895. </member>
  9896. <member name="M:Aspose.Cells.Workbook.ExportXml(System.String,System.IO.Stream)">
  9897. <summary>
  9898. Export XML data.
  9899. </summary>
  9900. <param name="mapName">name of the XML map that need to be exported</param>
  9901. <param name="stream">the export stream</param>
  9902. </member>
  9903. <member name="M:Aspose.Cells.Workbook.SetDigitalSignature(Aspose.Cells.DigitalSignatures.DigitalSignatureCollection)">
  9904. <summary>
  9905. Sets digital signature to an spreadsheet file (Excel2007 and later).
  9906. </summary>
  9907. <param name="digitalSignatureCollection">
  9908. </param>
  9909. <remarks>Only support adding Xmldsig Digital Signature</remarks>
  9910. </member>
  9911. <member name="M:Aspose.Cells.Workbook.AddDigitalSignature(Aspose.Cells.DigitalSignatures.DigitalSignatureCollection)">
  9912. <summary>
  9913. Adds digital signature to an OOXML spreadsheet file (Excel2007 and later).
  9914. </summary>
  9915. <param name="digitalSignatureCollection">
  9916. </param>
  9917. <remarks>Only support adding Xmldsig Digital Signature to an OOXML spreadsheet file</remarks>
  9918. </member>
  9919. <member name="M:Aspose.Cells.Workbook.GetDigitalSignature">
  9920. <summary>
  9921. Gets digital signature from file.
  9922. </summary>
  9923. </member>
  9924. <member name="M:Aspose.Cells.Workbook.Dispose">
  9925. <summary>
  9926. Performs application-defined tasks associated with freeing, releasing, or
  9927. resetting unmanaged resources.
  9928. </summary>
  9929. </member>
  9930. <member name="P:Aspose.Cells.Workbook.Settings">
  9931. <summary>
  9932. Represents the workbook settings.
  9933. </summary>
  9934. </member>
  9935. <member name="P:Aspose.Cells.Workbook.Worksheets">
  9936. <summary>
  9937. Gets the <see cref="T:Aspose.Cells.WorksheetCollection" /> collection in the spreadsheet.
  9938. </summary>
  9939. <returns>
  9940. <see cref="T:Aspose.Cells.WorksheetCollection" /> collection</returns>
  9941. </member>
  9942. <member name="P:Aspose.Cells.Workbook.IsLicensed">
  9943. <summary>
  9944. Indicates whether license is set.
  9945. </summary>
  9946. </member>
  9947. <member name="P:Aspose.Cells.Workbook.Colors">
  9948. <summary>
  9949. Returns colors in the palette for the spreadsheet.
  9950. </summary>
  9951. <remarks>The palette has 56 entries, each represented by an RGB value.</remarks>
  9952. </member>
  9953. <member name="P:Aspose.Cells.Workbook.CountOfStylesInPool">
  9954. <summary>
  9955. Gets number of the styles in the style pool.
  9956. </summary>
  9957. </member>
  9958. <member name="P:Aspose.Cells.Workbook.DefaultStyle">
  9959. <summary>
  9960. Gets or sets the default <see cref="T:Aspose.Cells.Style" /> object of the workbook.
  9961. </summary>
  9962. <remarks>
  9963. The DefaultStyle property is useful to implement a Style for the whole Workbook.
  9964. </remarks>
  9965. <example>
  9966. The following code creates and instantiates a new Workbook and sets a default <see cref="T:Aspose.Cells.Style" /> to it.
  9967. <code>
  9968. [C#]
  9969. Workbook workbook = new Workbook();
  9970. Style defaultStyle = workbook.DefaultStyle;
  9971. defaultStyle.Font.Name = "Tahoma";
  9972. workbook.DefaultStyle = defaultStyle;
  9973. [Visual Basic]
  9974. Dim workbook as Workbook = new Workbook()
  9975. Dim defaultStyle as Style = workbook.DefaultStyle
  9976. defaultStyle.Font.Name = "Tahoma"
  9977. workbook.DefaultStyle = defaultStyle
  9978. </code></example>
  9979. </member>
  9980. <member name="P:Aspose.Cells.Workbook.IsDigitallySigned">
  9981. <summary>
  9982. Indicates if this spreadsheet is digitally signed.
  9983. </summary>
  9984. </member>
  9985. <member name="P:Aspose.Cells.Workbook.IsWorkbookProtectedWithPassword">
  9986. <summary>
  9987. Indicates whether structure or window is protected with password.
  9988. </summary>
  9989. </member>
  9990. <member name="P:Aspose.Cells.Workbook.VbaProject">
  9991. <summary>
  9992. Gets the <see cref="P:Aspose.Cells.Workbook.VbaProject" /> in a spreadsheet.
  9993. </summary>
  9994. </member>
  9995. <member name="P:Aspose.Cells.Workbook.HasMacro">
  9996. <summary>
  9997. Indicates if this spreadsheet contains macro/VBA.
  9998. </summary>
  9999. </member>
  10000. <member name="P:Aspose.Cells.Workbook.HasRevisions">
  10001. <summary>
  10002. Gets if the workbook has any tracked changes
  10003. </summary>
  10004. </member>
  10005. <member name="P:Aspose.Cells.Workbook.FileName">
  10006. <summary>
  10007. Gets and sets the current file name.
  10008. </summary>
  10009. <remarks>
  10010. If the file is opened by stream and there are some external formula references,
  10011. please set the file name.
  10012. </remarks>
  10013. </member>
  10014. <member name="P:Aspose.Cells.Workbook.DataSorter">
  10015. <summary>
  10016. Gets a DataSorter object to sort data.
  10017. </summary>
  10018. </member>
  10019. <member name="P:Aspose.Cells.Workbook.Theme">
  10020. <summary>
  10021. Gets the theme name.
  10022. </summary>
  10023. </member>
  10024. <member name="P:Aspose.Cells.Workbook.BuiltInDocumentProperties">
  10025. <summary>
  10026. Returns a DocumentProperties collection that represents all the built-in document properties of the spreadsheet.
  10027. </summary>
  10028. <remarks>A new property cannot be added to built-in document properties list. You can only get a built-in property and change its value.
  10029. The following is the built-in properties name list:
  10030. <p>Title</p><p>Subject</p><p>Author</p><p>Keywords</p><p>Comments</p><p>Template</p><p>Last Author</p><p>Revision Number</p><p>Application Name</p><p>Last Print Date</p><p>Creation Date</p><p>Last Save Time</p><p>Total Editing Time</p><p>Number of Pages</p><p>Number of Words</p><p>Number of Characters</p><p>Security</p><p>Category</p><p>Format</p><p>Manager</p><p>Company</p><p>Number of Bytes</p><p>Number of Lines</p><p>Number of Paragraphs</p><p>Number of Slides</p><p>Number of Notes</p><p>Number of Hidden Slides</p><p>Number of Multimedia Clips</p></remarks>
  10031. <example>
  10032. <code>
  10033. [C#]
  10034. DocumentProperty doc = workbook.BuiltInDocumentProperties["Author"];
  10035. doc.Value = "John Smith";
  10036. [Visual Basic]
  10037. Dim doc as DocumentProperty = workbook.BuiltInDocumentProperties("Author")
  10038. doc.Value = "John Smith"
  10039. </code>
  10040. </example>
  10041. </member>
  10042. <member name="P:Aspose.Cells.Workbook.CustomDocumentProperties">
  10043. <summary>
  10044. Returns a DocumentProperties collection that represents all the custom document properties of the spreadsheet.
  10045. </summary>
  10046. <example>
  10047. <code>
  10048. [C#]
  10049. excel.CustomDocumentProperties.Add("Checked by", "Jane");
  10050. [Visual Basic]
  10051. excel.CustomDocumentProperties.Add("Checked by", "Jane")
  10052. </code>
  10053. </example>
  10054. </member>
  10055. <member name="P:Aspose.Cells.Workbook.FileFormat">
  10056. <summary>
  10057. Gets and sets the file format.
  10058. </summary>
  10059. </member>
  10060. <member name="P:Aspose.Cells.Workbook.InterruptMonitor">
  10061. <summary>
  10062. Gets and sets the interrupt monitor.
  10063. </summary>
  10064. </member>
  10065. <member name="P:Aspose.Cells.Workbook.ContentTypeProperties">
  10066. <summary>
  10067. Gets the list of <see cref="T:Aspose.Cells.Properties.ContentTypeProperty" /> objects in the workbook.
  10068. </summary>
  10069. </member>
  10070. <member name="P:Aspose.Cells.Workbook.CustomXmlParts">
  10071. <summary>
  10072. Represents a Custom XML Data Storage Part (custom XML data within a package).
  10073. </summary>
  10074. </member>
  10075. <member name="P:Aspose.Cells.Workbook.DataMashup">
  10076. <summary>
  10077. Gets mashup data.
  10078. </summary>
  10079. </member>
  10080. <member name="P:Aspose.Cells.Workbook.RibbonXml">
  10081. <summary>
  10082. Gets and sets the XML file that defines the Ribbon UI.
  10083. </summary>
  10084. </member>
  10085. <member name="P:Aspose.Cells.Workbook.AbsolutePath">
  10086. <summary>
  10087. Gets and sets the absolute path of the file.
  10088. </summary>
  10089. <remarks>
  10090. Only used for external links.
  10091. </remarks>
  10092. </member>
  10093. <member name="P:Aspose.Cells.Workbook.DataConnections">
  10094. <summary>
  10095. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ExternalConnection" /> collection.
  10096. </summary>
  10097. </member>
  10098. <member name="T:Aspose.Cells.WorkbookSettings">
  10099. <summary>
  10100. Represents all settings of the workbook.
  10101. </summary>
  10102. </member>
  10103. <member name="M:Aspose.Cells.WorkbookSettings.Dispose">
  10104. <summary>
  10105. Releases resources.
  10106. </summary>
  10107. </member>
  10108. <member name="M:Aspose.Cells.WorkbookSettings.GetThemeFont(Aspose.Cells.FontSchemeType)">
  10109. <summary>
  10110. Gets the default theme font name.
  10111. </summary>
  10112. <param name="type">The scheme type of the font.</param>
  10113. <returns>
  10114. </returns>
  10115. </member>
  10116. <member name="P:Aspose.Cells.WorkbookSettings.StreamProvider">
  10117. <summary>
  10118. Gets and sets the stream provider for external resource.
  10119. </summary>
  10120. </member>
  10121. <member name="P:Aspose.Cells.WorkbookSettings.CheckCustomNumberFormat">
  10122. <summary>
  10123. Indicates whether checking custom number format when setting Style.Custom.
  10124. </summary>
  10125. </member>
  10126. <member name="P:Aspose.Cells.WorkbookSettings.EnableMacros">
  10127. <summary>
  10128. Enable macros;
  10129. </summary>
  10130. <remarks>
  10131. Now it only works when copying a worksheet to other worksheet in a workbook.
  10132. </remarks>
  10133. </member>
  10134. <member name="P:Aspose.Cells.WorkbookSettings.Date1904">
  10135. <summary>
  10136. Gets or sets a value which represents if the workbook uses the 1904 date system.
  10137. </summary>
  10138. </member>
  10139. <member name="P:Aspose.Cells.WorkbookSettings.ProtectionType">
  10140. <summary>
  10141. Gets the protection type of the workbook.
  10142. </summary>
  10143. </member>
  10144. <member name="P:Aspose.Cells.WorkbookSettings.PrecisionAsDisplayed">
  10145. <summary>
  10146. True if calculations in this workbook will be done using only the precision of the numbers as they're displayed
  10147. </summary>
  10148. </member>
  10149. <member name="P:Aspose.Cells.WorkbookSettings.ReCalculateOnOpen">
  10150. <summary>
  10151. Indicates whether re-calculate all formulas on opening file.
  10152. </summary>
  10153. </member>
  10154. <member name="P:Aspose.Cells.WorkbookSettings.CreateCalcChain">
  10155. <summary>
  10156. Indicates whether create calculated formulas chain. Default is false.
  10157. </summary>
  10158. </member>
  10159. <member name="P:Aspose.Cells.WorkbookSettings.DisplayDrawingObjects">
  10160. <summary>
  10161. Indicates whether and how to show objects in the workbook.
  10162. </summary>
  10163. </member>
  10164. <member name="P:Aspose.Cells.WorkbookSettings.Iteration">
  10165. <summary>
  10166. Indicates if Aspose.Cells will use iteration to resolve circular references.
  10167. </summary>
  10168. </member>
  10169. <member name="P:Aspose.Cells.WorkbookSettings.MaxIteration">
  10170. <summary>
  10171. Returns or sets the maximum number of iterations that Aspose.Cells can use to resolve a circular reference.
  10172. </summary>
  10173. </member>
  10174. <member name="P:Aspose.Cells.WorkbookSettings.MaxChange">
  10175. <summary>
  10176. Returns or sets the maximum number of change that Microsoft Excel can use to resolve a circular reference.
  10177. </summary>
  10178. </member>
  10179. <member name="P:Aspose.Cells.WorkbookSettings.CalcMode">
  10180. <summary>
  10181. It specifies whether to calculate formulas manually,
  10182. automatically or automatically except for multiple table operations.
  10183. </summary>
  10184. </member>
  10185. <member name="P:Aspose.Cells.WorkbookSettings.CalculationId">
  10186. <summary>
  10187. Specifies the version of the calculation engine used to calculate values in the workbook.
  10188. </summary>
  10189. </member>
  10190. <member name="P:Aspose.Cells.WorkbookSettings.CalcStackSize">
  10191. <summary>
  10192. Specifies the stack size for calculating cells recursively.
  10193. The large value for this size will give better performance when there are lots of cells need to be calculated recursively.
  10194. On the other hand, larger value will raise the risk of StackOverflowException.
  10195. If user gets StackOverflowException when calculating formulas, this value should be decreased.
  10196. </summary>
  10197. </member>
  10198. <member name="P:Aspose.Cells.WorkbookSettings.RecalculateBeforeSave">
  10199. <summary>
  10200. Indicates whether to recalculate before saving the document.
  10201. </summary>
  10202. </member>
  10203. <member name="P:Aspose.Cells.WorkbookSettings.SheetTabBarWidth">
  10204. <summary>
  10205. Width of worksheet tab bar (in 1/1000 of window width).
  10206. </summary>
  10207. </member>
  10208. <member name="P:Aspose.Cells.WorkbookSettings.ShowTabs">
  10209. <summary>
  10210. Get or sets a value whether the Workbook tabs are displayed.
  10211. </summary>
  10212. <remarks>The default value is true.</remarks>
  10213. <example>The following code hides the Sheet Tabs and Tab Scrolling Buttons for the spreadsheet.
  10214. <code>
  10215. [C#]
  10216. // Hide the spreadsheet tabs.
  10217. workbook.ShowTabs = false;
  10218. [Visual Basic]
  10219. ' Hide the spreadsheet tabs.
  10220. workbook.ShowTabs = False
  10221. </code></example>
  10222. </member>
  10223. <member name="P:Aspose.Cells.WorkbookSettings.FirstVisibleTab">
  10224. <summary>
  10225. Gets or sets the first visible worksheet tab.
  10226. </summary>
  10227. </member>
  10228. <member name="P:Aspose.Cells.WorkbookSettings.IsHScrollBarVisible">
  10229. <summary>
  10230. Gets or sets a value indicating whether the generated spreadsheet will contain a horizontal scroll bar.
  10231. </summary>
  10232. <remarks>The default value is true.</remarks>
  10233. <example>
  10234. The following code makes the horizontal scroll bar invisible for the spreadsheet.
  10235. <code>
  10236. [C#]
  10237. // Hide the horizontal scroll bar of the Excel file.
  10238. workbook.IsHScrollBarVisible = false;
  10239. [Visual Basic]
  10240. ' Hide the horizontal scroll bar of the Excel file.
  10241. workbook.IsHScrollBarVisible = False
  10242. </code></example>
  10243. </member>
  10244. <member name="P:Aspose.Cells.WorkbookSettings.IsVScrollBarVisible">
  10245. <summary>
  10246. Gets or sets a value indicating whether the generated spreadsheet will contain a vertical scroll bar.
  10247. </summary>
  10248. <remarks>The default value is true.</remarks>
  10249. <example>The following code makes the vertical scroll bar invisible for the spreadsheet.
  10250. <code>
  10251. [C#]
  10252. // Hide the vertical scroll bar of the Excel file.
  10253. workbook.IsVScrollBarVisible = false;
  10254. [Visual Basic]
  10255. ' Hide the vertical scroll bar of the Excel file.
  10256. workbook.IsVScrollBarVisible = False
  10257. </code></example>
  10258. </member>
  10259. <member name="P:Aspose.Cells.WorkbookSettings.Shared">
  10260. <summary>
  10261. Gets or sets a value that indicates whether the Workbook is shared.
  10262. </summary>
  10263. <remarks>The default value is false.</remarks>
  10264. </member>
  10265. <member name="P:Aspose.Cells.WorkbookSettings.LanguageCode">
  10266. <summary>
  10267. Gets or sets the user interface language of the Workbook version based on CountryCode that has saved the file.
  10268. </summary>
  10269. </member>
  10270. <member name="P:Aspose.Cells.WorkbookSettings.Region">
  10271. <summary>
  10272. Gets or sets the regional settings for workbook.
  10273. </summary>
  10274. <remarks>
  10275. 1. Regional settings used by Aspose.Cells component for a workbook loaded from template file:
  10276. i). For an XLS file, there are fields defined for regional settings and MS Excel does save regional settings data into the file when saving the XLS file.
  10277. So, we use the saved region in the template file for the workbook.
  10278. If you do not want to use the region saved in the XLS file, please reset it to the expected one (such as, CountryCode.Default) after loading the template file.
  10279. And, we save the user specified value (by this method) into the file too when saving an XLS file.
  10280. ii). For other file formats, such as, XLSX, XLSB...etc., there is no field defined for regional settings in the file format specification.
  10281. So, we use the regional settings of application's environment for the workbook.
  10282. And, the user specified value (by this method) cannot be kept for the generated files with those file formats.
  10283. 2. For the view effect in MS Excel:
  10284. The applied regional settings here can take effect only at runtime with Aspose.Cells component and not when viewing the generated file with MS Excel.
  10285. Even for the generated XLS file in which the specified regional settings data has been saved, when viewing/editing it with MS Excel,
  10286. the used region to perform formatting by MS Excel is always the default regional settings of the environment where MS Excel is running,
  10287. not the one saved in the file. It is MS Excel's behavior and cannot be changed by code.
  10288. </remarks>
  10289. </member>
  10290. <member name="P:Aspose.Cells.WorkbookSettings.CultureInfo">
  10291. <summary>
  10292. Gets or sets the system culture info.
  10293. </summary>
  10294. <remarks>
  10295. Returns null if culture info is not set and <see cref="P:Aspose.Cells.WorkbookSettings.Region" /> is not set.
  10296. </remarks>
  10297. </member>
  10298. <member name="P:Aspose.Cells.WorkbookSettings.GlobalizationSettings">
  10299. <summary>
  10300. Gets and sets the globalization settings.
  10301. </summary>
  10302. </member>
  10303. <member name="P:Aspose.Cells.WorkbookSettings.NumberDecimalSeparator">
  10304. <summary>
  10305. Gets or sets the decimal separator for formatting/parsing numeric values. Default is the decimal separator of current Region.
  10306. </summary>
  10307. </member>
  10308. <member name="P:Aspose.Cells.WorkbookSettings.NumberGroupSeparator">
  10309. <summary>
  10310. Gets or sets the character that separates groups of digits to the left of the decimal in numeric values. Default is the group separator of current Region.
  10311. </summary>
  10312. </member>
  10313. <member name="P:Aspose.Cells.WorkbookSettings.Password">
  10314. <summary>
  10315. Represents Workbook file encryption password.
  10316. </summary>
  10317. </member>
  10318. <member name="P:Aspose.Cells.WorkbookSettings.WriteProtection">
  10319. <summary>
  10320. Provides access to the workbook write protection options.
  10321. </summary>
  10322. </member>
  10323. <member name="P:Aspose.Cells.WorkbookSettings.RecommendReadOnly">
  10324. <summary>
  10325. Indicates if the Read Only Recommended option is selected.
  10326. </summary>
  10327. <remarks>
  10328. NOTE: This member is now obsolete. Instead,
  10329. please use WorkbookSettings.WriteProtection.RecommendReadOnly property.
  10330. This property will be removed 12 months later since October 2015.
  10331. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  10332. </member>
  10333. <member name="P:Aspose.Cells.WorkbookSettings.IsWriteProtected">
  10334. <summary>
  10335. Indicates whether this workbook is write protected.
  10336. </summary>
  10337. <remarks>
  10338. NOTE: This member is now obsolete. Instead,
  10339. please use WorkbookSettings.WriteProtection.IsWriteProtected property.
  10340. This property will be removed 12 months later since October 2015.
  10341. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  10342. </member>
  10343. <member name="P:Aspose.Cells.WorkbookSettings.WriteProtectedPassword">
  10344. <summary>
  10345. Sets the protected password to modify the file.
  10346. </summary>
  10347. <remarks>
  10348. NOTE: This member is now obsolete. Instead,
  10349. please use WorkbookSettings.WriteProtection.Password property.
  10350. This property will be removed 12 months later since October 2015.
  10351. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  10352. </member>
  10353. <member name="P:Aspose.Cells.WorkbookSettings.IsEncrypted">
  10354. <summary>
  10355. Gets a value that indicates whether a password is required to open this workbook.
  10356. </summary>
  10357. </member>
  10358. <member name="P:Aspose.Cells.WorkbookSettings.IsProtected">
  10359. <summary>
  10360. Gets a value that indicates whether the structure or window of the Workbook is protected.
  10361. </summary>
  10362. </member>
  10363. <member name="P:Aspose.Cells.WorkbookSettings.IsDefaultEncrypted">
  10364. <summary>
  10365. Indicates whether encrypting the workbook with default password if Structure and Windows of the workbook are locked.
  10366. </summary>
  10367. <remarks>
  10368. The default value is false now. It's same as MS Excel 2013.
  10369. </remarks>
  10370. </member>
  10371. <member name="P:Aspose.Cells.WorkbookSettings.IsMinimized">
  10372. <summary>
  10373. Represents whether the generated spreadsheet will be opened Minimized.
  10374. </summary>
  10375. </member>
  10376. <member name="P:Aspose.Cells.WorkbookSettings.IsHidden">
  10377. <summary>
  10378. Indicates whether this workbook is hidden.
  10379. </summary>
  10380. </member>
  10381. <member name="P:Aspose.Cells.WorkbookSettings.AutoCompressPictures">
  10382. <summary>
  10383. Specifies a boolean value that indicates the application automatically compressed pictures in the workbook.
  10384. </summary>
  10385. </member>
  10386. <member name="P:Aspose.Cells.WorkbookSettings.RemovePersonalInformation">
  10387. <summary>
  10388. True if personal information can be removed from the specified workbook.
  10389. </summary>
  10390. </member>
  10391. <member name="P:Aspose.Cells.WorkbookSettings.HidePivotFieldList">
  10392. <summary>
  10393. Gets and sets whether hide the field list for the PivotTable.
  10394. </summary>
  10395. </member>
  10396. <member name="P:Aspose.Cells.WorkbookSettings.UpdateLinksType">
  10397. <summary>
  10398. Gets and sets how updates external links when the workbook is opened.
  10399. </summary>
  10400. </member>
  10401. <member name="P:Aspose.Cells.WorkbookSettings.MaxRow">
  10402. <summary>
  10403. Gets the max row index, zero-based.
  10404. </summary>
  10405. <remarks>
  10406. Returns 65535 if the file format is Excel97-2003;
  10407. </remarks>
  10408. </member>
  10409. <member name="P:Aspose.Cells.WorkbookSettings.MaxColumn">
  10410. <summary>
  10411. Gets the max column index, zero-based.
  10412. </summary>
  10413. <remarks>
  10414. Returns 255 if the file format is Excel97-2003;
  10415. </remarks>
  10416. </member>
  10417. <member name="P:Aspose.Cells.WorkbookSettings.ParsingFormulaOnOpen">
  10418. <summary>
  10419. Indicates whether parsing the formula when reading the file.
  10420. </summary>
  10421. <remarks>
  10422. Only applies for Excel Xlsx, Xltx, Xltm and Xlsm file
  10423. because the formulas in the files are stored with a string formula.
  10424. NOTE: This member is now obsolete. Instead, please use LoadOptions.ParsingFormulaOnOpen.
  10425. This property will be removed 12 months later since January 2020.
  10426. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  10427. </member>
  10428. <member name="P:Aspose.Cells.WorkbookSettings.WindowLeft">
  10429. <summary>
  10430. The distance from the left edge of the client area to the left edge of the window, in unit of point.
  10431. </summary>
  10432. </member>
  10433. <member name="P:Aspose.Cells.WorkbookSettings.WindowLeftInch">
  10434. <summary>
  10435. The distance from the left edge of the client area to the left edge of the window.
  10436. In unit of inch.
  10437. </summary>
  10438. </member>
  10439. <member name="P:Aspose.Cells.WorkbookSettings.WindowLeftCM">
  10440. <summary>
  10441. The distance from the left edge of the client area to the left edge of the window.
  10442. In unit of centimeter.
  10443. </summary>
  10444. </member>
  10445. <member name="P:Aspose.Cells.WorkbookSettings.WindowTop">
  10446. <summary>
  10447. The distance from the top edge of the client area to the top edge of the window, in unit of point.
  10448. </summary>
  10449. </member>
  10450. <member name="P:Aspose.Cells.WorkbookSettings.WindowTopInch">
  10451. <summary>
  10452. The distance from the top edge of the client area to the top edge of the window, in unit of inch.
  10453. </summary>
  10454. </member>
  10455. <member name="P:Aspose.Cells.WorkbookSettings.WindowTopCM">
  10456. <summary>
  10457. The distance from the top edge of the client area to the top edge of the window, in unit of centimeter.
  10458. </summary>
  10459. </member>
  10460. <member name="P:Aspose.Cells.WorkbookSettings.WindowWidth">
  10461. <summary>
  10462. The width of the window, in unit of point.
  10463. </summary>
  10464. </member>
  10465. <member name="P:Aspose.Cells.WorkbookSettings.WindowWidthInch">
  10466. <summary>
  10467. The width of the window, in unit of inch.
  10468. </summary>
  10469. </member>
  10470. <member name="P:Aspose.Cells.WorkbookSettings.WindowWidthCM">
  10471. <summary>
  10472. The width of the window, in unit of centimeter.
  10473. </summary>
  10474. </member>
  10475. <member name="P:Aspose.Cells.WorkbookSettings.WindowHeight">
  10476. <summary>
  10477. The height of the window, in unit of point.
  10478. </summary>
  10479. </member>
  10480. <member name="P:Aspose.Cells.WorkbookSettings.WindowHeightInch">
  10481. <summary>
  10482. The height of the window, in unit of inch.
  10483. </summary>
  10484. </member>
  10485. <member name="P:Aspose.Cells.WorkbookSettings.WindowHeightCM">
  10486. <summary>
  10487. The height of the window, in unit of centimeter.
  10488. </summary>
  10489. </member>
  10490. <member name="P:Aspose.Cells.WorkbookSettings.UpdateAdjacentCellsBorder">
  10491. <summary>
  10492. Indicates whether update adjacent cells' border.
  10493. </summary>
  10494. <remarks>
  10495. The default value is false.
  10496. For example: the bottom border of the cell A1 is update,
  10497. the top border of the cell A2 should be changed too.
  10498. </remarks>
  10499. </member>
  10500. <member name="P:Aspose.Cells.WorkbookSettings.SignificantDigits">
  10501. <summary>
  10502. Gets and sets the number of significant digits.
  10503. The default value is <see cref="P:Aspose.Cells.CellsHelper.SignificantDigits" />.
  10504. </summary>
  10505. <remarks>
  10506. Only could be 15 or 17 now.
  10507. </remarks>
  10508. </member>
  10509. <member name="P:Aspose.Cells.WorkbookSettings.CheckCompatibility">
  10510. <summary>
  10511. Indicates whether check compatibility when saving workbook.
  10512. </summary>
  10513. <remarks>
  10514. The default value is true.
  10515. </remarks>
  10516. </member>
  10517. <member name="P:Aspose.Cells.WorkbookSettings.CheckExcelRestriction">
  10518. <summary>
  10519. Whether check restriction of excel file when user modify cells related objects.
  10520. For example, excel does not allow inputting string value longer than 32K.
  10521. When you input a value longer than 32K such as by Cell.PutValue(string), if this property is true, you will get an Exception.
  10522. If this property is false, we will accept your input string value as the cell's value so that later
  10523. you can output the complete string value for other file formats such as CSV.
  10524. However, if you have set such kind of value that is invalid for excel file format,
  10525. you should not save the workbook as excel file format later. Otherwise there may be unexpected error for the generated excel file.
  10526. </summary>
  10527. </member>
  10528. <member name="P:Aspose.Cells.WorkbookSettings.AutoRecover">
  10529. <summary>
  10530. Indicates whether the file is mark for auto-recovery.
  10531. </summary>
  10532. </member>
  10533. <member name="P:Aspose.Cells.WorkbookSettings.CrashSave">
  10534. <summary>
  10535. indicates whether the application last saved the workbook file after a crash.
  10536. </summary>
  10537. </member>
  10538. <member name="P:Aspose.Cells.WorkbookSettings.DataExtractLoad">
  10539. <summary>
  10540. indicates whether the application last opened the workbook for data recovery.
  10541. </summary>
  10542. </member>
  10543. <member name="P:Aspose.Cells.WorkbookSettings.RepairLoad">
  10544. <summary>
  10545. Indicates whether the application last opened the workbook in safe or repair mode.
  10546. </summary>
  10547. </member>
  10548. <member name="P:Aspose.Cells.WorkbookSettings.BuildVersion">
  10549. <summary>
  10550. Specifies the incremental public release of the application.
  10551. </summary>
  10552. </member>
  10553. <member name="P:Aspose.Cells.WorkbookSettings.MemorySetting">
  10554. <summary>
  10555. Gets or sets the memory usage options. The new option will be taken as the default option for newly created worksheets but does not take effect for existing worksheets.
  10556. </summary>
  10557. </member>
  10558. <member name="P:Aspose.Cells.WorkbookSettings.PaperSize">
  10559. <summary>
  10560. Gets and sets the default print paper size.
  10561. </summary>
  10562. <remarks>
  10563. If there is no setting about paper size,MS Excel will use default printer's setting.
  10564. </remarks>
  10565. </member>
  10566. <member name="P:Aspose.Cells.WorkbookSettings.WarningCallback">
  10567. <summary>
  10568. Gets or sets warning callback.
  10569. </summary>
  10570. </member>
  10571. <member name="P:Aspose.Cells.WorkbookSettings.MaxRowsOfSharedFormula">
  10572. <summary>
  10573. Gets and sets the max row number of shared formula.
  10574. </summary>
  10575. <remarks>
  10576. If the number is too large, the autofilter works very slow in MS Excel 2013.
  10577. </remarks>
  10578. </member>
  10579. <member name="P:Aspose.Cells.WorkbookSettings.Compliance">
  10580. <summary>
  10581. Specifies the OOXML version for the output document. The default value is Ecma376_2006.
  10582. </summary>
  10583. <remarks>
  10584. Only for .xlsx files.
  10585. </remarks>
  10586. </member>
  10587. <member name="P:Aspose.Cells.WorkbookSettings.QuotePrefixToStyle">
  10588. <summary>
  10589. Indicates whether setting <see cref="P:Aspose.Cells.Style.QuotePrefix" /> property when entering the string value(which starts with single quote mark ) to the cell
  10590. </summary>
  10591. </member>
  10592. <member name="T:Aspose.Cells.WorksheetCollection">
  10593. <summary>
  10594. Encapsulates a collection of <see cref="T:Aspose.Cells.Worksheet" /> objects.
  10595. </summary>
  10596. <example>
  10597. <code>
  10598. [C#]
  10599. Workbook workbook = new Workbook();
  10600. WorksheetCollection sheets = workbook.Worksheets;
  10601. //Add a worksheet
  10602. sheets.Add();
  10603. //Change the name of a worksheet
  10604. sheets[0].Name = "First Sheet";
  10605. //Set the active sheet to the second worksheet
  10606. sheets.SetActiveSheet(1);
  10607. [Visual Basic]
  10608. Dim excel as Workbook = new Workbook()
  10609. Dim sheets as WorksheetCollection = excel.Worksheets
  10610. 'Add a worksheet
  10611. sheets.Add()
  10612. 'Change the name of a worksheet
  10613. sheets(0).Name = "First Sheet"
  10614. 'Set the active sheet to the second worksheet
  10615. sheets.SetActiveSheet(1)
  10616. </code>
  10617. </example>
  10618. </member>
  10619. <member name="M:Aspose.Cells.WorksheetCollection.CreateRange(System.String,System.Int32)">
  10620. <summary>
  10621. Creates a <see cref="T:Aspose.Cells.Range" /> object from an address of the range.
  10622. </summary>
  10623. <param name="address">The address of the range.</param>
  10624. <param name="sheetIndex">The sheet index.</param>
  10625. <returns>A <see cref="T:Aspose.Cells.Range" /> object</returns>
  10626. </member>
  10627. <member name="M:Aspose.Cells.WorksheetCollection.CreateUnionRange(System.String,System.Int32)">
  10628. <summary>
  10629. Creates a <see cref="T:Aspose.Cells.Range" /> object from an address of the range.
  10630. </summary>
  10631. <param name="address">The address of the range.</param>
  10632. <param name="sheetIndex">The sheet index.</param>
  10633. <returns>A <see cref="T:Aspose.Cells.Range" /> object</returns>
  10634. </member>
  10635. <member name="M:Aspose.Cells.WorksheetCollection.GetSheetByCodeName(System.String)">
  10636. <summary>
  10637. Gets the worksheet by the code name.
  10638. </summary>
  10639. <param name="codeName">Worksheet code name.</param>
  10640. <returns>The element with the specified code name.</returns>
  10641. </member>
  10642. <member name="M:Aspose.Cells.WorksheetCollection.SortNames">
  10643. <summary>
  10644. Sorts the defined names.
  10645. </summary>
  10646. <remarks>If you create a large amount of named ranges in the Excel file,
  10647. please call this method after all named ranges are created and before saving </remarks>
  10648. </member>
  10649. <member name="M:Aspose.Cells.WorksheetCollection.Insert(System.Int32,Aspose.Cells.SheetType)">
  10650. <summary>
  10651. Insert a worksheet.
  10652. </summary>
  10653. <param name="index">The sheet index</param>
  10654. <param name="sheetType">The sheet type.</param>
  10655. <returns>Returns an inserted worksheet.</returns>
  10656. </member>
  10657. <member name="M:Aspose.Cells.WorksheetCollection.Insert(System.Int32,Aspose.Cells.SheetType,System.String)">
  10658. <summary>
  10659. Insert a worksheet.
  10660. </summary>
  10661. <param name="index">The sheet index</param>
  10662. <param name="sheetType">The sheet type.</param>
  10663. <param name="sheetName">The sheet name.</param>
  10664. <returns>Returns an inserted worksheet.</returns>
  10665. </member>
  10666. <member name="M:Aspose.Cells.WorksheetCollection.Add(Aspose.Cells.SheetType)">
  10667. <summary>
  10668. Adds a worksheet to the collection.
  10669. </summary>
  10670. <param name="type">Worksheet type.</param>
  10671. <returns>
  10672. <see cref="T:Aspose.Cells.Worksheet" /> object index.</returns>
  10673. <example>
  10674. <code>
  10675. [C#]
  10676. Workbook workbook = new Workbook();
  10677. workbook.Worksheets.Add(SheetType.Chart);
  10678. Cells cells = workbook.Worksheets[0].Cells;
  10679. cells["c2"].PutValue(5000);
  10680. cells["c3"].PutValue(3000);
  10681. cells["c4"].PutValue(4000);
  10682. cells["c5"].PutValue(5000);
  10683. cells["c6"].PutValue(6000);
  10684. Charts charts = workbook.Worksheets[1].Charts;
  10685. int chartIndex = charts.Add(ChartType.Column, 10,10,20,20);
  10686. Chart chart = charts[chartIndex];
  10687. chart.NSeries.Add("Sheet1!C2:C6", true);
  10688. [Visual Basic]
  10689. Dim workbook As Workbook = New Workbook()
  10690. workbook.Worksheets.Add(SheetType.Chart)
  10691. Dim cells As Cells = workbook.Worksheets(0).Cells
  10692. cells("c2").PutValue(5000)
  10693. cells("c3").PutValue(3000)
  10694. cells("c4").PutValue(4000)
  10695. cells("c5").PutValue(5000)
  10696. cells("c6").PutValue(6000)
  10697. Dim charts As Charts = workbook.Worksheets(1).Charts
  10698. Dim chartIndex As Integer = charts.Add(ChartType.Column,10,10,20,20)
  10699. Dim chart As Chart = charts(chartIndex)
  10700. chart.NSeries.Add("Sheet1!C2:C6", True)
  10701. </code>
  10702. </example>
  10703. </member>
  10704. <member name="M:Aspose.Cells.WorksheetCollection.SwapSheet(System.Int32,System.Int32)">
  10705. <summary>
  10706. Swaps the two sheets.
  10707. </summary>
  10708. <param name="sheetIndex1">The first worksheet.</param>
  10709. <param name="sheetIndex2">The second worksheet.</param>
  10710. </member>
  10711. <member name="M:Aspose.Cells.WorksheetCollection.Add">
  10712. <summary>
  10713. Adds a worksheet to the collection.
  10714. </summary>
  10715. <returns>
  10716. <see cref="T:Aspose.Cells.Worksheet" /> object index.</returns>
  10717. </member>
  10718. <member name="M:Aspose.Cells.WorksheetCollection.Add(System.String)">
  10719. <summary>
  10720. Adds a worksheet to the collection.
  10721. </summary>
  10722. <param name="sheetName">Worksheet name</param>
  10723. <returns>
  10724. <see cref="T:Aspose.Cells.Worksheet" /> object.</returns>
  10725. </member>
  10726. <member name="M:Aspose.Cells.WorksheetCollection.RegisterAddInFunction(System.String,System.String,System.Boolean)">
  10727. <summary>
  10728. Adds addin function into the workbook
  10729. </summary>
  10730. <param name="addInFile">the file contains the addin functions</param>
  10731. <param name="functionName">the addin function name</param>
  10732. <param name="lib">whether the given addin file is in the directory or sub-directory of Workbook Add-In library.
  10733. This flag takes effect and makes difference when given addInFile is of relative path:
  10734. true denotes the path is relative to Add-In library and false denotes the path is relative to this Workbook.</param>
  10735. <returns>ID of the data which contains given addin function</returns>
  10736. </member>
  10737. <member name="M:Aspose.Cells.WorksheetCollection.RegisterAddInFunction(System.Int32,System.String)">
  10738. <summary>
  10739. Adds addin function into the workbook
  10740. </summary>
  10741. <param name="id">ID of the data which contains addin functions,
  10742. can be got by the first call of <see cref="M:Aspose.Cells.WorksheetCollection.RegisterAddInFunction(System.String,System.String,System.Boolean)" /> for the same addin file.</param>
  10743. <param name="functionName">the addin function name</param>
  10744. <returns>URL of the addin file which contains addin functions</returns>
  10745. </member>
  10746. <member name="M:Aspose.Cells.WorksheetCollection.RemoveAt(System.String)">
  10747. <summary>
  10748. Removes the element at a specified name.
  10749. </summary>
  10750. <param name="name">The name of the element to remove.</param>
  10751. </member>
  10752. <member name="M:Aspose.Cells.WorksheetCollection.RemoveAt(System.Int32)">
  10753. <summary>
  10754. Removes the element at a specified index.
  10755. </summary>
  10756. <param name="index">The index value of the element to remove.</param>
  10757. </member>
  10758. <member name="M:Aspose.Cells.WorksheetCollection.Clear">
  10759. <summary>
  10760. Clear all worksheets.
  10761. </summary>
  10762. <remarks>
  10763. A workbook must contains a worksheet.
  10764. </remarks>
  10765. </member>
  10766. <member name="M:Aspose.Cells.WorksheetCollection.AddCopy(System.String)">
  10767. <summary>
  10768. Adds a worksheet to the collection and copies data from an existed worksheet.
  10769. </summary>
  10770. <param name="sheetName">Name of source worksheet.</param>
  10771. <returns>
  10772. <see cref="T:Aspose.Cells.Worksheet" /> object index.</returns>
  10773. <exception cref="T:Aspose.Cells.CellsException">Specifies an invalid worksheet name.</exception>
  10774. </member>
  10775. <member name="M:Aspose.Cells.WorksheetCollection.AddCopy(System.Int32)">
  10776. <summary>
  10777. Adds a worksheet to the collection and copies data from an existed worksheet.
  10778. </summary>
  10779. <param name="sheetIndex">Index of source worksheet.</param>
  10780. <returns>
  10781. <see cref="T:Aspose.Cells.Worksheet" /> object index.</returns>
  10782. </member>
  10783. <member name="M:Aspose.Cells.WorksheetCollection.GetRangeByName(System.String)">
  10784. <summary>
  10785. Gets Range object by pre-defined name.
  10786. </summary>
  10787. <param name="rangeName">Name of range.</param>
  10788. <returns>Range object.<p></p>Returns null if the named range does not exist.</returns>
  10789. </member>
  10790. <member name="M:Aspose.Cells.WorksheetCollection.GetNamedRanges">
  10791. <summary>
  10792. Gets all pre-defined named ranges in the spreadsheet.
  10793. </summary>
  10794. <returns>An array of Range objects.
  10795. If the defined Name's reference is external or has multiple ranges, no Range object will be returned for this Name.
  10796. <p></p>Returns null if the named range does not exist.</returns>
  10797. </member>
  10798. <member name="M:Aspose.Cells.WorksheetCollection.GetNamedRangesAndTables">
  10799. <summary>
  10800. Gets all pre-defined named ranges in the spreadsheet.
  10801. </summary>
  10802. <returns>An array of Range objects.<p></p>Returns null if the named range does not exist.</returns>
  10803. </member>
  10804. <member name="M:Aspose.Cells.WorksheetCollection.SetOleSize(System.Int32,System.Int32,System.Int32,System.Int32)">
  10805. <summary>
  10806. Sets displayed size when Workbook file is used as an Ole object.
  10807. </summary>
  10808. <param name="startRow">Start row index.</param>
  10809. <param name="endRow">End row index.</param>
  10810. <param name="startColumn">Start column index.</param>
  10811. <param name="endColumn">End column index.</param>
  10812. <remarks>This method is generally used to adjust display size in ppt file or doc file.</remarks>
  10813. </member>
  10814. <member name="M:Aspose.Cells.WorksheetCollection.ClearPivottables">
  10815. <summary>
  10816. Clears pivot tables from the spreadsheet.
  10817. </summary>
  10818. </member>
  10819. <member name="M:Aspose.Cells.WorksheetCollection.RefreshPivotTables">
  10820. <summary>
  10821. Refreshes all the PivotTables in the WorksheetCollection.
  10822. </summary>
  10823. </member>
  10824. <member name="P:Aspose.Cells.WorksheetCollection.WebExtensionTaskPanes">
  10825. <summary>
  10826. Gets the list of task panes.
  10827. </summary>
  10828. </member>
  10829. <member name="P:Aspose.Cells.WorksheetCollection.WebExtensions">
  10830. <summary>
  10831. Gets the list of task panes.
  10832. </summary>
  10833. </member>
  10834. <member name="P:Aspose.Cells.WorksheetCollection.ThreadedCommentAuthors">
  10835. <summary>
  10836. Gets the list of threaded comment authors.
  10837. </summary>
  10838. </member>
  10839. <member name="P:Aspose.Cells.WorksheetCollection.IsRefreshAllConnections">
  10840. <summary>
  10841. Indicates whether refresh all connections on opening file in MS Excel.
  10842. </summary>
  10843. </member>
  10844. <member name="P:Aspose.Cells.WorksheetCollection.Names">
  10845. <summary>
  10846. Gets the collection of all the Name objects in the spreadsheet.
  10847. </summary>
  10848. </member>
  10849. <member name="P:Aspose.Cells.WorksheetCollection.Item(System.Int32)">
  10850. <summary>
  10851. Gets the <see cref="T:Aspose.Cells.Worksheet" /> element at the specified index.
  10852. </summary>
  10853. <param name="index">The zero based index of the element.</param>
  10854. <returns>The element at the specified index.</returns>
  10855. </member>
  10856. <member name="P:Aspose.Cells.WorksheetCollection.Item(System.String)">
  10857. <summary>
  10858. Gets the <see cref="T:Aspose.Cells.Worksheet" /> element with the specified name.
  10859. </summary>
  10860. <param name="sheetName">Worksheet name</param>
  10861. <returns>The element with the specified name.</returns>
  10862. </member>
  10863. <member name="P:Aspose.Cells.WorksheetCollection.ActiveSheetIndex">
  10864. <summary>
  10865. Represents the index of active worksheet when the spreadsheet is opened.
  10866. </summary>
  10867. <remarks>Sheet index is zero based.</remarks>
  10868. </member>
  10869. <member name="P:Aspose.Cells.WorksheetCollection.Dxfs">
  10870. <summary>
  10871. Gets the master differential formatting records.
  10872. </summary>
  10873. </member>
  10874. <member name="P:Aspose.Cells.WorksheetCollection.XmlMaps">
  10875. <summary>
  10876. Gets and sets the XML maps in the workbook.
  10877. </summary>
  10878. </member>
  10879. <member name="P:Aspose.Cells.WorksheetCollection.BuiltInDocumentProperties">
  10880. <summary>
  10881. Returns a DocumentProperties collection that represents all the built-in document properties of the spreadsheet.
  10882. </summary>
  10883. <remarks>A new property cannot be added to built-in document properties list. You can only get a built-in property and change its value.
  10884. The following is the built-in properties name list:
  10885. <p>Title</p><p>Subject</p><p>Author</p><p>Keywords</p><p>Comments</p><p>Template</p><p>Last Author</p><p>Revision Number</p><p>Application Name</p><p>Last Print Date</p><p>Creation Date</p><p>Last Save Time</p><p>Total Editing Time</p><p>Number of Pages</p><p>Number of Words</p><p>Number of Characters</p><p>Security</p><p>Category</p><p>Format</p><p>Manager</p><p>Company</p><p>Number of Bytes</p><p>Number of Lines</p><p>Number of Paragraphs</p><p>Number of Slides</p><p>Number of Notes</p><p>Number of Hidden Slides</p><p>Number of Multimedia Clips</p></remarks>
  10886. <example>
  10887. <code>
  10888. [C#]
  10889. DocumentProperty doc = workbook.Worksheets.BuiltInDocumentProperties["Author"];
  10890. doc.Value = "John Smith";
  10891. [Visual Basic]
  10892. Dim doc as DocumentProperty = workbook.Worksheets.BuiltInDocumentProperties("Author")
  10893. doc.Value = "John Smith"
  10894. </code>
  10895. </example>
  10896. </member>
  10897. <member name="P:Aspose.Cells.WorksheetCollection.CustomDocumentProperties">
  10898. <summary>
  10899. Returns a DocumentProperties collection that represents all the custom document properties of the spreadsheet.
  10900. </summary>
  10901. <example>
  10902. <code>
  10903. [C#]
  10904. excel.Worksheets.CustomDocumentProperties.Add("Checked by", "Jane");
  10905. [Visual Basic]
  10906. excel.Worksheets.CustomDocumentProperties.Add("Checked by", "Jane")
  10907. </code>
  10908. </example>
  10909. </member>
  10910. <member name="P:Aspose.Cells.WorksheetCollection.OleSize">
  10911. <summary>
  10912. Gets and Sets displayed size when Workbook file is used as an Ole object.
  10913. </summary>
  10914. <remarks>
  10915. Null means no ole size setting.
  10916. </remarks>
  10917. </member>
  10918. <member name="P:Aspose.Cells.WorksheetCollection.ExternalLinks">
  10919. <summary>
  10920. Represents external links in a workbook.
  10921. </summary>
  10922. </member>
  10923. <member name="P:Aspose.Cells.WorksheetCollection.TableStyles">
  10924. <summary>
  10925. Gets <see cref="P:Aspose.Cells.WorksheetCollection.TableStyles" /> object.
  10926. </summary>
  10927. </member>
  10928. <member name="P:Aspose.Cells.WorksheetCollection.RevisionLogs">
  10929. <summary>
  10930. Represents revision logs.
  10931. </summary>
  10932. </member>
  10933. <member name="T:Aspose.Cells.Worksheet">
  10934. <summary>
  10935. Encapsulates the object that represents a single worksheet.
  10936. </summary>
  10937. <example>
  10938. <code>
  10939. [C#]
  10940. Workbook workbook = new Workbook();
  10941. Worksheet sheet = workbook.Worksheets[0];
  10942. //Freeze panes at "AS40" with 10 rows and 10 columns
  10943. sheet.FreezePanes("AS40", 10, 10);
  10944. //Add a hyperlink in Cell A1
  10945. sheet.Hyperlinks.Add("A1", 1, 1, "http://www.aspose.com");
  10946. [Visual Basic]
  10947. Dim workbook as Workbook = new Workbook()
  10948. Dim sheet as Worksheet = workbook.Worksheets(0)
  10949. 'Freeze panes at "AS40" with 10 rows and 10 columns
  10950. sheet.FreezePanes("AS40", 10, 10)
  10951. 'Add a hyperlink in Cell A1
  10952. sheet.Hyperlinks.Add("A1", 1, 1, "http://www.aspose.com")
  10953. </code>
  10954. </example>
  10955. </member>
  10956. <member name="M:Aspose.Cells.Worksheet.Dispose">
  10957. <summary>
  10958. Performs application-defined tasks associated with freeing, releasing, or
  10959. resetting unmanaged resources.
  10960. </summary>
  10961. </member>
  10962. <member name="M:Aspose.Cells.Worksheet.GetPanes">
  10963. <summary>
  10964. Gets the window panes.
  10965. </summary>
  10966. <remarks>
  10967. If the window is not split or frozen.
  10968. </remarks>
  10969. </member>
  10970. <member name="M:Aspose.Cells.Worksheet.FreezePanes(System.Int32,System.Int32,System.Int32,System.Int32)">
  10971. <summary>
  10972. Freezes panes at the specified cell in the worksheet.
  10973. </summary>
  10974. <param name="row">Row index.</param>
  10975. <param name="column">Column index.</param>
  10976. <param name="freezedRows">Number of visible rows in top pane, no more than row index.</param>
  10977. <param name="freezedColumns">Number of visible columns in left pane, no more than column index.</param>
  10978. <remarks>
  10979. <p>Row index and column index cannot all be zero. Number of rows and number of columns
  10980. also cannot all be zero.</p>
  10981. <p>The first two parameters specify the froze position and the last two parameters specify the area frozen on the left top pane.</p>
  10982. </remarks>
  10983. </member>
  10984. <member name="M:Aspose.Cells.Worksheet.GetFreezedPanes(System.Int32@,System.Int32@,System.Int32@,System.Int32@)">
  10985. <summary>
  10986. Gets the freeze panes.
  10987. </summary>
  10988. <param name="row">Row index.</param>
  10989. <param name="column">Column index.</param>
  10990. <param name="freezedRows">Number of visible rows in top pane, no more than row index.</param>
  10991. <param name="freezedColumns">Number of visible columns in left pane, no more than column index.</param>
  10992. <returns>Return whether the worksheet is frozen</returns>
  10993. </member>
  10994. <member name="M:Aspose.Cells.Worksheet.Split">
  10995. <summary>
  10996. Splits window.
  10997. </summary>
  10998. </member>
  10999. <member name="M:Aspose.Cells.Worksheet.FreezePanes(System.String,System.Int32,System.Int32)">
  11000. <summary>
  11001. Freezes panes at the specified cell in the worksheet.
  11002. </summary>
  11003. <param name="cellName">Cell name.</param>
  11004. <param name="freezedRows">Number of visible rows in top pane, no more than row index.</param>
  11005. <param name="freezedColumns">Number of visible columns in left pane, no more than column index.</param>
  11006. <remarks>Row index and column index cannot all be zero. Number of rows and number of columns
  11007. also cannot all be zero.</remarks>
  11008. </member>
  11009. <member name="M:Aspose.Cells.Worksheet.UnFreezePanes">
  11010. <summary>
  11011. Unfreezes panes in the worksheet.
  11012. </summary>
  11013. </member>
  11014. <member name="M:Aspose.Cells.Worksheet.RemoveSplit">
  11015. <summary>
  11016. Removes split window.
  11017. </summary>
  11018. </member>
  11019. <member name="M:Aspose.Cells.Worksheet.AddPageBreaks(System.String)">
  11020. <summary>
  11021. Adds page break.
  11022. </summary>
  11023. <param name="cellName">
  11024. </param>
  11025. </member>
  11026. <member name="M:Aspose.Cells.Worksheet.Copy(Aspose.Cells.Worksheet)">
  11027. <summary>
  11028. Copies contents and formats from another worksheet.
  11029. </summary>
  11030. <param name="sourceSheet">Source worksheet.</param>
  11031. </member>
  11032. <member name="M:Aspose.Cells.Worksheet.Copy(Aspose.Cells.Worksheet,Aspose.Cells.CopyOptions)">
  11033. <summary>
  11034. Copies contents and formats from another worksheet.
  11035. </summary>
  11036. <param name="sourceSheet">Source worksheet.</param>
  11037. <param name="copyOptions">
  11038. </param>
  11039. <remarks>You can copy data from another worksheet in the same file or another file. However, this method does not support to copy drawing objects, such as comments, images and charts.</remarks>
  11040. </member>
  11041. <member name="M:Aspose.Cells.Worksheet.AutoFitColumn(System.Int32,System.Int32,System.Int32)">
  11042. <summary>
  11043. Autofits the column width.
  11044. </summary>
  11045. <param name="columnIndex">Column index.</param>
  11046. <param name="firstRow">First row index.</param>
  11047. <param name="lastRow">Last row index.</param>
  11048. <remarks>This method autofits a row based on content in a range of cells within the row.
  11049. </remarks>
  11050. </member>
  11051. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns">
  11052. <summary>
  11053. Autofits all columns in this worksheet.
  11054. </summary>
  11055. </member>
  11056. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns(Aspose.Cells.AutoFitterOptions)">
  11057. <summary>
  11058. Autofits all columns in this worksheet.
  11059. </summary>
  11060. <param name="options">The auto fitting options
  11061. </param>
  11062. </member>
  11063. <member name="M:Aspose.Cells.Worksheet.AutoFitColumn(System.Int32)">
  11064. <summary>
  11065. Autofits the column width.
  11066. </summary>
  11067. <param name="columnIndex">Column index.</param>
  11068. <remarks>AutoFitColumn is an imprecise function.</remarks>
  11069. </member>
  11070. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns(System.Int32,System.Int32)">
  11071. <summary>
  11072. Autofits the columns width.
  11073. </summary>
  11074. <param name="firstColumn">First column index.</param>
  11075. <param name="lastColumn">Last column index.</param>
  11076. <remarks>AutoFitColumn is an imprecise function.</remarks>
  11077. </member>
  11078. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns(System.Int32,System.Int32,Aspose.Cells.AutoFitterOptions)">
  11079. <summary>
  11080. Autofits the columns width.
  11081. </summary>
  11082. <param name="firstColumn">First column index.</param>
  11083. <param name="lastColumn">Last column index.</param>
  11084. <param name="options">The auto fitting options</param>
  11085. <remarks>AutoFitColumn is an imprecise function.</remarks>
  11086. </member>
  11087. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns(System.Int32,System.Int32,System.Int32,System.Int32)">
  11088. <summary>
  11089. Autofits the columns width.
  11090. </summary>
  11091. <param name="firstRow">First row index.</param>
  11092. <param name="firstColumn">First column index.</param>
  11093. <param name="lastRow">Last row index.</param>
  11094. <param name="lastColumn">Last column index.</param>
  11095. <remarks>AutoFitColumn is an imprecise function.</remarks>
  11096. </member>
  11097. <member name="M:Aspose.Cells.Worksheet.AutoFitColumns(System.Int32,System.Int32,System.Int32,System.Int32,Aspose.Cells.AutoFitterOptions)">
  11098. <summary>
  11099. Autofits the columns width.
  11100. </summary>
  11101. <param name="firstRow">First row index.</param>
  11102. <param name="firstColumn">First column index.</param>
  11103. <param name="lastRow">Last row index.</param>
  11104. <param name="lastColumn">Last column index.</param>
  11105. <param name="options">The auto fitting options</param>
  11106. <remarks>AutoFitColumn is an imprecise function.</remarks>
  11107. </member>
  11108. <member name="M:Aspose.Cells.Worksheet.AutoFitRow(System.Int32,System.Int32,System.Int32)">
  11109. <summary>
  11110. Autofits the row height.
  11111. </summary>
  11112. <param name="rowIndex">Row index.</param>
  11113. <param name="firstColumn">First column index.</param>
  11114. <param name="lastColumn">Last column index.</param>
  11115. <remarks>This method autofits a row based on content in a range of cells within the row.
  11116. </remarks>
  11117. </member>
  11118. <member name="M:Aspose.Cells.Worksheet.AutoFitRow(System.Int32,System.Int32,System.Int32,Aspose.Cells.AutoFitterOptions)">
  11119. <summary>
  11120. Autofits the row height.
  11121. </summary>
  11122. <param name="rowIndex">Row index.</param>
  11123. <param name="firstColumn">First column index.</param>
  11124. <param name="lastColumn">Last column index.</param>
  11125. <param name="options">The auto fitter options</param>
  11126. <remarks>This method autofits a row based on content in a range of cells within the row.
  11127. </remarks>
  11128. </member>
  11129. <member name="M:Aspose.Cells.Worksheet.AutoFitRows">
  11130. <summary>
  11131. Autofits all rows in this worksheet.
  11132. </summary>
  11133. </member>
  11134. <member name="M:Aspose.Cells.Worksheet.AutoFitRows(System.Boolean)">
  11135. <summary>
  11136. Autofits all rows in this worksheet.
  11137. </summary>
  11138. <param name="onlyAuto">
  11139. True,only autofits the row height when row height is not customed.
  11140. </param>
  11141. </member>
  11142. <member name="M:Aspose.Cells.Worksheet.AutoFitRows(Aspose.Cells.AutoFitterOptions)">
  11143. <summary>
  11144. Autofits all rows in this worksheet.
  11145. </summary>
  11146. <param name="options">The auto fitter options</param>
  11147. </member>
  11148. <member name="M:Aspose.Cells.Worksheet.AutoFitRows(System.Int32,System.Int32)">
  11149. <summary>
  11150. Autofits row height in a range.
  11151. </summary>
  11152. <param name="startRow">Start row index.</param>
  11153. <param name="endRow">End row index.</param>
  11154. </member>
  11155. <member name="M:Aspose.Cells.Worksheet.AutoFitRows(System.Int32,System.Int32,Aspose.Cells.AutoFitterOptions)">
  11156. <summary>
  11157. Autofits row height in a range.
  11158. </summary>
  11159. <param name="startRow">Start row index.</param>
  11160. <param name="endRow">End row index.</param>
  11161. <param name="options">The options of auto fitter.</param>
  11162. </member>
  11163. <member name="M:Aspose.Cells.Worksheet.AutoFitRow(System.Int32,System.Int32,System.Int32,System.Int32)">
  11164. <summary>
  11165. Autofits row height in a rectangle range.
  11166. </summary>
  11167. <param name="startRow">Start row index.</param>
  11168. <param name="endRow">End row index.</param>
  11169. <param name="startColumn">Start column index.</param>
  11170. <param name="endColumn">End column index.</param>
  11171. </member>
  11172. <member name="M:Aspose.Cells.Worksheet.AutoFitRow(System.Int32)">
  11173. <summary>
  11174. Autofits the row height.
  11175. </summary>
  11176. <param name="rowIndex">Row index.</param>
  11177. <remarks>AutoFitRow is an imprecise function.</remarks>
  11178. </member>
  11179. <member name="M:Aspose.Cells.Worksheet.AdvancedFilter(System.Boolean,System.String,System.String,System.String,System.Boolean)">
  11180. <summary>
  11181. Filters data using complex criteria.
  11182. </summary>
  11183. <param name="isFilter">Indicates whether filtering the list in place.</param>
  11184. <param name="listRange">The list range.</param>
  11185. <param name="criteriaRange">The criteria range.</param>
  11186. <param name="copyTo">The range where copying data to. </param>
  11187. <param name="uniqueRecordOnly">Only displaying or copying unique rows.</param>
  11188. </member>
  11189. <member name="M:Aspose.Cells.Worksheet.RemoveAutoFilter">
  11190. <summary>
  11191. Removes the auto filter of the worksheet.
  11192. </summary>
  11193. </member>
  11194. <member name="M:Aspose.Cells.Worksheet.SetVisible(System.Boolean,System.Boolean)">
  11195. <summary>
  11196. Sets the visible options.
  11197. </summary>
  11198. <param name="isVisible">Whether the worksheet is visible</param>
  11199. <param name="ignoreError">Whether to ignore error if this option is not valid.</param>
  11200. </member>
  11201. <member name="M:Aspose.Cells.Worksheet.SelectRange(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  11202. <summary>
  11203. Selects a range.
  11204. </summary>
  11205. <param name="startRow">The start row.
  11206. </param>
  11207. <param name="startColumn">The start column</param>
  11208. <param name="totalRows">The number of rows.</param>
  11209. <param name="totalColumns">The number of columns</param>
  11210. <param name="removeOthers">True means removing other selected range and only select this range.
  11211. </param>
  11212. </member>
  11213. <member name="M:Aspose.Cells.Worksheet.RemoveAllDrawingObjects">
  11214. <summary>
  11215. Removes all drawing objects in this worksheet.
  11216. </summary>
  11217. </member>
  11218. <member name="M:Aspose.Cells.Worksheet.ClearComments">
  11219. <summary>
  11220. Clears all comments in designer spreadsheet.
  11221. </summary>
  11222. </member>
  11223. <member name="M:Aspose.Cells.Worksheet.Protect(Aspose.Cells.ProtectionType)">
  11224. <summary>
  11225. Protects worksheet.
  11226. </summary>
  11227. <param name="type">Protection type.</param>
  11228. <remarks>This method protects worksheet without password. It can protect worksheet in all versions of Excel file.
  11229. </remarks>
  11230. </member>
  11231. <member name="M:Aspose.Cells.Worksheet.Protect(Aspose.Cells.ProtectionType,System.String,System.String)">
  11232. <summary>
  11233. Protects worksheet.
  11234. </summary>
  11235. <param name="type">Protection type.</param>
  11236. <param name="password">Password.</param>
  11237. <param name="oldPassword">If the worksheet is already protected by a password, please supply the old password.
  11238. Otherwise, you can set a null value or blank string to this parameter.</param>
  11239. <remarks>This method can protect worksheet in all versions of Excel file.
  11240. </remarks>
  11241. <example>
  11242. <code>
  11243. [C#]
  11244. //Creating a file stream containing the Excel file to be opened
  11245. FileStream fstream = new FileStream("C:\\book1.xls", FileMode.Open);
  11246. //Instantiating a Workbook object and Opening the Excel file through the file stream
  11247. Workbook excel = new Workbook(fstream);
  11248. //Accessing the first worksheet in the Excel file
  11249. Worksheet worksheet = excel.Worksheets[0];
  11250. //Protecting the worksheet with a password
  11251. worksheet.Protect(ProtectionType.All, "aspose", null);
  11252. //Saving the modified Excel file in default (that is Excel 20003) format
  11253. excel.Save("C:\\output.xls");
  11254. //Closing the file stream to free all resources
  11255. fstream.Close();
  11256. [Visual Basic]
  11257. 'Creating a file stream containing the Excel file to be opened
  11258. Dim fstream As FileStream = New FileStream("C:\\book1.xls", FileMode.Open)
  11259. 'Instantiating a Workbook object and Opening the Excel file through the file stream
  11260. Dim excel As Workbook = New Workbook(fstream)
  11261. 'Accessing the first worksheet in the Excel file
  11262. Dim worksheet As Worksheet = excel.Worksheets(0)
  11263. 'Protecting the worksheet with a password
  11264. worksheet.Protect(ProtectionType.All, "aspose", DBNull.Value.ToString())
  11265. 'Saving the modified Excel file in default (that is Excel 20003) format
  11266. excel.Save("C:\\output.xls")
  11267. 'Closing the file stream to free all resources
  11268. fstream.Close()
  11269. </code>
  11270. </example>
  11271. </member>
  11272. <member name="M:Aspose.Cells.Worksheet.Unprotect">
  11273. <summary>
  11274. Unprotects worksheet.
  11275. </summary>
  11276. <remarks> This method unprotects worksheet which is protected without password.
  11277. </remarks>
  11278. </member>
  11279. <member name="M:Aspose.Cells.Worksheet.Unprotect(System.String)">
  11280. <summary>
  11281. Unprotects worksheet.
  11282. </summary>
  11283. <param name="password">Password</param>
  11284. <remarks>If the worksheet is protected without a password, you can set a null value or blank string to password parameter.
  11285. </remarks>
  11286. </member>
  11287. <member name="M:Aspose.Cells.Worksheet.MoveTo(System.Int32)">
  11288. <summary>
  11289. Moves the sheet to another location in the spreadsheet.
  11290. </summary>
  11291. <param name="index">Destination sheet index.</param>
  11292. </member>
  11293. <member name="M:Aspose.Cells.Worksheet.Replace(System.String,System.String)">
  11294. <summary>
  11295. Replaces all cells' text with a new string.
  11296. </summary>
  11297. <param name="oldString">Old string value.</param>
  11298. <param name="newString">New string value.</param>
  11299. </member>
  11300. <member name="M:Aspose.Cells.Worksheet.GetSelectedRanges">
  11301. <summary>
  11302. Gets selected ranges of cells in the designer spreadsheet.
  11303. </summary>
  11304. <returns>An <see cref="T:System.Collections.ArrayList" /> which contains selected ranges.</returns>
  11305. </member>
  11306. <member name="M:Aspose.Cells.Worksheet.SetBackground(System.Byte[])">
  11307. <summary>
  11308. Sets worksheet background image.
  11309. </summary>
  11310. <param name="pictureData">Picture data.</param>
  11311. <remarks>
  11312. NOTE: This member is now obsolete. Instead,
  11313. please use Worksheet.BackgroundImage property.
  11314. This property will be removed 12 months later since August 2016.
  11315. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  11316. </member>
  11317. <member name="M:Aspose.Cells.Worksheet.GetPrintingPageBreaks(Aspose.Cells.Rendering.ImageOrPrintOptions)">
  11318. <summary>
  11319. Gets automatic page breaks.
  11320. </summary>
  11321. <param name="options">The print options</param>
  11322. <returns>The automatic page breaks areas.</returns>
  11323. <remarks>
  11324. Each cell area represents a paper.
  11325. </remarks>
  11326. </member>
  11327. <member name="M:Aspose.Cells.Worksheet.ToString">
  11328. <summary>
  11329. Returns a string represents the current Worksheet object.
  11330. </summary>
  11331. <returns>
  11332. </returns>
  11333. </member>
  11334. <member name="M:Aspose.Cells.Worksheet.CalculateFormula(System.String)">
  11335. <summary>
  11336. Calculates a formula.
  11337. </summary>
  11338. <param name="formula">Formula to be calculated.</param>
  11339. <returns>Calculated formula result.</returns>
  11340. </member>
  11341. <member name="M:Aspose.Cells.Worksheet.CalculateFormula(System.String,Aspose.Cells.CalculationOptions)">
  11342. <summary>
  11343. Calculates a formula.
  11344. </summary>
  11345. <param name="formula">Formula to be calculated.</param>
  11346. <param name="opts">Options for calculating formula</param>
  11347. <returns>Calculated formula result.</returns>
  11348. </member>
  11349. <member name="M:Aspose.Cells.Worksheet.CalculateFormula(System.Boolean,System.Boolean,Aspose.Cells.ICustomFunction)">
  11350. <summary>
  11351. Calculates all formulas in this worksheet.
  11352. </summary>
  11353. <param name="recursive">True means if the worksheet' cells depend on the cells of other worksheets,
  11354. the dependent cells in other worksheets will be calculated too.
  11355. False means all the formulas in the worksheet have been calculated and the values are right.</param>
  11356. <param name="ignoreError">Indicates if hide the error in calculating formulas.
  11357. The error may be unsupported function, external links, etc.</param>
  11358. <param name="customFunction">The custom formula calculation functions to extend the calculation engine.</param>
  11359. <remarks>
  11360. NOTE: This member is now obsolete. Instead,
  11361. please use CalculateFormula(CalculationOptions, bool) method.
  11362. This method will be removed 12 months later since August 2020.
  11363. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  11364. </member>
  11365. <member name="M:Aspose.Cells.Worksheet.CalculateFormula(Aspose.Cells.CalculationOptions,System.Boolean)">
  11366. <summary>
  11367. Calculates all formulas in this worksheet.
  11368. </summary>
  11369. <param name="options">Options for calculation</param>
  11370. <param name="recursive">True means if the worksheet' cells depend on the cells of other worksheets,
  11371. the dependent cells in other worksheets will be calculated too.
  11372. False means all the formulas in the worksheet have been calculated and the values are right.</param>
  11373. </member>
  11374. <member name="M:Aspose.Cells.Worksheet.XmlMapQuery(System.String,Aspose.Cells.XmlMap)">
  11375. <summary>
  11376. Query cell areas that mapped/linked to the specific path of xml map.
  11377. </summary>
  11378. <param name="path">xml element path</param>
  11379. e.g. A xml map element structure:
  11380. -RootElement
  11381. |-Attribute1
  11382. |-SubElement
  11383. |-Attribute2
  11384. |-Attribute3
  11385. To query "Attribute1", path is "/RootElement/@Attribute1"
  11386. To query "Attribute2", path is "/RootElement/SubElement/@Attribute2"
  11387. To query whole "SubElement", path is "/RootElement/SubElement"
  11388. <param name="xmlMap">Specify an xml map if you want to query for the specific path within a specific map</param><returns><see cref="T:Aspose.Cells.CellArea" /> list that mapped/linked to the specific path of xml map, an empty list is returned if nothing is mapped/linked.</returns></member>
  11389. <member name="M:Aspose.Cells.Worksheet.RefreshPivotTables">
  11390. <summary>
  11391. Refreshes all the PivotTables in this Worksheet.
  11392. </summary>
  11393. </member>
  11394. <member name="P:Aspose.Cells.Worksheet.Protection">
  11395. <summary>
  11396. Represents the various types of protection options available for a worksheet. Supports advanced protection options in ExcelXP and above version.
  11397. </summary>
  11398. <remarks>This property can protect worksheet in all versions of Excel file and support advanced protection options in ExcelXP and above version.
  11399. </remarks>
  11400. </member>
  11401. <member name="P:Aspose.Cells.Worksheet.UniqueId">
  11402. <summary>
  11403. Gets and sets the unique id, it is same as {15DB5C3C-A5A1-48AF-8F25-3D86AC232D4F}.
  11404. </summary>
  11405. </member>
  11406. <member name="P:Aspose.Cells.Worksheet.Workbook">
  11407. <summary>
  11408. Gets the workbook object which contains this sheet.
  11409. </summary>
  11410. </member>
  11411. <member name="P:Aspose.Cells.Worksheet.Cells">
  11412. <summary>
  11413. Gets the <see cref="P:Aspose.Cells.Worksheet.Cells" /> collection.
  11414. </summary>
  11415. </member>
  11416. <member name="P:Aspose.Cells.Worksheet.QueryTables">
  11417. <summary>
  11418. Gets the queryTables in the worksheet.
  11419. </summary>
  11420. </member>
  11421. <member name="P:Aspose.Cells.Worksheet.PivotTables">
  11422. <summary>
  11423. Gets all pivot tables in this worksheet.
  11424. </summary>
  11425. </member>
  11426. <member name="P:Aspose.Cells.Worksheet.Type">
  11427. <summary>
  11428. Represents worksheet type.
  11429. </summary>
  11430. </member>
  11431. <member name="P:Aspose.Cells.Worksheet.Name">
  11432. <summary>
  11433. Gets or sets the name of the worksheet.
  11434. </summary>
  11435. <remarks>The max length of sheet name is 31. And you cannot assign same name(case insensitive) to two worksheets.
  11436. For example, you cannot set "SheetName1" to the first worksheet and set "SHEETNAME1" to the second worksheet.</remarks>
  11437. </member>
  11438. <member name="P:Aspose.Cells.Worksheet.ShowFormulas">
  11439. <summary>
  11440. Indicates whether to show formulas or their results.
  11441. </summary>
  11442. </member>
  11443. <member name="P:Aspose.Cells.Worksheet.IsGridlinesVisible">
  11444. <summary>
  11445. Gets or sets a value indicating whether the gridlines are visible.Default is true.
  11446. </summary>
  11447. </member>
  11448. <member name="P:Aspose.Cells.Worksheet.IsRowColumnHeadersVisible">
  11449. <summary>
  11450. Gets or sets a value indicating whether the worksheet will display row and column headers.
  11451. Default is true.
  11452. </summary>
  11453. </member>
  11454. <member name="P:Aspose.Cells.Worksheet.PaneState">
  11455. <summary>
  11456. Indicates whether the pane has horizontal or vertical splits, and whether those splits are frozen.
  11457. </summary>
  11458. </member>
  11459. <member name="P:Aspose.Cells.Worksheet.DisplayZeros">
  11460. <summary>
  11461. True if zero values are displayed.
  11462. </summary>
  11463. </member>
  11464. <member name="P:Aspose.Cells.Worksheet.DisplayRightToLeft">
  11465. <summary>
  11466. Indicates if the specified worksheet is displayed from right to left instead of from left to right.
  11467. Default is false.
  11468. </summary>
  11469. </member>
  11470. <member name="P:Aspose.Cells.Worksheet.IsOutlineShown">
  11471. <summary>
  11472. Indicates whether to show outline.
  11473. </summary>
  11474. </member>
  11475. <member name="P:Aspose.Cells.Worksheet.IsSelected">
  11476. <summary>
  11477. Indicates whether this worksheet is selected when the workbook is opened.
  11478. </summary>
  11479. </member>
  11480. <member name="P:Aspose.Cells.Worksheet.ListObjects">
  11481. <summary>
  11482. Gets all ListObjects in this worksheet.
  11483. </summary>
  11484. </member>
  11485. <member name="P:Aspose.Cells.Worksheet.TabId">
  11486. <summary>
  11487. Specifies the internal identifier for the sheet.
  11488. </summary>
  11489. </member>
  11490. <member name="P:Aspose.Cells.Worksheet.HorizontalPageBreaks">
  11491. <summary>
  11492. Gets the <see cref="T:Aspose.Cells.HorizontalPageBreakCollection" /> collection.
  11493. </summary>
  11494. </member>
  11495. <member name="P:Aspose.Cells.Worksheet.VerticalPageBreaks">
  11496. <summary>
  11497. Gets the <see cref="T:Aspose.Cells.VerticalPageBreakCollection" /> collection.
  11498. </summary>
  11499. </member>
  11500. <member name="P:Aspose.Cells.Worksheet.Hyperlinks">
  11501. <summary>
  11502. Gets the <see cref="T:Aspose.Cells.HyperlinkCollection" /> collection.
  11503. </summary>
  11504. </member>
  11505. <member name="P:Aspose.Cells.Worksheet.PageSetup">
  11506. <summary>
  11507. Represents the page setup description in this sheet.
  11508. </summary>
  11509. </member>
  11510. <member name="P:Aspose.Cells.Worksheet.AutoFilter">
  11511. <summary>
  11512. Represents auto filter for the specified worksheet.
  11513. </summary>
  11514. </member>
  11515. <member name="P:Aspose.Cells.Worksheet.HasAutofilter">
  11516. <summary>
  11517. Indicates whether this worksheet has auto filter.
  11518. </summary>
  11519. </member>
  11520. <member name="P:Aspose.Cells.Worksheet.TransitionEvaluation">
  11521. <summary>
  11522. Indicates whether the Transition Formula Evaluation (Lotus compatibility) option is enabled.
  11523. </summary>
  11524. </member>
  11525. <member name="P:Aspose.Cells.Worksheet.TransitionEntry">
  11526. <summary>
  11527. Indicates whether the Transition Formula Entry (Lotus compatibility) option is enabled.
  11528. </summary>
  11529. </member>
  11530. <member name="P:Aspose.Cells.Worksheet.VisibilityType">
  11531. <summary>
  11532. Indicates the visible state for this sheet.
  11533. </summary>
  11534. </member>
  11535. <member name="P:Aspose.Cells.Worksheet.IsVisible">
  11536. <summary>
  11537. Represents if the worksheet is visible.
  11538. </summary>
  11539. </member>
  11540. <member name="P:Aspose.Cells.Worksheet.SparklineGroupCollection">
  11541. <summary>
  11542. Gets the sparkline group collection in the worksheet.
  11543. </summary>
  11544. </member>
  11545. <member name="P:Aspose.Cells.Worksheet.Charts">
  11546. <summary>
  11547. Gets a <see cref="T:Aspose.Cells.Charts.Chart" /> collection
  11548. </summary>
  11549. </member>
  11550. <member name="P:Aspose.Cells.Worksheet.Comments">
  11551. <summary>
  11552. Gets the <see cref="T:Aspose.Cells.Comment" /> collection.
  11553. </summary>
  11554. </member>
  11555. <member name="P:Aspose.Cells.Worksheet.Pictures">
  11556. <summary>
  11557. Gets a <see cref="T:Aspose.Cells.Drawing.Picture" /> collection.
  11558. </summary>
  11559. </member>
  11560. <member name="P:Aspose.Cells.Worksheet.TextBoxes">
  11561. <summary>
  11562. Gets a <see cref="T:Aspose.Cells.Drawing.TextBox" /> collection.
  11563. </summary>
  11564. </member>
  11565. <member name="P:Aspose.Cells.Worksheet.CheckBoxes">
  11566. <summary>
  11567. Gets a <see cref="T:Aspose.Cells.Drawing.CheckBox" /> collection.
  11568. </summary>
  11569. </member>
  11570. <member name="P:Aspose.Cells.Worksheet.OleObjects">
  11571. <summary>
  11572. Represents a collection of <see cref="T:Aspose.Cells.Drawing.OleObject" /> in a worksheet.
  11573. </summary>
  11574. </member>
  11575. <member name="P:Aspose.Cells.Worksheet.Shapes">
  11576. <summary>
  11577. Returns all drawing shapes in this worksheet.
  11578. </summary>
  11579. </member>
  11580. <member name="P:Aspose.Cells.Worksheet.Slicers">
  11581. <summary>
  11582. Get the Slicer collection in the worksheet
  11583. </summary>
  11584. </member>
  11585. <member name="P:Aspose.Cells.Worksheet.Index">
  11586. <summary>
  11587. Gets the index of sheet in the worksheet collection.
  11588. </summary>
  11589. </member>
  11590. <member name="P:Aspose.Cells.Worksheet.IsProtected">
  11591. <summary>
  11592. Indicates if the worksheet is protected.
  11593. </summary>
  11594. </member>
  11595. <member name="P:Aspose.Cells.Worksheet.Validations">
  11596. <summary>
  11597. Gets the data validation setting collection in the worksheet.
  11598. </summary>
  11599. </member>
  11600. <member name="P:Aspose.Cells.Worksheet.AllowEditRanges">
  11601. <summary>
  11602. Gets the allow edit range collection in the worksheet.
  11603. </summary>
  11604. </member>
  11605. <member name="P:Aspose.Cells.Worksheet.ErrorCheckOptions">
  11606. <summary>
  11607. Gets error check setting applied on certain ranges.
  11608. </summary>
  11609. </member>
  11610. <member name="P:Aspose.Cells.Worksheet.Outline">
  11611. <summary>
  11612. Gets the outline on this worksheet.
  11613. </summary>
  11614. </member>
  11615. <member name="P:Aspose.Cells.Worksheet.FirstVisibleRow">
  11616. <summary>
  11617. Represents first visible row index.
  11618. </summary>
  11619. </member>
  11620. <member name="P:Aspose.Cells.Worksheet.FirstVisibleColumn">
  11621. <summary>
  11622. Represents first visible column index.
  11623. </summary>
  11624. </member>
  11625. <member name="P:Aspose.Cells.Worksheet.Zoom">
  11626. <summary>
  11627. Represents the scaling factor in percentage. It should be between 10 and 400.
  11628. </summary>
  11629. <remarks>Please set the view type first.</remarks>
  11630. </member>
  11631. <member name="P:Aspose.Cells.Worksheet.ViewType">
  11632. <summary>
  11633. Gets and sets the view type.
  11634. </summary>
  11635. </member>
  11636. <member name="P:Aspose.Cells.Worksheet.IsPageBreakPreview">
  11637. <summary>
  11638. Indicates whether the specified worksheet is shown in normal view or page break preview.
  11639. </summary>
  11640. </member>
  11641. <member name="P:Aspose.Cells.Worksheet.IsRulerVisible">
  11642. <summary>
  11643. Indicates whether the ruler is visible. This property is only applied for page break preview.
  11644. </summary>
  11645. </member>
  11646. <member name="P:Aspose.Cells.Worksheet.TabColor">
  11647. <summary>
  11648. Represents worksheet tab color.
  11649. </summary>
  11650. <remarks>This feature is only supported in ExcelXP(Excel2002) and later versions.
  11651. If you save file as Excel97 or Excel2000 format, it will be omitted.</remarks>
  11652. </member>
  11653. <member name="P:Aspose.Cells.Worksheet.CodeName">
  11654. <summary>
  11655. Gets worksheet code name.
  11656. </summary>
  11657. </member>
  11658. <member name="P:Aspose.Cells.Worksheet.BackgroundImage">
  11659. <summary>
  11660. Gets and sets worksheet background image.
  11661. </summary>
  11662. </member>
  11663. <member name="P:Aspose.Cells.Worksheet.ConditionalFormattings">
  11664. <summary>
  11665. Gets the ConditionalFormattings in the worksheet.
  11666. </summary>
  11667. </member>
  11668. <member name="P:Aspose.Cells.Worksheet.ActiveCell">
  11669. <summary>
  11670. Gets or sets the active cell in the worksheet.
  11671. </summary>
  11672. </member>
  11673. <member name="P:Aspose.Cells.Worksheet.CustomProperties">
  11674. <summary>
  11675. Gets an object representing
  11676. the identifier information associated with a worksheet.
  11677. </summary>
  11678. <remarks>
  11679. Worksheet.CustomProperties provide a preferred mechanism for storing arbitrary data.
  11680. It supports legacy third-party document components, as well as those situations that have a stringent need for binary parts.
  11681. </remarks>
  11682. </member>
  11683. <member name="P:Aspose.Cells.Worksheet.SmartTagSetting">
  11684. <summary>
  11685. Gets all <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> objects of the worksheet.
  11686. </summary>
  11687. </member>
  11688. <member name="P:Aspose.Cells.Worksheet.Scenarios">
  11689. <summary>
  11690. Gets the collection of <see cref="T:Aspose.Cells.Scenario" />.
  11691. </summary>
  11692. </member>
  11693. <member name="P:Aspose.Cells.Worksheet.CellWatches">
  11694. <summary>
  11695. Gets collection of cells on this worksheet being watched in the 'watch window'.
  11696. </summary>
  11697. </member>
  11698. <member name="T:Aspose.Cells.Metered">
  11699. <summary>
  11700. Provides methods to set metered key.
  11701. </summary>
  11702. <example>
  11703. In this example, an attempt will be made to set metered public and private key
  11704. <code>
  11705. [C#]
  11706. Metered matered = new Metered();
  11707. matered.SetMeteredKey("PublicKey", "PrivateKey");
  11708. [Visual Basic]
  11709. Dim matered As Metered = New Metered
  11710. matered.SetMeteredKey("PublicKey", "PrivateKey")
  11711. </code></example>
  11712. </member>
  11713. <member name="M:Aspose.Cells.Metered.#ctor">
  11714. <summary>
  11715. Initializes a new instance of this class.
  11716. </summary>
  11717. </member>
  11718. <member name="M:Aspose.Cells.Metered.SetMeteredKey(System.String,System.String)">
  11719. <summary>
  11720. Sets metered public and private key
  11721. </summary>
  11722. <param name="publicKey">public key</param>
  11723. <param name="privateKey">private key</param>
  11724. </member>
  11725. <member name="M:Aspose.Cells.Metered.GetConsumptionQuantity">
  11726. <summary>
  11727. Gets consumption file size
  11728. </summary>
  11729. <returns>consumption quantity</returns>
  11730. </member>
  11731. <member name="M:Aspose.Cells.Metered.GetConsumptionCredit">
  11732. <summary>
  11733. Gets consumption credit
  11734. </summary>
  11735. <returns>consumption quantity</returns>
  11736. </member>
  11737. <member name="T:Aspose.Cells.PageSetup">
  11738. <summary>
  11739. Encapsulates the object that represents the page setup description.
  11740. The PageSetup object contains all page setup options.
  11741. </summary>
  11742. <example>
  11743. <code>
  11744. [C#]
  11745. sheet.PageSetup.PrintArea = "D1:K13";
  11746. sheet.PageSetup.PrintTitleRows = "$5:$7";
  11747. sheet.PageSetup.PrintTitleColumns = "$A:$B";
  11748. [Visual Basic]
  11749. sheet.PageSetup.PrintArea = "D1:K13"
  11750. sheet.PageSetup.PrintTitleRows = "$5:$7"
  11751. sheet.PageSetup.PrintTitleColumns = "$A:$B"
  11752. </code>
  11753. </example>
  11754. </member>
  11755. <member name="M:Aspose.Cells.PageSetup.Copy(Aspose.Cells.PageSetup,Aspose.Cells.CopyOptions)">
  11756. <summary>
  11757. Copies the setting of the page setup.
  11758. </summary>
  11759. <param name="source">The source.</param>
  11760. <param name="copyOptions">The copy options.</param>
  11761. </member>
  11762. <member name="M:Aspose.Cells.PageSetup.SetFitToPages(System.Int32,System.Int32)">
  11763. <summary>
  11764. Sets the number of pages the worksheet will be scaled to when it's printed.
  11765. </summary>
  11766. <param name="wide">Pages wide.</param>
  11767. <param name="tall">Pages tall.</param>
  11768. </member>
  11769. <member name="M:Aspose.Cells.PageSetup.CustomPaperSize(System.Double,System.Double)">
  11770. <summary>
  11771. Sets the custom paper size, in unit of inches.
  11772. </summary>
  11773. <param name="width">The width of the paper. </param>
  11774. <param name="height">The height of the paper.</param>
  11775. </member>
  11776. <member name="M:Aspose.Cells.PageSetup.ClearHeaderFooter">
  11777. <summary>
  11778. Clears header and footer setting.
  11779. </summary>
  11780. </member>
  11781. <member name="M:Aspose.Cells.PageSetup.GetHeader(System.Int32)">
  11782. <summary>
  11783. Gets a script formatting the header of an Excel file.
  11784. </summary>
  11785. <param name="section">
  11786. <p>0:Left Section.</p>
  11787. <p>1:Center Section</p>
  11788. <p>2:Right Section</p>
  11789. </param>
  11790. </member>
  11791. <member name="M:Aspose.Cells.PageSetup.GetCommands(System.String)">
  11792. <summary>
  11793. Gets all commands of header or footer.
  11794. </summary>
  11795. <param name="headerFooterScript">The header/footer script</param>
  11796. <returns>Returns all commands of header or footer.</returns>
  11797. </member>
  11798. <member name="M:Aspose.Cells.PageSetup.GetFooter(System.Int32)">
  11799. <summary>
  11800. Gets a script formatting the footer of an Excel file.
  11801. </summary>
  11802. <param name="section">
  11803. <p>0:Left Section.</p>
  11804. <p>1:Center Section</p>
  11805. <p>2:Right Section</p>
  11806. </param>
  11807. </member>
  11808. <member name="M:Aspose.Cells.PageSetup.SetHeader(System.Int32,System.String)">
  11809. <summary>
  11810. Sets a script formatting the header of an Excel file.
  11811. </summary>
  11812. <param name="section">
  11813. <p>0:Left Section.</p>
  11814. <p>1:Center Section</p>
  11815. <p>2:Right Section</p>
  11816. </param>
  11817. <param name="headerScript">Header format script.</param>
  11818. <remarks>
  11819. <p>Script commands:</p>
  11820. <table class="dtTABLE" cellspacing="0">
  11821. <tr>
  11822. <td width="25%">
  11823. <font color="gray">
  11824. <b>Command</b>
  11825. </font>¡¡</td>
  11826. <td width="75%">
  11827. <font color="gray">
  11828. <b>Description</b>
  11829. </font>¡¡</td>
  11830. </tr>
  11831. <tr>
  11832. <td width="25%">&amp;P</td>
  11833. <td width="75%">Current page number¡¡</td>
  11834. </tr>
  11835. <tr>
  11836. <td width="25%">&amp;N</td>
  11837. <td width="75%">Page count¡¡</td>
  11838. </tr>
  11839. <tr>
  11840. <td width="25%">&amp;D</td>
  11841. <td width="75%">Current date¡¡</td>
  11842. </tr>
  11843. <tr>
  11844. <td width="25%">&amp;T</td>
  11845. <td width="75%">Current time</td>
  11846. </tr>
  11847. <tr>
  11848. <td width="25%">&amp;A</td>
  11849. <td width="75%">Sheet name</td>
  11850. </tr>
  11851. <tr>
  11852. <td width="25%">&amp;F</td>
  11853. <td width="75%">File name without path</td>
  11854. </tr>
  11855. <tr>
  11856. <td width="25%">&amp;"&lt;FontName&gt;"</td>
  11857. <td width="75%">Font name, for example: &amp;"Arial"</td>
  11858. </tr>
  11859. <tr>
  11860. <td width="25%">&amp;"&lt;FontName&gt;, &lt;FontStyle&gt;"</td>
  11861. <td width="75%">Font name and font style, for example: &amp;"Arial,Bold"</td>
  11862. </tr>
  11863. <tr>
  11864. <td width="25%">&amp;&lt;FontSize&gt;</td>
  11865. <td width="75%">Font size. If this command is followed by a plain number to be printed in the header, it will be separated from the font height with a space character.</td>
  11866. </tr>
  11867. <tr>
  11868. <td width="25%">&amp;"&lt;K"</td>
  11869. <td width="75%">Font color, for example(RED): &amp;FF0000</td>
  11870. </tr>
  11871. <tr>
  11872. <td width="25%">&amp;G</td>
  11873. <td width="75%">Image script</td>
  11874. </tr>
  11875. </table>
  11876. For example: "&amp;Arial,Bold&amp;8Header Note"
  11877. </remarks>
  11878. </member>
  11879. <member name="M:Aspose.Cells.PageSetup.SetFooter(System.Int32,System.String)">
  11880. <summary>
  11881. Sets a script formatting the footer of an Excel file.
  11882. </summary>
  11883. <param name="section">
  11884. <p>0:Left Section.</p>
  11885. <p>1:Center Section</p>
  11886. <p>2:Right Section</p>
  11887. </param>dddd
  11888. <param name="footerScript">Footer format script.</param><remarks><p>Script commands:</p><table class="dtTABLE" cellspacing="0"><tr><td width="25%"><font color="gray"><b>Command</b></font>¡¡</td><td width="75%"><font color="gray"><b>Description</b></font>¡¡</td></tr><tr><td width="25%">&amp;P</td><td width="75%">Current page number¡¡</td></tr><tr><td width="25%">&amp;N</td><td width="75%">Page count¡¡</td></tr><tr><td width="25%">&amp;D</td><td width="75%">Current date¡¡</td></tr><tr><td width="25%">&amp;T</td><td width="75%">Current time</td></tr><tr><td width="25%">&amp;A</td><td width="75%">Sheet name</td></tr><tr><td width="25%">&amp;F</td><td width="75%">File name without path</td></tr><tr><td width="25%">&amp;"&lt;FontName&gt;"</td><td width="75%">Font name, for example: &amp;"Arial"</td></tr><tr><td width="25%">&amp;"&lt;FontName&gt;, &lt;FontStyle&gt;"</td><td width="75%">Font name and font style, for example: &amp;"Arial,Bold"</td></tr><tr><td width="25%">&amp;&lt;FontSize&gt;</td><td width="75%">Font size. If this command is followed by a plain number to be printed in the header, it will be separated from the font height with a space character.</td></tr><tr><td width="25%">&amp;G</td><td width="75%">Image script</td></tr></table>
  11889. For example: "&amp;Arial,Bold&amp;8Footer Note"
  11890. </remarks></member>
  11891. <member name="M:Aspose.Cells.PageSetup.SetEvenHeader(System.Int32,System.String)">
  11892. <summary>
  11893. Sets a script formatting the even page header of an Excel file.
  11894. Only effect in Excel 2007 when IsHFDiffOddEven is true.
  11895. </summary>
  11896. <param name="section">
  11897. <p>0:Left Section.</p>
  11898. <p>1:Center Section</p>
  11899. <p>2:Right Section</p>
  11900. </param>
  11901. <param name="headerScript">Header format script.</param>
  11902. </member>
  11903. <member name="M:Aspose.Cells.PageSetup.GetEvenHeader(System.Int32)">
  11904. <summary>
  11905. Gets a script formatting the even header of an Excel file.
  11906. </summary>
  11907. <param name="section">
  11908. <p>0:Left Section.</p>
  11909. <p>1:Center Section</p>
  11910. <p>2:Right Section</p>
  11911. </param>
  11912. </member>
  11913. <member name="M:Aspose.Cells.PageSetup.SetEvenFooter(System.Int32,System.String)">
  11914. <summary>
  11915. Sets a script formatting the even page footer of an Excel file.
  11916. Only effect in Excel 2007 when IsHFDiffOddEven is true.
  11917. </summary>
  11918. <param name="section">
  11919. <p>0:Left Section.</p>
  11920. <p>1:Center Section</p>
  11921. <p>2:Right Section</p>
  11922. </param>
  11923. <param name="footerScript">Footer format script.</param>
  11924. </member>
  11925. <member name="M:Aspose.Cells.PageSetup.GetEvenFooter(System.Int32)">
  11926. <summary>
  11927. Gets a script formatting the even footer of an Excel file.
  11928. </summary>
  11929. <param name="section">
  11930. <p>0:Left Section.</p>
  11931. <p>1:Center Section</p>
  11932. <p>2:Right Section</p>
  11933. </param>
  11934. </member>
  11935. <member name="M:Aspose.Cells.PageSetup.SetFirstPageHeader(System.Int32,System.String)">
  11936. <summary>
  11937. Sets a script formatting the first page header of an Excel file.
  11938. Only effect in Excel 2007 when IsHFDiffFirst is true.
  11939. </summary>
  11940. <param name="section">
  11941. <p>0:Left Section.</p>
  11942. <p>1:Center Section</p>
  11943. <p>2:Right Section</p>
  11944. </param>
  11945. <param name="headerScript">Header format script.</param>
  11946. </member>
  11947. <member name="M:Aspose.Cells.PageSetup.GetFirstPageHeader(System.Int32)">
  11948. <summary>
  11949. Gets a script formatting the first page header of an Excel file.
  11950. </summary>
  11951. <param name="section">
  11952. <p>0:Left Section.</p>
  11953. <p>1:Center Section</p>
  11954. <p>2:Right Section</p>
  11955. </param>
  11956. </member>
  11957. <member name="M:Aspose.Cells.PageSetup.SetFirstPageFooter(System.Int32,System.String)">
  11958. <summary>
  11959. Sets a script formatting the first page footer of an Excel file.
  11960. </summary>
  11961. <param name="section">
  11962. <p>0:Left Section.</p>
  11963. <p>1:Center Section</p>
  11964. <p>2:Right Section</p>
  11965. </param>
  11966. <param name="footerScript">Footer format script.</param>
  11967. </member>
  11968. <member name="M:Aspose.Cells.PageSetup.GetFirstPageFooter(System.Int32)">
  11969. <summary>
  11970. Gets a script formatting the first page footer of an Excel file.
  11971. </summary>
  11972. <param name="section">
  11973. <p>0:Left Section.</p>
  11974. <p>1:Center Section</p>
  11975. <p>2:Right Section</p>
  11976. </param>
  11977. </member>
  11978. <member name="M:Aspose.Cells.PageSetup.SetHeaderPicture(System.Int32,System.Byte[])">
  11979. <summary>
  11980. Sets an image in the header of a worksheet.
  11981. </summary>
  11982. <param name="section">
  11983. <p>0:Left Section.</p>
  11984. <p>1:Center Section</p>
  11985. <p>2:Right Section</p>
  11986. </param>
  11987. <param name="headerPicture">Image data.</param>
  11988. <returns>Returns <see cref="T:Aspose.Cells.Drawing.Picture" /> object.</returns>
  11989. </member>
  11990. <member name="M:Aspose.Cells.PageSetup.SetFooterPicture(System.Int32,System.Byte[])">
  11991. <summary>
  11992. Sets an image in the footer of a worksheet.
  11993. </summary>
  11994. <param name="section">
  11995. <p>0:Left Section.</p>
  11996. <p>1:Center Section</p>
  11997. <p>2:Right Section</p>
  11998. </param>
  11999. <param name="footerPicture">Image data.</param>
  12000. <returns>Returns <see cref="T:Aspose.Cells.Drawing.Picture" /> object.</returns>
  12001. </member>
  12002. <member name="M:Aspose.Cells.PageSetup.SetPicture(System.Boolean,System.Boolean,System.Boolean,System.Int32,System.Byte[])">
  12003. <summary>
  12004. Sets an image in the header/footer of a worksheet.
  12005. </summary>
  12006. <param name="isFirst">Indicates whether setting the picture of first page header/footer. </param>
  12007. <param name="isEven">Indicates whether setting the picture of even page header/footer.</param>
  12008. <param name="isHeader">Indicates whether setting the picture of header/footer.</param>
  12009. <param name="section">
  12010. <p>0:Left Section.</p>
  12011. <p>1:Center Section</p>
  12012. <p>2:Right Section</p>
  12013. </param>
  12014. <param name="imageData">Image data.</param>
  12015. <returns>Returns <see cref="T:Aspose.Cells.Drawing.Picture" /> object.</returns>
  12016. </member>
  12017. <member name="M:Aspose.Cells.PageSetup.GetPicture(System.Boolean,System.Int32)">
  12018. <summary>
  12019. Gets the <see cref="T:Aspose.Cells.Drawing.Picture" /> object of the header / footer.
  12020. </summary>
  12021. <param name="isHeader">Indicates whether it is in the header or footer.</param>
  12022. <param name="section">
  12023. <p>0:Left Section.</p>
  12024. <p>1:Center Section</p>
  12025. <p>2:Right Section</p>
  12026. </param>
  12027. <returns>Returns <see cref="T:Aspose.Cells.Drawing.Picture" /> object.
  12028. Returns null if there is no picture.</returns>
  12029. </member>
  12030. <member name="M:Aspose.Cells.PageSetup.GetPicture(System.Boolean,System.Boolean,System.Boolean,System.Int32)">
  12031. <summary>
  12032. Gets the <see cref="T:Aspose.Cells.Drawing.Picture" /> object of the header / footer.
  12033. </summary>
  12034. <param name="isFirst">Indicates whether getting the picture of first page header/footer. </param>
  12035. <param name="isEven">Indicates whether getting the picture of even page header/footer.</param>
  12036. <param name="isHeader">Indicates whether getting the picture of header/footer.</param>
  12037. <param name="section">
  12038. <p>0:Left Section.</p>
  12039. <p>1:Center Section</p>
  12040. <p>2:Right Section</p>
  12041. </param>
  12042. <returns>Returns <see cref="T:Aspose.Cells.Drawing.Picture" /> object.</returns>
  12043. </member>
  12044. <member name="P:Aspose.Cells.PageSetup.ODSPageBackground">
  12045. <summary>
  12046. Gets the background of ODS.
  12047. </summary>
  12048. </member>
  12049. <member name="P:Aspose.Cells.PageSetup.PrintArea">
  12050. <summary>
  12051. Represents the range to be printed.
  12052. </summary>
  12053. </member>
  12054. <member name="P:Aspose.Cells.PageSetup.PrintTitleColumns">
  12055. <summary>
  12056. Represents the columns that contain the cells to be repeated on the left side of each page.
  12057. </summary>
  12058. <example>
  12059. <code>
  12060. [C#]
  12061. cells.PageSetup.PrintTitleColumns = "$A:$A";
  12062. [Visula Basic]
  12063. cells.PageSetup.PrintTitleColumns = "$A:$A"
  12064. </code>
  12065. </example>
  12066. </member>
  12067. <member name="P:Aspose.Cells.PageSetup.PrintTitleRows">
  12068. <summary>
  12069. Represents the rows that contain the cells to be repeated at the top of each page.
  12070. </summary>
  12071. <example>
  12072. <code>
  12073. [C#]
  12074. cells.PageSetup.PrintTitleRows = "$1:$1";
  12075. [Visula Basic]
  12076. cells.PageSetup.PrintTitleRows = "$1:$1"
  12077. </code>
  12078. </example>
  12079. </member>
  12080. <member name="P:Aspose.Cells.PageSetup.BlackAndWhite">
  12081. <summary>
  12082. Represents if elements of the document will be printed in black and white.
  12083. </summary>
  12084. </member>
  12085. <member name="P:Aspose.Cells.PageSetup.CenterHorizontally">
  12086. <summary>
  12087. Represent if the sheet is printed centered horizontally.
  12088. </summary>
  12089. </member>
  12090. <member name="P:Aspose.Cells.PageSetup.CenterVertically">
  12091. <summary>
  12092. Represent if the sheet is printed centered vertically.
  12093. </summary>
  12094. </member>
  12095. <member name="P:Aspose.Cells.PageSetup.PrintDraft">
  12096. <summary>
  12097. Represents if the sheet will be printed without graphics.
  12098. </summary>
  12099. </member>
  12100. <member name="P:Aspose.Cells.PageSetup.FooterMargin">
  12101. <summary>
  12102. Represents the distance from the bottom of the page to the footer, in unit of centimeters.
  12103. </summary>
  12104. </member>
  12105. <member name="P:Aspose.Cells.PageSetup.FooterMarginInch">
  12106. <summary>
  12107. Represents the distance from the bottom of the page to the footer, in unit of inches.
  12108. </summary>
  12109. </member>
  12110. <member name="P:Aspose.Cells.PageSetup.HeaderMargin">
  12111. <summary>
  12112. Represents the distance from the top of the page to the header, in unit of centimeters.
  12113. </summary>
  12114. </member>
  12115. <member name="P:Aspose.Cells.PageSetup.HeaderMarginInch">
  12116. <summary>
  12117. Represents the distance from the top of the page to the header, in unit of inches.
  12118. </summary>
  12119. </member>
  12120. <member name="P:Aspose.Cells.PageSetup.PrinterSettings">
  12121. <summary>
  12122. Gets and sets the settings of the default printer.
  12123. </summary>
  12124. </member>
  12125. <member name="P:Aspose.Cells.PageSetup.LeftMargin">
  12126. <summary>
  12127. Represents the size of the left margin, in unit of centimeters.
  12128. </summary>
  12129. </member>
  12130. <member name="P:Aspose.Cells.PageSetup.LeftMarginInch">
  12131. <summary>
  12132. Represents the size of the left margin, in unit of inches.
  12133. </summary>
  12134. </member>
  12135. <member name="P:Aspose.Cells.PageSetup.RightMargin">
  12136. <summary>
  12137. Represents the size of the right margin, in unit of centimeters.
  12138. </summary>
  12139. </member>
  12140. <member name="P:Aspose.Cells.PageSetup.RightMarginInch">
  12141. <summary>
  12142. Represents the size of the right margin, in unit of inches.
  12143. </summary>
  12144. </member>
  12145. <member name="P:Aspose.Cells.PageSetup.TopMargin">
  12146. <summary>
  12147. Represents the size of the top margin, in unit of centimeters.
  12148. </summary>
  12149. </member>
  12150. <member name="P:Aspose.Cells.PageSetup.TopMarginInch">
  12151. <summary>
  12152. Represents the size of the top margin, in unit of inches.
  12153. </summary>
  12154. </member>
  12155. <member name="P:Aspose.Cells.PageSetup.BottomMargin">
  12156. <summary>
  12157. Represents the size of the bottom margin, in unit of centimeters.
  12158. </summary>
  12159. </member>
  12160. <member name="P:Aspose.Cells.PageSetup.BottomMarginInch">
  12161. <summary>
  12162. Represents the size of the bottom margin, in unit of inches.
  12163. </summary>
  12164. </member>
  12165. <member name="P:Aspose.Cells.PageSetup.FirstPageNumber">
  12166. <summary>
  12167. Represents the first page number that will be used when this sheet is printed.
  12168. </summary>
  12169. </member>
  12170. <member name="P:Aspose.Cells.PageSetup.FitToPagesTall">
  12171. <summary>
  12172. Represents the number of pages tall the worksheet will be scaled to when it's printed.
  12173. The default value is 1.
  12174. </summary>
  12175. <remarks>
  12176. You have to set FitToPagesWide as zero if you want to fit all rows on one page.
  12177. </remarks>
  12178. </member>
  12179. <member name="P:Aspose.Cells.PageSetup.FitToPagesWide">
  12180. <summary>
  12181. Represents the number of pages wide the worksheet will be scaled to when it's printed.
  12182. The default value is 1.
  12183. </summary>
  12184. <remarks>
  12185. You have to set FitToPagesTall as zero if you want to fit all columns on one page.
  12186. </remarks>
  12187. </member>
  12188. <member name="P:Aspose.Cells.PageSetup.IsPercentScale">
  12189. <summary>
  12190. If this property is False, the FitToPagesWide and FitToPagesTall properties control how the worksheet is scaled.
  12191. </summary>
  12192. </member>
  12193. <member name="P:Aspose.Cells.PageSetup.Order">
  12194. <summary>
  12195. Represents the order that Microsoft Excel uses to number pages when printing a large worksheet.
  12196. </summary>
  12197. </member>
  12198. <member name="P:Aspose.Cells.PageSetup.IsAutomaticPaperSize">
  12199. <summary>
  12200. Indicates whether the paper size is automatic.
  12201. </summary>
  12202. </member>
  12203. <member name="P:Aspose.Cells.PageSetup.PaperSize">
  12204. <summary>
  12205. Represents the size of the paper.
  12206. </summary>
  12207. </member>
  12208. <member name="P:Aspose.Cells.PageSetup.PaperWidth">
  12209. <summary>
  12210. Gets the width of the paper in unit of inches, considered page orientation.
  12211. </summary>
  12212. </member>
  12213. <member name="P:Aspose.Cells.PageSetup.PaperHeight">
  12214. <summary>
  12215. Gets the height of the paper in unit of inches , considered page orientation.
  12216. </summary>
  12217. </member>
  12218. <member name="P:Aspose.Cells.PageSetup.Orientation">
  12219. <summary>
  12220. Represents page print orientation.
  12221. </summary>
  12222. </member>
  12223. <member name="P:Aspose.Cells.PageSetup.PrintComments">
  12224. <summary>
  12225. Represents the way comments are printed with the sheet.
  12226. </summary>
  12227. </member>
  12228. <member name="P:Aspose.Cells.PageSetup.PrintErrors">
  12229. <summary>
  12230. Specifies the type of print error displayed.
  12231. </summary>
  12232. </member>
  12233. <member name="P:Aspose.Cells.PageSetup.PrintHeadings">
  12234. <summary>
  12235. Represents if row and column headings are printed with this page.
  12236. </summary>
  12237. </member>
  12238. <member name="P:Aspose.Cells.PageSetup.PrintGridlines">
  12239. <summary>
  12240. Represents if cell gridlines are printed on the page.
  12241. </summary>
  12242. </member>
  12243. <member name="P:Aspose.Cells.PageSetup.Zoom">
  12244. <summary>
  12245. Represents the scaling factor in percent. It should be between 10 and 400.
  12246. </summary>
  12247. </member>
  12248. <member name="P:Aspose.Cells.PageSetup.IsAutoFirstPageNumber">
  12249. <summary>
  12250. Indicates whether the first the page number is automatically assigned.
  12251. </summary>
  12252. </member>
  12253. <member name="P:Aspose.Cells.PageSetup.PrintQuality">
  12254. <summary>
  12255. Represents the print quality.
  12256. </summary>
  12257. </member>
  12258. <member name="P:Aspose.Cells.PageSetup.PrintCopies">
  12259. <summary>
  12260. Get and sets number of copies to print.
  12261. </summary>
  12262. </member>
  12263. <member name="P:Aspose.Cells.PageSetup.IsHFDiffOddEven">
  12264. <summary>
  12265. True means that the header/footer of the odd pages is different with odd pages.
  12266. </summary>
  12267. </member>
  12268. <member name="P:Aspose.Cells.PageSetup.IsHFDiffFirst">
  12269. <summary>
  12270. True means that the header/footer of the first page is different with other pages.
  12271. </summary>
  12272. </member>
  12273. <member name="P:Aspose.Cells.PageSetup.IsHFScaleWithDoc">
  12274. <summary>
  12275. Indicates whether header and footer are scaled with document scaling.
  12276. Only applies for Excel 2007.
  12277. </summary>
  12278. </member>
  12279. <member name="P:Aspose.Cells.PageSetup.IsHFAlignMargins">
  12280. <summary>
  12281. Indicates whether header and footer margins are aligned with the page margins.
  12282. If this property is true, the left header and footer will be aligned with the left margin,
  12283. and the right header and footer will be aligned with the right margin.
  12284. This option is enabled by default.
  12285. </summary>
  12286. </member>
  12287. <member name="T:Aspose.Cells.Drawing.Texts.TextOptions">
  12288. <summary>
  12289. Represents the text options.
  12290. </summary>
  12291. </member>
  12292. <member name="T:Aspose.Cells.Font">
  12293. <summary>
  12294. Encapsulates the font object used in a spreadsheet.
  12295. </summary>
  12296. <example>
  12297. <code>
  12298. [C#]
  12299. //Instantiating a Workbook object
  12300. Workbook workbook = new Workbook();
  12301. //Obtaining the reference of the newly added worksheet by passing its sheet index
  12302. Worksheet worksheet = workbook.Worksheets[0];
  12303. //Accessing the "A1" cell from the worksheet
  12304. Aspose.Cells.Cell cell = worksheet.Cells["A1"];
  12305. //Adding some value to the "A1" cell
  12306. cell.PutValue("Hello Aspose!");
  12307. Aspose.Cells.Font font = cell.Style.Font;
  12308. //Setting the font name to "Times New Roman"
  12309. font.Name = "Times New Roman";
  12310. //Setting font size to 14
  12311. font.Size = 14;
  12312. //setting font color as Red
  12313. font.Color = System.Drawing.Color.Red;
  12314. //Saving the Excel file
  12315. workbook.Save(@"d:\dest.xls");
  12316. [VB.NET]
  12317. 'Instantiating a Workbook object
  12318. Dim workbook As New Workbook()
  12319. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  12320. Dim worksheet As Worksheet = workbook.Worksheets(0)
  12321. 'Accessing the "A1" cell from the worksheet
  12322. Dim cell As Aspose.Cells.Cell = worksheet.Cells("A1")
  12323. 'Adding some value to the "A1" cell
  12324. cell.PutValue("Hello Aspose!")
  12325. Dim font As Aspose.Cells.Font = cell.Style.Font
  12326. 'Setting the font name to "Times New Roman"
  12327. font.Name = "Times New Roman"
  12328. 'Setting font size to 14
  12329. font.Size = 14
  12330. 'setting font color as Red
  12331. font.Color = System.Drawing.Color.Red
  12332. 'Saving the Excel file
  12333. workbook.Save("d:\dest.xls")
  12334. </code>
  12335. </example>
  12336. </member>
  12337. <member name="M:Aspose.Cells.Font.Equals(Aspose.Cells.Font)">
  12338. <summary>
  12339. Checks if two fonts are equals.
  12340. </summary>
  12341. <param name="font">Compared font object.</param>
  12342. <returns>True if equal to the compared font object.</returns>
  12343. </member>
  12344. <member name="M:Aspose.Cells.Font.ToString">
  12345. <summary>
  12346. Returns a string represents the current Cell object.
  12347. </summary>
  12348. <returns>
  12349. </returns>
  12350. </member>
  12351. <member name="P:Aspose.Cells.Font.Charset">
  12352. <summary>
  12353. Represent the character set.
  12354. </summary>
  12355. </member>
  12356. <member name="P:Aspose.Cells.Font.IsItalic">
  12357. <summary>
  12358. Gets or sets a value indicating whether the font is italic.
  12359. </summary>
  12360. </member>
  12361. <member name="P:Aspose.Cells.Font.IsBold">
  12362. <summary>
  12363. Gets or sets a value indicating whether the font is bold.
  12364. </summary>
  12365. </member>
  12366. <member name="P:Aspose.Cells.Font.CapsType">
  12367. <summary>
  12368. Gets and sets the text caps type.
  12369. </summary>
  12370. </member>
  12371. <member name="P:Aspose.Cells.Font.StrikeType">
  12372. <summary>
  12373. Gets the strike type of the text.
  12374. </summary>
  12375. </member>
  12376. <member name="P:Aspose.Cells.Font.IsStrikeout">
  12377. <summary>
  12378. Gets or sets a value indicating whether the font is single strikeout.
  12379. </summary>
  12380. </member>
  12381. <member name="P:Aspose.Cells.Font.ScriptOffset">
  12382. <summary>
  12383. Gets and sets the script offset,in unit of percentage
  12384. </summary>
  12385. </member>
  12386. <member name="P:Aspose.Cells.Font.IsSuperscript">
  12387. <summary>
  12388. Gets or sets a value indicating whether the font is super script.
  12389. </summary>
  12390. </member>
  12391. <member name="P:Aspose.Cells.Font.IsSubscript">
  12392. <summary>
  12393. Gets or sets a value indicating whether the font is subscript.
  12394. </summary>
  12395. </member>
  12396. <member name="P:Aspose.Cells.Font.Underline">
  12397. <summary>
  12398. Gets or sets the font underline type.
  12399. </summary>
  12400. </member>
  12401. <member name="P:Aspose.Cells.Font.Name">
  12402. <summary>
  12403. Gets or sets the name of the <see cref="T:Aspose.Cells.Font" />.
  12404. </summary>
  12405. <example>
  12406. <code>
  12407. [C#]
  12408. Style style;
  12409. ..........
  12410. Font font = style.Font;
  12411. font.Name = "Times New Roman";
  12412. [Visual Basic]
  12413. Dim style As Style
  12414. ..........
  12415. Dim font As Font = style.Font
  12416. font.Name = "Times New Roman"
  12417. </code>
  12418. </example>
  12419. </member>
  12420. <member name="P:Aspose.Cells.Font.DoubleSize">
  12421. <summary>
  12422. Gets and sets the double size of the font.
  12423. </summary>
  12424. </member>
  12425. <member name="P:Aspose.Cells.Font.Size">
  12426. <summary>
  12427. Gets or sets the size of the font.
  12428. </summary>
  12429. </member>
  12430. <member name="P:Aspose.Cells.Font.ThemeColor">
  12431. <summary>
  12432. Gets and sets the theme color.
  12433. </summary>
  12434. <remarks>
  12435. If the font color is not a theme color, NULL will be returned.
  12436. </remarks>
  12437. </member>
  12438. <member name="P:Aspose.Cells.Font.Color">
  12439. <summary>
  12440. Gets or sets the <see cref="T:System.Drawing.Color" /> of the font.
  12441. </summary>
  12442. </member>
  12443. <member name="P:Aspose.Cells.Font.ArgbColor">
  12444. <summary>
  12445. Gets and sets the color with a 32-bit ARGB value.
  12446. </summary>
  12447. </member>
  12448. <member name="P:Aspose.Cells.Font.IsNormalizeHeights">
  12449. <summary>
  12450. Indicates whether the normalization of height that is to be applied to the text run.
  12451. </summary>
  12452. </member>
  12453. <member name="P:Aspose.Cells.Font.SchemeType">
  12454. <summary>
  12455. Gets and sets the scheme type of the font.
  12456. </summary>
  12457. </member>
  12458. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Name">
  12459. <summary>
  12460. Gets and sets the name of the shape.
  12461. </summary>
  12462. </member>
  12463. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.LatinName">
  12464. <summary>
  12465. Gets and sets the latin name.
  12466. </summary>
  12467. </member>
  12468. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.FarEastName">
  12469. <summary>
  12470. Gets and sets the FarEast name.
  12471. </summary>
  12472. </member>
  12473. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Fill">
  12474. <summary>
  12475. Represents the fill format of the text.
  12476. </summary>
  12477. </member>
  12478. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Outline">
  12479. <summary>
  12480. Represents the outline format of the text.
  12481. </summary>
  12482. </member>
  12483. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Shadow">
  12484. <summary>
  12485. Represents a <seealso cref="T:Aspose.Cells.Drawing.ShadowEffect" /> object that specifies shadow effect for the chart element or shape.
  12486. </summary>
  12487. </member>
  12488. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.UnderlineColor">
  12489. <summary>
  12490. Gets or sets the color of underline.
  12491. </summary>
  12492. </member>
  12493. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Kerning">
  12494. <summary>
  12495. Specifies the minimum font size at which character kerning will occur for this text run.
  12496. </summary>
  12497. </member>
  12498. <member name="P:Aspose.Cells.Drawing.Texts.TextOptions.Spacing">
  12499. <summary>
  12500. Specifies the spacing between characters within a text run.
  12501. </summary>
  12502. </member>
  12503. <member name="T:Aspose.Cells.Pivot.PivotField">
  12504. <summary>
  12505. Represents a field in a PivotTable report.
  12506. </summary>
  12507. </member>
  12508. <member name="M:Aspose.Cells.Pivot.PivotField.GetPivotFilterByType(Aspose.Cells.Pivot.PivotFilterType)">
  12509. <summary>
  12510. Gets the pivot filter of the pivot field by type
  12511. </summary>
  12512. </member>
  12513. <member name="M:Aspose.Cells.Pivot.PivotField.GetPivotFilters">
  12514. <summary>
  12515. Gets the pivot filters of the pivot field
  12516. </summary>
  12517. </member>
  12518. <member name="M:Aspose.Cells.Pivot.PivotField.InitPivotItems">
  12519. <summary>
  12520. Init the pivot items of the pivot field
  12521. </summary>
  12522. </member>
  12523. <member name="M:Aspose.Cells.Pivot.PivotField.GetCalculatedFieldFormula">
  12524. <summary>
  12525. Get the formula string of the specified calculated field .
  12526. </summary>
  12527. </member>
  12528. <member name="M:Aspose.Cells.Pivot.PivotField.SetSubtotals(Aspose.Cells.Pivot.PivotFieldSubtotalType,System.Boolean)">
  12529. <summary>
  12530. Sets whether the specified field shows that subtotals.
  12531. </summary>
  12532. <param name="subtotalType">subtotals type.</param>
  12533. <param name="shown">whether the specified field shows that subtotals.</param>
  12534. <see cref="T:Aspose.Cells.Pivot.PivotFieldSubtotalType" />
  12535. </member>
  12536. <member name="M:Aspose.Cells.Pivot.PivotField.GetSubtotals(Aspose.Cells.Pivot.PivotFieldSubtotalType)">
  12537. <summary>
  12538. Gets whether the specified field shows that subtotals.
  12539. </summary>
  12540. <param name="subtotalType">subtotals type.</param>
  12541. <returns>whether the specified field shows that subtotals.</returns>
  12542. </member>
  12543. <member name="M:Aspose.Cells.Pivot.PivotField.IsHiddenItem(System.Int32)">
  12544. <summary>
  12545. Indicates whether the specific PivotItem is hidden.
  12546. </summary>
  12547. <param name="index">the index of the pivotItem in the pivotField.</param>
  12548. <returns>whether the specific PivotItem is hidden</returns>
  12549. </member>
  12550. <member name="M:Aspose.Cells.Pivot.PivotField.HideItem(System.Int32,System.Boolean)">
  12551. <summary>
  12552. Sets whether the specific PivotItem in a data field is hidden.
  12553. </summary>
  12554. <param name="index">the index of the pivotItem in the pivotField.</param>
  12555. <param name="isHidden">whether the specific PivotItem is hidden</param>
  12556. </member>
  12557. <member name="M:Aspose.Cells.Pivot.PivotField.IsHiddenItemDetail(System.Int32)">
  12558. <summary>
  12559. Indicates whether the specific PivotItem is hidden detail.
  12560. </summary>
  12561. <param name="index">the index of the pivotItem in the pivotField.</param>
  12562. <returns>whether the specific PivotItem is hidden detail</returns>
  12563. </member>
  12564. <member name="M:Aspose.Cells.Pivot.PivotField.HideItemDetail(System.Int32,System.Boolean)">
  12565. <summary>
  12566. Sets whether the specific PivotItem in a pivot field is hidden detail.
  12567. </summary>
  12568. <param name="index">the index of the pivotItem in the pivotField.</param>
  12569. <param name="isHiddenDetail">whether the specific PivotItem is hidden</param>
  12570. </member>
  12571. <member name="M:Aspose.Cells.Pivot.PivotField.HideDetail(System.Boolean)">
  12572. <summary>
  12573. Sets whether the PivotItems in a pivot field is hidden detail.That is collapse/expand this field.
  12574. </summary>
  12575. <param name="isHiddenDetail">whether the PivotItems is hidden</param>
  12576. </member>
  12577. <member name="M:Aspose.Cells.Pivot.PivotField.HideItem(System.String,System.Boolean)">
  12578. <summary>
  12579. Sets whether the specific PivotItem in a data field is hidden.
  12580. </summary>
  12581. <param name="itemValue">the value of the pivotItem in the pivotField.</param>
  12582. <param name="isHidden">whether the specific PivotItem is hidden</param>
  12583. </member>
  12584. <member name="M:Aspose.Cells.Pivot.PivotField.AddCalculatedItem(System.String,System.String)">
  12585. <summary>
  12586. Add a calculated item to the pivot field.
  12587. </summary>
  12588. <param name="name">The item's name.</param>
  12589. <param name="formula">The item's formula</param>
  12590. <remarks>
  12591. Only supports to add calculated item to Row/Column field.
  12592. </remarks>
  12593. </member>
  12594. <member name="P:Aspose.Cells.Pivot.PivotField.PivotItems">
  12595. <summary>
  12596. Gets the pivot items of the pivot field
  12597. </summary>
  12598. </member>
  12599. <member name="P:Aspose.Cells.Pivot.PivotField.Range">
  12600. <summary>
  12601. Gets the group range of the pivot field
  12602. </summary>
  12603. </member>
  12604. <member name="P:Aspose.Cells.Pivot.PivotField.IsCalculatedField">
  12605. <summary>
  12606. Indicates whether the specified PivotTable field is calculated field.
  12607. </summary>
  12608. </member>
  12609. <member name="P:Aspose.Cells.Pivot.PivotField.BaseIndex">
  12610. <summary>
  12611. Represents the PivotField index in the base PivotFields.
  12612. </summary>
  12613. </member>
  12614. <member name="P:Aspose.Cells.Pivot.PivotField.Position">
  12615. <summary>
  12616. Represents the PivotField index in the PivotFields.
  12617. </summary>
  12618. </member>
  12619. <member name="P:Aspose.Cells.Pivot.PivotField.Name">
  12620. <summary>
  12621. Represents the PivotField name.
  12622. </summary>
  12623. </member>
  12624. <member name="P:Aspose.Cells.Pivot.PivotField.DisplayName">
  12625. <summary>
  12626. Represents the PivotField display name.
  12627. </summary>
  12628. </member>
  12629. <member name="P:Aspose.Cells.Pivot.PivotField.IsAutoSubtotals">
  12630. <summary>
  12631. Indicates whether the specified field shows automatic subtotals. Default is true.
  12632. </summary>
  12633. </member>
  12634. <member name="P:Aspose.Cells.Pivot.PivotField.DragToColumn">
  12635. <summary>
  12636. Indicates whether the specified field can be dragged to the column position.
  12637. The default value is true.
  12638. </summary>
  12639. </member>
  12640. <member name="P:Aspose.Cells.Pivot.PivotField.DragToHide">
  12641. <summary>
  12642. Indicates whether the specified field can be dragged to the hide position.
  12643. The default value is true.
  12644. </summary>
  12645. </member>
  12646. <member name="P:Aspose.Cells.Pivot.PivotField.DragToRow">
  12647. <summary>
  12648. Indicates whether the specified field can be dragged to the row position.
  12649. The default value is true.
  12650. </summary>
  12651. </member>
  12652. <member name="P:Aspose.Cells.Pivot.PivotField.DragToPage">
  12653. <summary>
  12654. Indicates whether the specified field can be dragged to the page position.
  12655. The default value is true.
  12656. </summary>
  12657. </member>
  12658. <member name="P:Aspose.Cells.Pivot.PivotField.DragToData">
  12659. <summary>
  12660. Indicates whether the specified field can be dragged to the data position.
  12661. The default value is true.
  12662. </summary>
  12663. </member>
  12664. <member name="P:Aspose.Cells.Pivot.PivotField.IsMultipleItemSelectionAllowed">
  12665. <summary>
  12666. indicates whether the field can have multiple items
  12667. selected in the page field
  12668. The default value is false.
  12669. </summary>
  12670. </member>
  12671. <member name="P:Aspose.Cells.Pivot.PivotField.IsRepeatItemLabels">
  12672. <summary>
  12673. indicates whether the field can repeat items labels
  12674. The default value is false.
  12675. </summary>
  12676. </member>
  12677. <member name="P:Aspose.Cells.Pivot.PivotField.IsIncludeNewItemsInFilter">
  12678. <summary>
  12679. indicates whether the field can include new items in manual filter
  12680. The default value is false.
  12681. </summary>
  12682. </member>
  12683. <member name="P:Aspose.Cells.Pivot.PivotField.IsInsertPageBreaksBetweenItems">
  12684. <summary>
  12685. indicates whether the field can insert page breaks between items
  12686. insert page break after each item
  12687. The default value is false.
  12688. </summary>
  12689. </member>
  12690. <member name="P:Aspose.Cells.Pivot.PivotField.ShowAllItems">
  12691. <summary>
  12692. Indicates whether all items in the PivotTable report are displayed,
  12693. even if they don't contain summary data.
  12694. show items with no data
  12695. The default value is false.
  12696. </summary>
  12697. </member>
  12698. <member name="P:Aspose.Cells.Pivot.PivotField.IsAutoSort">
  12699. <summary>
  12700. Indicates whether the specified PivotTable field is automatically sorted.
  12701. </summary>
  12702. </member>
  12703. <member name="P:Aspose.Cells.Pivot.PivotField.IsAscendSort">
  12704. <summary>
  12705. Indicates whether the specified PivotTable field is autosorted ascending.
  12706. </summary>
  12707. </member>
  12708. <member name="P:Aspose.Cells.Pivot.PivotField.AutoSortField">
  12709. <summary>
  12710. Represents auto sort field index.
  12711. -1 means PivotField itself,others means the position of the data fields.
  12712. </summary>
  12713. </member>
  12714. <member name="P:Aspose.Cells.Pivot.PivotField.IsAutoShow">
  12715. <summary>
  12716. Indicates whether the specified PivotTable field is automatically shown,only valid for excel 2003.
  12717. </summary>
  12718. </member>
  12719. <member name="P:Aspose.Cells.Pivot.PivotField.IsAscendShow">
  12720. <summary>
  12721. Indicates whether the specified PivotTable field is autoshown ascending.
  12722. </summary>
  12723. </member>
  12724. <member name="P:Aspose.Cells.Pivot.PivotField.AutoShowCount">
  12725. <summary>
  12726. Represent the number of top or bottom items
  12727. that are automatically shown in the specified PivotTable field.
  12728. </summary>
  12729. </member>
  12730. <member name="P:Aspose.Cells.Pivot.PivotField.AutoShowField">
  12731. <summary>
  12732. Represents auto show field index. -1 means PivotField itself.
  12733. It should be the index of the data fields.
  12734. </summary>
  12735. </member>
  12736. <member name="P:Aspose.Cells.Pivot.PivotField.Function">
  12737. <summary>
  12738. Represents the function used to summarize the PivotTable data field.
  12739. </summary>
  12740. </member>
  12741. <member name="P:Aspose.Cells.Pivot.PivotField.DataDisplayFormat">
  12742. <summary>
  12743. Represents how to display the values contained in a data field.
  12744. </summary>
  12745. <see cref="T:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat" />
  12746. </member>
  12747. <member name="P:Aspose.Cells.Pivot.PivotField.BaseFieldIndex">
  12748. <summary>
  12749. Represents the base field for a custom calculation.
  12750. </summary>
  12751. </member>
  12752. <member name="P:Aspose.Cells.Pivot.PivotField.BaseItemPosition">
  12753. <summary>
  12754. Represents the item in the base field for a custom calculation.
  12755. Valid only for data fields.
  12756. Because PivotItemPosition.Custom is only for read,if you need to set PivotItemPosition.Custom,
  12757. please set PivotField.BaseItemIndex attribute.
  12758. </summary>
  12759. <see cref="T:Aspose.Cells.Pivot.PivotItemPosition" />
  12760. </member>
  12761. <member name="P:Aspose.Cells.Pivot.PivotField.BaseItemIndex">
  12762. <summary>
  12763. Represents the item in the base field for a custom calculation.
  12764. Valid only for data fields.
  12765. </summary>
  12766. </member>
  12767. <member name="P:Aspose.Cells.Pivot.PivotField.CurrentPageItem">
  12768. <summary>
  12769. Represents the current page item showing for the page field (valid only for page fields).
  12770. </summary>
  12771. </member>
  12772. <member name="P:Aspose.Cells.Pivot.PivotField.Number">
  12773. <summary>
  12774. Represents the built-in display format of numbers and dates.
  12775. </summary>
  12776. </member>
  12777. <member name="P:Aspose.Cells.Pivot.PivotField.InsertBlankRow">
  12778. <summary>
  12779. Indicates whether inserting blank line after each item.
  12780. </summary>
  12781. </member>
  12782. <member name="P:Aspose.Cells.Pivot.PivotField.ShowSubtotalAtTop">
  12783. <summary>
  12784. when ShowInOutlineForm is true, then display subtotals at the top of the list of items instead of at the bottom
  12785. </summary>
  12786. </member>
  12787. <member name="P:Aspose.Cells.Pivot.PivotField.ShowInOutlineForm">
  12788. <summary>
  12789. Indicates whether layout this field in outline form on the Pivot Table view
  12790. </summary>
  12791. </member>
  12792. <member name="P:Aspose.Cells.Pivot.PivotField.NumberFormat">
  12793. <summary>
  12794. Represents the custom display format of numbers and dates.
  12795. </summary>
  12796. </member>
  12797. <member name="P:Aspose.Cells.Pivot.PivotField.Items">
  12798. <summary>
  12799. Get all base items;
  12800. </summary>
  12801. </member>
  12802. <member name="P:Aspose.Cells.Pivot.PivotField.OriginalItems">
  12803. <summary>
  12804. Get the original base items;
  12805. </summary>
  12806. </member>
  12807. <member name="P:Aspose.Cells.Pivot.PivotField.ItemCount">
  12808. <summary>
  12809. Gets the base item count of this pivot field.
  12810. </summary>
  12811. </member>
  12812. <member name="P:Aspose.Cells.Pivot.PivotField.ShowCompact">
  12813. <summary>
  12814. </summary>
  12815. </member>
  12816. <member name="T:Aspose.Cells.Pivot.PivotTable">
  12817. <summary>
  12818. Summary description for PivotTable.
  12819. </summary>
  12820. </member>
  12821. <member name="M:Aspose.Cells.Pivot.PivotTable.Dispose">
  12822. <summary>
  12823. Performs application-defined tasks associated with freeing, releasing, or
  12824. resetting unmanaged resources.
  12825. </summary>
  12826. </member>
  12827. <member name="M:Aspose.Cells.Pivot.PivotTable.CopyStyle(Aspose.Cells.Pivot.PivotTable)">
  12828. <summary>
  12829. Copies named style from another pivot table.
  12830. </summary>
  12831. <param name="pivotTable">Source pivot table.</param>
  12832. </member>
  12833. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowReportFilterPage(Aspose.Cells.Pivot.PivotField)">
  12834. <summary>
  12835. Show all the report filter pages according to PivotField, the PivotField must be located in the PageFields.
  12836. </summary>
  12837. <param name="pageField">The PivotField object</param>
  12838. </member>
  12839. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowReportFilterPageByName(System.String)">
  12840. <summary>
  12841. Show all the report filter pages according to PivotField's name, the PivotField must be located in the PageFields.
  12842. </summary>
  12843. <param name="fieldName">The name of PivotField</param>
  12844. </member>
  12845. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowReportFilterPageByIndex(System.Int32)">
  12846. <summary>
  12847. Show all the report filter pages according to the position index in the PageFields
  12848. </summary>
  12849. <param name="posIndex">The position index in the PageFields</param>
  12850. </member>
  12851. <member name="M:Aspose.Cells.Pivot.PivotTable.RemoveField(Aspose.Cells.Pivot.PivotFieldType,System.String)">
  12852. <summary>
  12853. Removes a field from specific field area
  12854. </summary>
  12855. <param name="fieldType">The fields area type.</param>
  12856. <param name="fieldName">The name in the base fields.</param>
  12857. <see cref="M:Aspose.Cells.Pivot.PivotTable.RemoveField(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)" />
  12858. </member>
  12859. <member name="M:Aspose.Cells.Pivot.PivotTable.RemoveField(Aspose.Cells.Pivot.PivotFieldType,System.Int32)">
  12860. <summary>
  12861. Removes a field from specific field area
  12862. </summary>
  12863. <param name="fieldType">The fields area type.</param>
  12864. <param name="baseFieldIndex">The field index in the base fields.</param>
  12865. <see cref="M:Aspose.Cells.Pivot.PivotTable.RemoveField(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)" />
  12866. </member>
  12867. <member name="M:Aspose.Cells.Pivot.PivotTable.RemoveField(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)">
  12868. <summary>
  12869. Remove field from specific field area
  12870. </summary>
  12871. <param name="fieldType">the fields area type.It could be one of the following
  12872. values: <table border="1"><tr><td>PivotFieldType.Row</td></tr><tr><td>PivotFieldType.Column</td></tr><tr><td>PivotFieldType.Data</td></tr><tr><td>PivotFieldType.Page</td></tr></table></param>
  12873. <param name="pivotField">the field in the base fields.</param>
  12874. </member>
  12875. <member name="M:Aspose.Cells.Pivot.PivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType,System.String)">
  12876. <summary>
  12877. Adds the field to the specific area.
  12878. </summary>
  12879. <param name="fieldType">The fields area type.</param>
  12880. <param name="fieldName">The name in the base fields.</param>
  12881. <returns>The field position in the specific fields.If there is no field named as it, return -1.</returns>
  12882. <see cref="M:Aspose.Cells.Pivot.PivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)" />
  12883. </member>
  12884. <member name="M:Aspose.Cells.Pivot.PivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType,System.Int32)">
  12885. <summary>
  12886. Adds the field to the specific area.
  12887. </summary>
  12888. <param name="fieldType">The fields area type.</param>
  12889. <param name="baseFieldIndex">The field index in the base fields.</param>
  12890. <returns>The field position in the specific fields.</returns>
  12891. <see cref="M:Aspose.Cells.Pivot.PivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)" />
  12892. </member>
  12893. <member name="M:Aspose.Cells.Pivot.PivotTable.AddFieldToArea(Aspose.Cells.Pivot.PivotFieldType,Aspose.Cells.Pivot.PivotField)">
  12894. <summary>
  12895. Adds the field to the specific area.
  12896. </summary>
  12897. <param name="fieldType">the fields area type.It could be one of the following
  12898. values: <table border="1"><tr><td>PivotFieldType.Row</td></tr><tr><td>PivotFieldType.Column</td></tr><tr><td>PivotFieldType.Data</td></tr><tr><td>PivotFieldType.Page</td></tr></table></param>
  12899. <param name="pivotField">the field in the base fields.</param>
  12900. <returns>the field position in the specific fields.</returns>
  12901. </member>
  12902. <member name="M:Aspose.Cells.Pivot.PivotTable.AddCalculatedField(System.String,System.String,System.Boolean)">
  12903. <summary>
  12904. Adds a calculated field to pivot field.
  12905. </summary>
  12906. <param name="name">The name of the calculated field</param>
  12907. <param name="formula">The formula of the calculated field.</param>
  12908. <param name="dragToDataArea">True,drag this field to data area immediately</param>
  12909. </member>
  12910. <member name="M:Aspose.Cells.Pivot.PivotTable.AddCalculatedField(System.String,System.String)">
  12911. <summary>
  12912. Adds a calculated field to pivot field and drag it to data area.
  12913. </summary>
  12914. <param name="name">The name of the calculated field</param>
  12915. <param name="formula">The formula of the calculated field.</param>
  12916. </member>
  12917. <member name="M:Aspose.Cells.Pivot.PivotTable.Fields(Aspose.Cells.Pivot.PivotFieldType)">
  12918. <summary>
  12919. Gets the specific fields by the field type.
  12920. </summary>
  12921. <param name="fieldType">the field type.</param>
  12922. <returns>the specific fields</returns>
  12923. </member>
  12924. <member name="M:Aspose.Cells.Pivot.PivotTable.Move(System.Int32,System.Int32)">
  12925. <summary>
  12926. Moves the PivotTable to a different location in the worksheet.
  12927. </summary>
  12928. <param name="row">row index.</param>
  12929. <param name="column">column index.</param>
  12930. </member>
  12931. <member name="M:Aspose.Cells.Pivot.PivotTable.Move(System.String)">
  12932. <summary>
  12933. Moves the PivotTable to a different location in the worksheet.
  12934. </summary>
  12935. <param name="destCellName">the dest cell name.</param>
  12936. </member>
  12937. <member name="M:Aspose.Cells.Pivot.PivotTable.ChangeDataSource(System.String[])">
  12938. <summary>
  12939. Set pivottable's source data.
  12940. Sheet1!$A$1:$C$3
  12941. </summary>
  12942. </member>
  12943. <member name="M:Aspose.Cells.Pivot.PivotTable.GetSource">
  12944. <summary>
  12945. Get pivottable's source data.
  12946. </summary>
  12947. </member>
  12948. <member name="M:Aspose.Cells.Pivot.PivotTable.RefreshData">
  12949. <summary>
  12950. Refreshes pivottable's data and setting from it's data source.
  12951. </summary>
  12952. <remarks>
  12953. We will gather data from data source to a pivot cache ,then calculate the data in the cache to the cells.
  12954. This method is only used to gather all data to a pivot cache.
  12955. </remarks>
  12956. </member>
  12957. <member name="M:Aspose.Cells.Pivot.PivotTable.CalculateData">
  12958. <summary>
  12959. Calculates pivottable's data to cells.
  12960. </summary>
  12961. <remarks>
  12962. Cell.Value in the pivot range could not return the correct result if the method is not been called.
  12963. This method calculates data with an inner pivot cache,not original data source.
  12964. So if the data source is changed, please call RefreshData() method first.
  12965. </remarks>
  12966. </member>
  12967. <member name="M:Aspose.Cells.Pivot.PivotTable.ClearData">
  12968. <summary>
  12969. Clear PivotTable's data and formatting
  12970. </summary>
  12971. <remarks>
  12972. If this method is not called before you add or delete PivotField, Maybe the PivotTable data is not corrected
  12973. </remarks>
  12974. </member>
  12975. <member name="M:Aspose.Cells.Pivot.PivotTable.CalculateRange">
  12976. <summary>
  12977. Calculates pivottable's range.
  12978. </summary>
  12979. <remarks>
  12980. If this method is not been called,maybe the pivottable range is not corrected.
  12981. </remarks>
  12982. </member>
  12983. <member name="M:Aspose.Cells.Pivot.PivotTable.FormatAll(Aspose.Cells.Style)">
  12984. <summary>
  12985. Format all the cell in the pivottable area
  12986. </summary>
  12987. <param name="style">Style which is to format</param>
  12988. </member>
  12989. <member name="M:Aspose.Cells.Pivot.PivotTable.Format(System.Int32,System.Int32,Aspose.Cells.Style)">
  12990. <summary>
  12991. Format the cell in the pivottable area
  12992. </summary>
  12993. <param name="row">RowIndex of the cell</param>
  12994. <param name="column">Column index of the cell</param>
  12995. <param name="style">Style which is to format the cell</param>
  12996. </member>
  12997. <member name="M:Aspose.Cells.Pivot.PivotTable.SetAutoGroupField(System.Int32)">
  12998. <summary>
  12999. Sets auto field group by the PivotTable.
  13000. </summary>
  13001. <param name="baseFieldIndex">The row or column field index in the base fields</param>
  13002. </member>
  13003. <member name="M:Aspose.Cells.Pivot.PivotTable.SetAutoGroupField(Aspose.Cells.Pivot.PivotField)">
  13004. <summary>
  13005. Sets auto field group by the PivotTable.
  13006. </summary>
  13007. <param name="pivotField">The row or column field in the specific fields</param>
  13008. </member>
  13009. <member name="M:Aspose.Cells.Pivot.PivotTable.SetManualGroupField(System.Int32,System.Double,System.Double,System.Collections.ArrayList,System.Double)">
  13010. <summary>
  13011. Sets manual field group by the PivotTable.
  13012. </summary>
  13013. <param name="baseFieldIndex">The row or column field index in the base fields</param>
  13014. <param name="startVal">Specifies the starting value for numeric grouping.</param>
  13015. <param name="endVal">Specifies the ending value for numeric grouping. </param>
  13016. <param name="groupByList">Specifies the grouping type list. Specified by PivotTableGroupType</param>
  13017. <param name="intervalNum">Specifies the interval number group by numeric grouping.</param>
  13018. </member>
  13019. <member name="M:Aspose.Cells.Pivot.PivotTable.SetManualGroupField(Aspose.Cells.Pivot.PivotField,System.Double,System.Double,System.Collections.ArrayList,System.Double)">
  13020. <summary>
  13021. Sets manual field group by the PivotTable.
  13022. </summary>
  13023. <param name="pivotField">The row or column field in the base fields</param>
  13024. <param name="startVal">Specifies the starting value for numeric grouping.</param>
  13025. <param name="endVal">Specifies the ending value for numeric grouping. </param>
  13026. <param name="groupByList">Specifies the grouping type list. Specified by PivotTableGroupType</param>
  13027. <param name="intervalNum">Specifies the interval number group by numeric grouping.</param>
  13028. </member>
  13029. <member name="M:Aspose.Cells.Pivot.PivotTable.SetManualGroupField(System.Int32,System.DateTime,System.DateTime,System.Collections.ArrayList,System.Int32)">
  13030. <summary>
  13031. Sets manual field group by the PivotTable.
  13032. </summary>
  13033. <param name="baseFieldIndex">The row or column field index in the base fields</param>
  13034. <param name="startVal">Specifies the starting value for date grouping. </param>
  13035. <param name="endVal">Specifies the ending value for date grouping.</param>
  13036. <param name="groupByList">Specifies the grouping type list. Specified by PivotTableGroupType</param>
  13037. <param name="intervalNum">Specifies the interval number group by in days grouping.The number of days must be positive integer of nonzero</param>
  13038. </member>
  13039. <member name="M:Aspose.Cells.Pivot.PivotTable.SetManualGroupField(Aspose.Cells.Pivot.PivotField,System.DateTime,System.DateTime,System.Collections.ArrayList,System.Int32)">
  13040. <summary>
  13041. Sets manual field group by the PivotTable.
  13042. </summary>
  13043. <param name="pivotField">The row or column field in the base fields</param>
  13044. <param name="startVal">Specifies the starting value for date grouping.</param>
  13045. <param name="endVal">Specifies the ending value for date grouping.</param>
  13046. <param name="groupByList">Specifies the grouping type list. Specified by PivotTableGroupType</param>
  13047. <param name="intervalNum">Specifies the interval number group by in days grouping.The number of days must be positive integer of nonzero</param>
  13048. </member>
  13049. <member name="M:Aspose.Cells.Pivot.PivotTable.SetUngroup(System.Int32)">
  13050. <summary>
  13051. Sets ungroup by the PivotTable
  13052. </summary>
  13053. <param name="baseFieldIndex">The row or column field index in the base fields</param>
  13054. </member>
  13055. <member name="M:Aspose.Cells.Pivot.PivotTable.SetUngroup(Aspose.Cells.Pivot.PivotField)">
  13056. <summary>
  13057. Sets ungroup by the PivotTable
  13058. </summary>
  13059. <param name="pivotField">The row or column field in the base fields</param>
  13060. </member>
  13061. <member name="M:Aspose.Cells.Pivot.PivotTable.GetHorizontalBreaks">
  13062. <summary>
  13063. get pivot table row index list of horizontal pagebreaks
  13064. </summary>
  13065. <returns>
  13066. </returns>
  13067. </member>
  13068. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowInCompactForm">
  13069. <summary>
  13070. Layouts the PivotTable in compact form.
  13071. </summary>
  13072. </member>
  13073. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowInOutlineForm">
  13074. <summary>
  13075. Layouts the PivotTable in outline form.
  13076. </summary>
  13077. </member>
  13078. <member name="M:Aspose.Cells.Pivot.PivotTable.ShowInTabularForm">
  13079. <summary>
  13080. Layouts the PivotTable in tabular form.
  13081. </summary>
  13082. </member>
  13083. <member name="M:Aspose.Cells.Pivot.PivotTable.GetCellByDisplayName(System.String)">
  13084. <summary>
  13085. Gets the Cell object by the DisplayName of PivotField
  13086. </summary>
  13087. <param name="displayName">the DisplayName of PivotField</param>
  13088. <returns>the Cell object</returns>
  13089. </member>
  13090. <member name="M:Aspose.Cells.Pivot.PivotTable.GetChildren">
  13091. <summary>
  13092. Gets the Children Pivot Tables which use this PivotTable data as data source.
  13093. </summary>
  13094. <returns>the PivotTable array object</returns>
  13095. </member>
  13096. <member name="P:Aspose.Cells.Pivot.PivotTable.IsExcel2003Compatible">
  13097. <summary>
  13098. Specifies whether the PivotTable is compatible for Excel2003 when refreshing PivotTable,
  13099. if true, a string must be less than or equal to 255 characters, so if the string is greater than 255 characters,
  13100. it will be truncated. if false, a string will not have the aforementioned restriction.
  13101. The default value is true.
  13102. </summary>
  13103. </member>
  13104. <member name="P:Aspose.Cells.Pivot.PivotTable.RefreshedByWho">
  13105. <summary>
  13106. Gets the name of the user who last refreshed the PivotTable
  13107. </summary>
  13108. </member>
  13109. <member name="P:Aspose.Cells.Pivot.PivotTable.RefreshDate">
  13110. <summary>
  13111. Gets the date when the PivotTable was last refreshed.
  13112. </summary>
  13113. </member>
  13114. <member name="P:Aspose.Cells.Pivot.PivotTable.PivotTableStyleName">
  13115. <summary>
  13116. Gets and sets the pivottable style name.
  13117. </summary>
  13118. </member>
  13119. <member name="P:Aspose.Cells.Pivot.PivotTable.PivotTableStyleType">
  13120. <summary>
  13121. Gets and sets the built-in pivot table style.
  13122. </summary>
  13123. </member>
  13124. <member name="P:Aspose.Cells.Pivot.PivotTable.ColumnFields">
  13125. <summary>
  13126. Returns a PivotFields object that are currently shown as column fields.
  13127. </summary>
  13128. </member>
  13129. <member name="P:Aspose.Cells.Pivot.PivotTable.RowFields">
  13130. <summary>
  13131. Returns a PivotFields object that are currently shown as row fields.
  13132. </summary>
  13133. </member>
  13134. <member name="P:Aspose.Cells.Pivot.PivotTable.PageFields">
  13135. <summary>
  13136. Returns a PivotFields object that are currently shown as page fields.
  13137. </summary>
  13138. </member>
  13139. <member name="P:Aspose.Cells.Pivot.PivotTable.DataFields">
  13140. <summary>
  13141. Gets a PivotField object that represents all the data fields in a PivotTable.
  13142. Read-only.It would be init only when there are two or more data fields in the DataPiovtFiels.
  13143. It only use to add DataPivotField to the PivotTable row/column area . Default is in row area.
  13144. </summary>
  13145. </member>
  13146. <member name="P:Aspose.Cells.Pivot.PivotTable.DataField">
  13147. <summary>
  13148. Gets a PivotField object that represents all the data fields in a PivotTable.
  13149. Read-only.It would be init only when there are two or more data fields in the DataPiovtFiels.
  13150. It only use to add DataPivotField to the PivotTable row/column area . Default is in row area.
  13151. </summary>
  13152. </member>
  13153. <member name="P:Aspose.Cells.Pivot.PivotTable.BaseFields">
  13154. <summary>
  13155. Returns a PivotFields object that includes all fields in the PivotTable report
  13156. </summary>
  13157. </member>
  13158. <member name="P:Aspose.Cells.Pivot.PivotTable.PivotFilters">
  13159. <summary>
  13160. Returns a PivotFilterCollection object.
  13161. </summary>
  13162. </member>
  13163. <member name="P:Aspose.Cells.Pivot.PivotTable.ColumnRange">
  13164. <summary>
  13165. Returns a CellArea object that represents the range
  13166. that contains the column area in the PivotTable report. Read-only.
  13167. </summary>
  13168. </member>
  13169. <member name="P:Aspose.Cells.Pivot.PivotTable.RowRange">
  13170. <summary>
  13171. Returns a CellArea object that represents the range
  13172. that contains the row area in the PivotTable report. Read-only.
  13173. </summary>
  13174. </member>
  13175. <member name="P:Aspose.Cells.Pivot.PivotTable.DataBodyRange">
  13176. <summary>
  13177. Returns a CellArea object that represents the range that contains the data area
  13178. in the list between the header row and the insert row. Read-only.
  13179. </summary>
  13180. </member>
  13181. <member name="P:Aspose.Cells.Pivot.PivotTable.TableRange1">
  13182. <summary>
  13183. Returns a CellArea object that represents the range containing the entire PivotTable report,
  13184. but doesn't include page fields. Read-only.
  13185. </summary>
  13186. </member>
  13187. <member name="P:Aspose.Cells.Pivot.PivotTable.TableRange2">
  13188. <summary>
  13189. Returns a CellArea object that represents the range containing the entire PivotTable report,
  13190. includes page fields. Read-only.
  13191. </summary>
  13192. </member>
  13193. <member name="P:Aspose.Cells.Pivot.PivotTable.ColumnGrand">
  13194. <summary>
  13195. Indicates whether the PivotTable report shows grand totals for columns.
  13196. </summary>
  13197. </member>
  13198. <member name="P:Aspose.Cells.Pivot.PivotTable.IsGridDropZones">
  13199. <summary>
  13200. Indicates whether the PivotTable report displays classic pivottable layout.
  13201. (enables dragging fields in the grid)
  13202. </summary>
  13203. </member>
  13204. <member name="P:Aspose.Cells.Pivot.PivotTable.RowGrand">
  13205. <summary>
  13206. Indicates whether the PivotTable report shows grand totals for rows.
  13207. </summary>
  13208. </member>
  13209. <member name="P:Aspose.Cells.Pivot.PivotTable.DisplayNullString">
  13210. <summary>
  13211. Indicates whether the PivotTable report displays a custom string
  13212. in cells that contain null values.
  13213. </summary>
  13214. </member>
  13215. <member name="P:Aspose.Cells.Pivot.PivotTable.NullString">
  13216. <summary>
  13217. Gets the string displayed in cells that contain null values
  13218. when the DisplayNullString property is true.The default value is an empty string.
  13219. </summary>
  13220. </member>
  13221. <member name="P:Aspose.Cells.Pivot.PivotTable.DisplayErrorString">
  13222. <summary>
  13223. Indicates whether the PivotTable report displays a custom string in cells that contain errors.
  13224. </summary>
  13225. </member>
  13226. <member name="P:Aspose.Cells.Pivot.PivotTable.ErrorString">
  13227. <summary>
  13228. Gets the string displayed in cells that contain errors
  13229. when the DisplayErrorString property is true.The default value is an empty string.
  13230. </summary>
  13231. </member>
  13232. <member name="P:Aspose.Cells.Pivot.PivotTable.IsAutoFormat">
  13233. <summary>
  13234. Indicates whether the PivotTable report is automatically formatted.
  13235. Checkbox "autoformat table " which is in pivottable option for Excel 2003
  13236. Checkbox "autofit column width on update" which is in pivot table Options :Layout Format for Excel 2007
  13237. </summary>
  13238. </member>
  13239. <member name="P:Aspose.Cells.Pivot.PivotTable.AutoFormatType">
  13240. <summary>
  13241. Gets the PivotTable auto format type.
  13242. </summary>
  13243. <see cref="T:Aspose.Cells.Pivot.PivotTableAutoFormatType" />
  13244. </member>
  13245. <member name="P:Aspose.Cells.Pivot.PivotTable.HasBlankRows">
  13246. <summary>
  13247. Indicates whether to add blank rows.
  13248. This property only applies for the PivotTable auto format types which needs to add blank rows.
  13249. </summary>
  13250. </member>
  13251. <member name="P:Aspose.Cells.Pivot.PivotTable.MergeLabels">
  13252. <summary>
  13253. Indicates whether the specified PivotTable report's outer-row item, column item, subtotal,
  13254. and grand total labels use merged cells.
  13255. </summary>
  13256. </member>
  13257. <member name="P:Aspose.Cells.Pivot.PivotTable.PreserveFormatting">
  13258. <summary>
  13259. Indicates whether formatting is preserved when the PivotTable is refreshed or recalculated.
  13260. </summary>
  13261. </member>
  13262. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowDrill">
  13263. <summary>
  13264. Gets whether expand/collapse buttons is shown.
  13265. </summary>
  13266. </member>
  13267. <member name="P:Aspose.Cells.Pivot.PivotTable.EnableDrilldown">
  13268. <summary>
  13269. Gets whether drilldown is enabled.
  13270. </summary>
  13271. </member>
  13272. <member name="P:Aspose.Cells.Pivot.PivotTable.EnableFieldDialog">
  13273. <summary>
  13274. Indicates whether the PivotTable Field dialog box is available
  13275. when the user double-clicks the PivotTable field.
  13276. </summary>
  13277. </member>
  13278. <member name="P:Aspose.Cells.Pivot.PivotTable.EnableFieldList">
  13279. <summary>
  13280. Gets whether enable the field list for the PivotTable.
  13281. </summary>
  13282. </member>
  13283. <member name="P:Aspose.Cells.Pivot.PivotTable.EnableWizard">
  13284. <summary>
  13285. Indicates whether the PivotTable Wizard is available.
  13286. </summary>
  13287. </member>
  13288. <member name="P:Aspose.Cells.Pivot.PivotTable.SubtotalHiddenPageItems">
  13289. <summary>
  13290. Indicates whether hidden page field items in the PivotTable report
  13291. are included in row and column subtotals, block totals, and grand totals.
  13292. The default value is False.
  13293. </summary>
  13294. </member>
  13295. <member name="P:Aspose.Cells.Pivot.PivotTable.GrandTotalName">
  13296. <summary>
  13297. Returns the text string label that is displayed in the grand total column or row heading.
  13298. The default value is the string "Grand Total".
  13299. </summary>
  13300. </member>
  13301. <member name="P:Aspose.Cells.Pivot.PivotTable.ManualUpdate">
  13302. <summary>
  13303. Indicates whether the PivotTable report is recalculated only at the user's request.
  13304. </summary>
  13305. </member>
  13306. <member name="P:Aspose.Cells.Pivot.PivotTable.IsMultipleFieldFilters">
  13307. <summary>
  13308. Specifies a boolean value that indicates whether the fields of a PivotTable can have multiple filters set on them.
  13309. </summary>
  13310. </member>
  13311. <member name="P:Aspose.Cells.Pivot.PivotTable.MissingItemsLimit">
  13312. <summary>
  13313. Specifies a boolean value that indicates whether the fields of a PivotTable can have multiple filters set on them.
  13314. </summary>
  13315. </member>
  13316. <member name="P:Aspose.Cells.Pivot.PivotTable.EnableDataValueEditing">
  13317. <summary>
  13318. Specifies a boolean value that indicates whether the user is allowed to edit the cells in the data area of the pivottable.
  13319. Enable cell editing in the values area
  13320. </summary>
  13321. </member>
  13322. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowDataTips">
  13323. <summary>
  13324. Specifies a boolean value that indicates whether tooltips should be displayed for PivotTable data cells.
  13325. </summary>
  13326. </member>
  13327. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowMemberPropertyTips">
  13328. <summary>
  13329. Specifies a boolean value that indicates whether member property information should be omitted from PivotTable tooltips.
  13330. </summary>
  13331. </member>
  13332. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowValuesRow">
  13333. <summary>
  13334. Specifies a boolean value that indicates whether show values row.
  13335. show the values row
  13336. </summary>
  13337. </member>
  13338. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowEmptyCol">
  13339. <summary>
  13340. Specifies a boolean value that indicates whether to include empty columns in the table
  13341. </summary>
  13342. </member>
  13343. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowEmptyRow">
  13344. <summary>
  13345. Specifies a boolean value that indicates whether to include empty rows in the table.
  13346. </summary>
  13347. </member>
  13348. <member name="P:Aspose.Cells.Pivot.PivotTable.FieldListSortAscending">
  13349. <summary>
  13350. Specifies a boolean value that indicates whether fields in the PivotTable are sorted in non-default order in the field list.
  13351. </summary>
  13352. </member>
  13353. <member name="P:Aspose.Cells.Pivot.PivotTable.PrintDrill">
  13354. <summary>
  13355. Specifies a boolean value that indicates whether drill indicators should be printed.
  13356. print expand/collapse buttons when displayed on pivottable.
  13357. </summary>
  13358. </member>
  13359. <member name="P:Aspose.Cells.Pivot.PivotTable.AltTextTitle">
  13360. <summary>
  13361. Gets the title of the altertext
  13362. </summary>
  13363. </member>
  13364. <member name="P:Aspose.Cells.Pivot.PivotTable.AltTextDescription">
  13365. <summary>
  13366. Gets the description of the alt text
  13367. </summary>
  13368. </member>
  13369. <member name="P:Aspose.Cells.Pivot.PivotTable.Name">
  13370. <summary>
  13371. Gets the name of the PivotTable
  13372. </summary>
  13373. </member>
  13374. <member name="P:Aspose.Cells.Pivot.PivotTable.ColumnHeaderCaption">
  13375. <summary>
  13376. Gets the Column Header Caption of the PivotTable.
  13377. </summary>
  13378. </member>
  13379. <member name="P:Aspose.Cells.Pivot.PivotTable.Indent">
  13380. <summary>
  13381. Specifies the indentation increment for compact axis and can be used to set the Report Layout to Compact Form.
  13382. </summary>
  13383. </member>
  13384. <member name="P:Aspose.Cells.Pivot.PivotTable.RowHeaderCaption">
  13385. <summary>
  13386. Gets the Row Header Caption of the PivotTable.
  13387. </summary>
  13388. </member>
  13389. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowRowHeaderCaption">
  13390. <summary>
  13391. Indicates whether row header caption is shown in the PivotTable report
  13392. Indicates whether Display field captions and filter drop downs
  13393. </summary>
  13394. </member>
  13395. <member name="P:Aspose.Cells.Pivot.PivotTable.CustomListSort">
  13396. <summary>
  13397. Indicates whether consider built-in custom list when sort data
  13398. </summary>
  13399. </member>
  13400. <member name="P:Aspose.Cells.Pivot.PivotTable.PivotFormatConditions">
  13401. <summary>
  13402. Gets the Format Conditions of the pivot table.
  13403. </summary>
  13404. </member>
  13405. <member name="P:Aspose.Cells.Pivot.PivotTable.PageFieldOrder">
  13406. <summary>
  13407. Gets the order in which page fields are added to the PivotTable report's layout.
  13408. </summary>
  13409. </member>
  13410. <member name="P:Aspose.Cells.Pivot.PivotTable.PageFieldWrapCount">
  13411. <summary>
  13412. Gets the number of page fields in each column or row in the PivotTable report.
  13413. </summary>
  13414. </member>
  13415. <member name="P:Aspose.Cells.Pivot.PivotTable.Tag">
  13416. <summary>
  13417. Gets a string saved with the PivotTable report.
  13418. </summary>
  13419. </member>
  13420. <member name="P:Aspose.Cells.Pivot.PivotTable.SaveData">
  13421. <summary>
  13422. Indicates whether data for the PivotTable report is saved with the workbook.
  13423. </summary>
  13424. </member>
  13425. <member name="P:Aspose.Cells.Pivot.PivotTable.RefreshDataOnOpeningFile">
  13426. <summary>
  13427. Indicates whether Refresh Data when Opening File.
  13428. </summary>
  13429. </member>
  13430. <member name="P:Aspose.Cells.Pivot.PivotTable.RefreshDataFlag">
  13431. <summary>
  13432. Indicates whether Refresh Data or not.
  13433. </summary>
  13434. </member>
  13435. <member name="P:Aspose.Cells.Pivot.PivotTable.ExternalConnectionDataSource">
  13436. <summary>
  13437. Gets the external connection data source.
  13438. </summary>
  13439. </member>
  13440. <member name="P:Aspose.Cells.Pivot.PivotTable.DataSource">
  13441. <summary>
  13442. Gets and sets the data source of the pivot table.
  13443. </summary>
  13444. </member>
  13445. <member name="P:Aspose.Cells.Pivot.PivotTable.ItemPrintTitles">
  13446. <summary>
  13447. A bit that specifies whether pivot item captions on the row axis
  13448. are repeated on each printed page for pivot fields in tabular form.
  13449. </summary>
  13450. </member>
  13451. <member name="P:Aspose.Cells.Pivot.PivotTable.PrintTitles">
  13452. <summary>
  13453. Indicates whether the print titles for the worksheet are set based
  13454. on the PivotTable report. The default value is false.
  13455. </summary>
  13456. </member>
  13457. <member name="P:Aspose.Cells.Pivot.PivotTable.DisplayImmediateItems">
  13458. <summary>
  13459. Indicates whether items in the row and column areas are visible
  13460. when the data area of the PivotTable is empty. The default value is true.
  13461. </summary>
  13462. </member>
  13463. <member name="P:Aspose.Cells.Pivot.PivotTable.IsSelected">
  13464. <summary>
  13465. Indicates whether the PivotTable is selected.
  13466. </summary>
  13467. </member>
  13468. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowPivotStyleRowHeader">
  13469. <summary>
  13470. Indicates whether the row header in the pivot table should have the style applied.
  13471. </summary>
  13472. </member>
  13473. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowPivotStyleColumnHeader">
  13474. <summary>
  13475. Indicates whether the column header in the pivot table should have the style applied.
  13476. </summary>
  13477. </member>
  13478. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowPivotStyleRowStripes">
  13479. <summary>
  13480. Indicates whether row stripe formatting is applied.
  13481. </summary>
  13482. </member>
  13483. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowPivotStyleColumnStripes">
  13484. <summary>
  13485. Indicates whether column stripe formatting is applied.
  13486. </summary>
  13487. </member>
  13488. <member name="P:Aspose.Cells.Pivot.PivotTable.ShowPivotStyleLastColumn">
  13489. <summary>
  13490. Indicates whether column stripe formatting is applied.
  13491. </summary>
  13492. </member>
  13493. <member name="T:Aspose.Cells.RenameStrategy">
  13494. <summary>
  13495. Renames strategy when columns contains the duplicate names.
  13496. </summary>
  13497. </member>
  13498. <member name="F:Aspose.Cells.RenameStrategy.Exception">
  13499. <summary>
  13500. Throws exception.
  13501. </summary>
  13502. </member>
  13503. <member name="F:Aspose.Cells.RenameStrategy.Digit">
  13504. <summary>
  13505. Named with digit.
  13506. </summary>
  13507. </member>
  13508. <member name="F:Aspose.Cells.RenameStrategy.Letter">
  13509. <summary>
  13510. Named with letter.
  13511. </summary>
  13512. </member>
  13513. <member name="T:Aspose.Cells.ExternalConnections.HtmlFormatHandlingType">
  13514. <summary>
  13515. Specifies how to handle formatting from the HTML source
  13516. </summary>
  13517. </member>
  13518. <member name="F:Aspose.Cells.ExternalConnections.HtmlFormatHandlingType.All">
  13519. <summary>
  13520. Transfer all HTML formatting into the worksheet along with data.
  13521. </summary>
  13522. </member>
  13523. <member name="F:Aspose.Cells.ExternalConnections.HtmlFormatHandlingType.None">
  13524. <summary>
  13525. Bring data in as unformatted text (setting data types still occurs).
  13526. </summary>
  13527. </member>
  13528. <member name="F:Aspose.Cells.ExternalConnections.HtmlFormatHandlingType.Rtf">
  13529. <summary>
  13530. Translate HTML formatting to rich text formatting on the data brought into the worksheet.
  13531. </summary>
  13532. </member>
  13533. <member name="T:Aspose.Cells.Rendering.PdfOptimizationType">
  13534. <summary>
  13535. Specifies a type of optimization.
  13536. </summary>
  13537. </member>
  13538. <member name="F:Aspose.Cells.Rendering.PdfOptimizationType.Standard">
  13539. <summary>
  13540. High print quality
  13541. </summary>
  13542. </member>
  13543. <member name="F:Aspose.Cells.Rendering.PdfOptimizationType.MinimumSize">
  13544. <summary>
  13545. File size is more important than print quality
  13546. </summary>
  13547. </member>
  13548. <member name="T:Aspose.Cells.Metadata.MetadataOptions">
  13549. <summary>
  13550. Represents the options of loading metadata of the file.
  13551. </summary>
  13552. </member>
  13553. <member name="M:Aspose.Cells.Metadata.MetadataOptions.#ctor(Aspose.Cells.Metadata.MetadataType)">
  13554. <summary>
  13555. Creates an options of loading the metadata.
  13556. </summary>
  13557. <param name="metadataType">The type of metadata.</param>
  13558. </member>
  13559. <member name="P:Aspose.Cells.Metadata.MetadataOptions.MetadataType">
  13560. <summary>
  13561. Gets and sets the type of the metadata which is loading.
  13562. </summary>
  13563. </member>
  13564. <member name="P:Aspose.Cells.Metadata.MetadataOptions.Password">
  13565. <summary>
  13566. Represents Workbook file encryption password.
  13567. </summary>
  13568. </member>
  13569. <member name="P:Aspose.Cells.Metadata.MetadataOptions.KeyLength">
  13570. <summary>
  13571. The key length.
  13572. </summary>
  13573. </member>
  13574. <member name="T:Aspose.Cells.Metadata.MetadataType">
  13575. <summary>
  13576. Represents the type of metadata.
  13577. </summary>
  13578. </member>
  13579. <member name="F:Aspose.Cells.Metadata.MetadataType.Encryption">
  13580. <summary>
  13581. Encrypts the file.
  13582. </summary>
  13583. </member>
  13584. <member name="F:Aspose.Cells.Metadata.MetadataType.Decryption">
  13585. <summary>
  13586. Decrypts the file.
  13587. </summary>
  13588. </member>
  13589. <member name="F:Aspose.Cells.Metadata.MetadataType.DocumentProperties">
  13590. <summary>
  13591. Load the properties of the file.
  13592. </summary>
  13593. </member>
  13594. <member name="T:Aspose.Cells.Metadata.WorkbookMetadata">
  13595. <summary>
  13596. Represents the meta data.
  13597. </summary>
  13598. <example>
  13599. The following example creates a WorkbookMetadata.
  13600. <code>
  13601. [C#]
  13602. MetadataOptions options = new MetadataOptions(MetadataType.DocumentProperties);
  13603. WorkbookMetadata meta = new WorkbookMetadata(path + "book1.xlsx", options);
  13604. meta.CustomDocumentProperties.Add("test", "test");
  13605. meta.Save(path + "book2.xlsx");
  13606. </code></example>
  13607. </member>
  13608. <member name="M:Aspose.Cells.Metadata.WorkbookMetadata.#ctor(System.String,Aspose.Cells.Metadata.MetadataOptions)">
  13609. <summary>
  13610. Create the meta data object.
  13611. </summary>
  13612. <param name="fileName">
  13613. </param>
  13614. <param name="options">
  13615. </param>
  13616. </member>
  13617. <member name="M:Aspose.Cells.Metadata.WorkbookMetadata.#ctor(System.IO.Stream,Aspose.Cells.Metadata.MetadataOptions)">
  13618. <summary>
  13619. Create the meta data object.
  13620. </summary>
  13621. <param name="stream">
  13622. </param>
  13623. <param name="options">
  13624. </param>
  13625. </member>
  13626. <member name="M:Aspose.Cells.Metadata.WorkbookMetadata.Save(System.String)">
  13627. <summary>
  13628. Save the modified metadata to the file.
  13629. </summary>
  13630. <param name="fileName">The file name.</param>
  13631. </member>
  13632. <member name="M:Aspose.Cells.Metadata.WorkbookMetadata.Save(System.IO.Stream)">
  13633. <summary>
  13634. Save the modified metadata to the stream.
  13635. </summary>
  13636. <param name="stream">The stream.</param>
  13637. </member>
  13638. <member name="P:Aspose.Cells.Metadata.WorkbookMetadata.Options">
  13639. <summary>
  13640. Gets the options of the metadata.
  13641. </summary>
  13642. </member>
  13643. <member name="P:Aspose.Cells.Metadata.WorkbookMetadata.BuiltInDocumentProperties">
  13644. <summary>
  13645. Returns a DocumentProperties collection that represents all the built-in document properties of the spreadsheet.
  13646. </summary>
  13647. </member>
  13648. <member name="P:Aspose.Cells.Metadata.WorkbookMetadata.CustomDocumentProperties">
  13649. <summary>
  13650. Returns a DocumentProperties collection that represents all the custom document properties of the spreadsheet.
  13651. </summary>
  13652. </member>
  13653. <member name="T:Aspose.Cells.CellValueFormatStrategy">
  13654. <summary>
  13655. Specifies how to apply style for the value of the cell.
  13656. </summary>
  13657. </member>
  13658. <member name="F:Aspose.Cells.CellValueFormatStrategy.None">
  13659. <summary>
  13660. Not formatted.
  13661. </summary>
  13662. </member>
  13663. <member name="F:Aspose.Cells.CellValueFormatStrategy.CellStyle">
  13664. <summary>
  13665. Only formatted with the cell's original style.
  13666. </summary>
  13667. </member>
  13668. <member name="F:Aspose.Cells.CellValueFormatStrategy.DisplayStyle">
  13669. <summary>
  13670. Formatted with the cell's displayed style.
  13671. </summary>
  13672. </member>
  13673. <member name="T:Aspose.Cells.Charts.PivotOptions">
  13674. <summary>
  13675. Represents a complex type that specifies the pivot controls that appear on the chart
  13676. </summary>
  13677. </member>
  13678. <member name="P:Aspose.Cells.Charts.PivotOptions.DropZoneFilter">
  13679. <summary>
  13680. Specifies whether a control for each PivotTable field on the PivotTable page axis
  13681. of the source PivotTable appears on the chart when dropZonesVisible is set to true.
  13682. </summary>
  13683. </member>
  13684. <member name="P:Aspose.Cells.Charts.PivotOptions.DropZoneCategories">
  13685. <summary>
  13686. Specifies whether a control for each PivotTable field on the PivotTable row axis
  13687. of the source PivotTable appears on the chart when dropZonesVisible is set to true.
  13688. </summary>
  13689. </member>
  13690. <member name="P:Aspose.Cells.Charts.PivotOptions.DropZoneData">
  13691. <summary>
  13692. Specifies whether a control for each PivotTable field on the PivotTable data axis
  13693. of the source PivotTable appears on the chart when dropZonesVisible is set to true.
  13694. </summary>
  13695. </member>
  13696. <member name="P:Aspose.Cells.Charts.PivotOptions.DropZoneSeries">
  13697. <summary>
  13698. Specifies whether a control for each PivotTable field on the PivotTable column axis
  13699. of the source PivotTable appears on the chart when dropZonesVisible is set to true.
  13700. </summary>
  13701. </member>
  13702. <member name="P:Aspose.Cells.Charts.PivotOptions.DropZonesVisible">
  13703. <summary>
  13704. Specifies whether any pivot controls can appear on the pivot chart.
  13705. </summary>
  13706. </member>
  13707. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ActiveXPersistenceType">
  13708. <summary>
  13709. Represents the persistence method to persist an ActiveX control.
  13710. </summary>
  13711. </member>
  13712. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ActiveXPersistenceType.PropertyBag">
  13713. <summary>
  13714. The data is stored as xml data.
  13715. </summary>
  13716. </member>
  13717. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ActiveXPersistenceType.Storage">
  13718. <summary>
  13719. The data is stored as a storage binary data.
  13720. </summary>
  13721. </member>
  13722. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ActiveXPersistenceType.Stream">
  13723. <summary>
  13724. The data is stored as a stream binary data.
  13725. </summary>
  13726. </member>
  13727. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ActiveXPersistenceType.StreamInit">
  13728. <summary>
  13729. The data is stored as a streaminit binary data.
  13730. </summary>
  13731. </member>
  13732. <member name="T:Aspose.Cells.Drawing.ActiveXControls.DropButtonStyle">
  13733. <summary>
  13734. Represents the symbol displayed on the drop button.
  13735. </summary>
  13736. </member>
  13737. <member name="F:Aspose.Cells.Drawing.ActiveXControls.DropButtonStyle.Plain">
  13738. <summary>
  13739. Displays a button with no symbol.
  13740. </summary>
  13741. </member>
  13742. <member name="F:Aspose.Cells.Drawing.ActiveXControls.DropButtonStyle.Arrow">
  13743. <summary>
  13744. Displays a button with a down arrow.
  13745. </summary>
  13746. </member>
  13747. <member name="F:Aspose.Cells.Drawing.ActiveXControls.DropButtonStyle.Ellipsis">
  13748. <summary>
  13749. Displays a button with an ellipsis (...).
  13750. </summary>
  13751. </member>
  13752. <member name="F:Aspose.Cells.Drawing.ActiveXControls.DropButtonStyle.Reduce">
  13753. <summary>
  13754. Displays a button with a horizontal line like an underscore character.
  13755. </summary>
  13756. </member>
  13757. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ShowDropButtonType">
  13758. <summary>
  13759. Specifies when to show the drop button
  13760. </summary>
  13761. </member>
  13762. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ShowDropButtonType.Never">
  13763. <summary>
  13764. Never show the drop button.
  13765. </summary>
  13766. </member>
  13767. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ShowDropButtonType.Focus">
  13768. <summary>
  13769. Show the drop button when the control has the focus.
  13770. </summary>
  13771. </member>
  13772. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ShowDropButtonType.Always">
  13773. <summary>
  13774. Always show the drop button.
  13775. </summary>
  13776. </member>
  13777. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl">
  13778. <summary>
  13779. Represents the ActiveX control.
  13780. </summary>
  13781. </member>
  13782. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase">
  13783. <summary>
  13784. Represents the ActiveX control.
  13785. </summary>
  13786. </member>
  13787. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Workbook">
  13788. <summary>
  13789. Gets the <see cref="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Workbook" /> object.
  13790. </summary>
  13791. </member>
  13792. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Type">
  13793. <summary>
  13794. Gets the type of the ActiveX control.
  13795. </summary>
  13796. </member>
  13797. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Width">
  13798. <summary>
  13799. Gets and sets the width of the control in unit of points.
  13800. </summary>
  13801. </member>
  13802. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Height">
  13803. <summary>
  13804. Gets and sets the height of the control in unit of points.
  13805. </summary>
  13806. </member>
  13807. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.MouseIcon">
  13808. <summary>
  13809. Gets and sets a custom icon to display as the mouse pointer for the control.
  13810. </summary>
  13811. </member>
  13812. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.MousePointer">
  13813. <summary>
  13814. Gets and sets the type of icon displayed as the mouse pointer for the control.
  13815. </summary>
  13816. </member>
  13817. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.ForeOleColor">
  13818. <summary>
  13819. Gets and sets the ole color of the foreground.
  13820. </summary>
  13821. <remarks>
  13822. Not applies to Image control.
  13823. </remarks>
  13824. </member>
  13825. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.BackOleColor">
  13826. <summary>
  13827. Gets and sets the ole color of the background.
  13828. </summary>
  13829. </member>
  13830. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.IsVisible">
  13831. <summary>
  13832. Indicates whether this control is visible.
  13833. </summary>
  13834. </member>
  13835. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Shadow">
  13836. <summary>
  13837. Indicates whether to show a shadow.
  13838. </summary>
  13839. </member>
  13840. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.LinkedCell">
  13841. <summary>
  13842. Gets and sets the linked cell.
  13843. </summary>
  13844. </member>
  13845. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.ListFillRange">
  13846. <summary>
  13847. Gets and sets the list fill range.
  13848. </summary>
  13849. </member>
  13850. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControlBase.Data">
  13851. <summary>
  13852. Gets and sets the binary data of the control.
  13853. </summary>
  13854. </member>
  13855. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.IsEnabled">
  13856. <summary>
  13857. Indicates whether the control can receive the focus and respond to user-generated events.
  13858. </summary>
  13859. </member>
  13860. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.IsLocked">
  13861. <summary>
  13862. Indicates whether data in the control is locked for editing.
  13863. </summary>
  13864. </member>
  13865. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.IsTransparent">
  13866. <summary>
  13867. Indicates whether the control is transparent.
  13868. </summary>
  13869. </member>
  13870. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.IsAutoSize">
  13871. <summary>
  13872. Indicates whether the control will automatically resize to display its entire contents.
  13873. </summary>
  13874. </member>
  13875. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.IMEMode">
  13876. <summary>
  13877. Gets and sets the default run-time mode of the Input Method Editor for the control as it receives focus.
  13878. </summary>
  13879. </member>
  13880. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.Font">
  13881. <summary>
  13882. Represents the font of the control.
  13883. </summary>
  13884. </member>
  13885. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.TextAlign">
  13886. <summary>
  13887. Represents how to align the text used by the control.
  13888. </summary>
  13889. </member>
  13890. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ActiveXControl.Data">
  13891. <summary>
  13892. Gets and sets the binary data of the control.
  13893. </summary>
  13894. </member>
  13895. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlBorderType">
  13896. <summary>
  13897. Represents the border type of the ActiveX control.
  13898. </summary>
  13899. </member>
  13900. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlBorderType.None">
  13901. <summary>
  13902. No border.
  13903. </summary>
  13904. </member>
  13905. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlBorderType.Single">
  13906. <summary>
  13907. The single line.
  13908. </summary>
  13909. </member>
  13910. <member name="T:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode">
  13911. <summary>
  13912. Represents the default run-time mode of the Input Method Editor.
  13913. </summary>
  13914. </member>
  13915. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.NoControl">
  13916. <summary>
  13917. Does not control IME.
  13918. </summary>
  13919. </member>
  13920. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.On">
  13921. <summary>
  13922. IME on.
  13923. </summary>
  13924. </member>
  13925. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Off">
  13926. <summary>
  13927. IME off. English mode.
  13928. </summary>
  13929. </member>
  13930. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Disable">
  13931. <summary>
  13932. IME off.User can't turn on IME by keyboard.
  13933. </summary>
  13934. </member>
  13935. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Hiragana">
  13936. <summary>
  13937. IME on with Full-width hiragana mode.
  13938. </summary>
  13939. </member>
  13940. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Katakana">
  13941. <summary>
  13942. IME on with Full-width katakana mode.
  13943. </summary>
  13944. </member>
  13945. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.KatakanaHalf">
  13946. <summary>
  13947. IME on with Half-width katakana mode.
  13948. </summary>
  13949. </member>
  13950. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.AlphaFull">
  13951. <summary>
  13952. IME on with Full-width Alphanumeric mode.
  13953. </summary>
  13954. </member>
  13955. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Alpha">
  13956. <summary>
  13957. IME on with Half-width Alphanumeric mode.
  13958. </summary>
  13959. </member>
  13960. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.HangulFull">
  13961. <summary>
  13962. IME on with Full-width hangul mode.
  13963. </summary>
  13964. </member>
  13965. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Hangul">
  13966. <summary>
  13967. IME on with Half-width hangul mode.
  13968. </summary>
  13969. </member>
  13970. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.HanziFull">
  13971. <summary>
  13972. IME on with Full-width hanzi mode.
  13973. </summary>
  13974. </member>
  13975. <member name="F:Aspose.Cells.Drawing.ActiveXControls.InputMethodEditorMode.Hanzi">
  13976. <summary>
  13977. IME on with Half-width hanzi mode.
  13978. </summary>
  13979. </member>
  13980. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlCaptionAlignmentType">
  13981. <summary>
  13982. Represents the position of the Caption relative to the control.
  13983. </summary>
  13984. </member>
  13985. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlCaptionAlignmentType.Left">
  13986. <summary>
  13987. The left of the control.
  13988. </summary>
  13989. </member>
  13990. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlCaptionAlignmentType.Right">
  13991. <summary>
  13992. The right of the control.
  13993. </summary>
  13994. </member>
  13995. <member name="T:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl">
  13996. <summary>
  13997. Represents a CheckBox ActiveX control.
  13998. </summary>
  13999. </member>
  14000. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Type">
  14001. <summary>
  14002. Gets the type of the ActiveX control.
  14003. </summary>
  14004. </member>
  14005. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.GroupName">
  14006. <summary>
  14007. Gets and sets the group's name.
  14008. </summary>
  14009. </member>
  14010. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Alignment">
  14011. <summary>
  14012. Gets and set the position of the Caption relative to the control.
  14013. </summary>
  14014. </member>
  14015. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.IsWordWrapped">
  14016. <summary>
  14017. Indicates whether the contents of the control automatically wrap at the end of a line.
  14018. </summary>
  14019. </member>
  14020. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Caption">
  14021. <summary>
  14022. Gets and set the descriptive text that appears on a control.
  14023. </summary>
  14024. </member>
  14025. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.PicturePosition">
  14026. <summary>
  14027. Gets and set the location of the control's picture relative to its caption.
  14028. </summary>
  14029. </member>
  14030. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.SpecialEffect">
  14031. <summary>
  14032. Gets and sets the special effect of the control.
  14033. </summary>
  14034. </member>
  14035. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Picture">
  14036. <summary>
  14037. Gets and sets the data of the picture.
  14038. </summary>
  14039. </member>
  14040. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Accelerator">
  14041. <summary>
  14042. Gets and sets the accelerator key for the control.
  14043. </summary>
  14044. </member>
  14045. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.Value">
  14046. <summary>
  14047. Indicates if the control is checked or not.
  14048. </summary>
  14049. </member>
  14050. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CheckBoxActiveXControl.IsTripleState">
  14051. <summary>
  14052. Indicates how the specified control will display Null values.
  14053. </summary>
  14054. <remarks>
  14055. ///<table class="dtTABLE" cellspacing="0"><tr><td><font color="gray"><b>Setting</b></font> </td><td><font color="gray"><b>Description</b></font> </td></tr><tr><td>True</td><td>The control will cycle through states for Yes, No, and Null values. The control appears dimmed (grayed) when its Value property is set to Null.</td></tr><tr><td>False</td><td>(Default) The control will cycle through states for Yes and No values. Null values display as if they were No values.</td></tr></table></remarks>
  14056. </member>
  14057. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl">
  14058. <summary>
  14059. Represents a ComboBox ActiveX control.
  14060. </summary>
  14061. </member>
  14062. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.Type">
  14063. <summary>
  14064. Gets the type of the ActiveX control.
  14065. </summary>
  14066. </member>
  14067. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.MaxLength">
  14068. <summary>
  14069. Gets and sets the maximum number of characters
  14070. </summary>
  14071. </member>
  14072. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ListWidth">
  14073. <summary>
  14074. Gets and set the width in unit of points.
  14075. </summary>
  14076. </member>
  14077. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.BoundColumn">
  14078. <summary>
  14079. Represents how the Value property is determined for a ComboBox or ListBox
  14080. when the MultiSelect properties value (fmMultiSelectSingle).
  14081. </summary>
  14082. </member>
  14083. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.TextColumn">
  14084. <summary>
  14085. Represents the column in a ComboBox or ListBox to display to the user.
  14086. </summary>
  14087. </member>
  14088. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ColumnCount">
  14089. <summary>
  14090. Represents the number of columns to display in a ComboBox or ListBox.
  14091. </summary>
  14092. </member>
  14093. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ListRows">
  14094. <summary>
  14095. Represents the maximum number of rows to display in the list.
  14096. </summary>
  14097. </member>
  14098. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.MatchEntry">
  14099. <summary>
  14100. Indicates how a ListBox or ComboBox searches its list as the user types.
  14101. </summary>
  14102. </member>
  14103. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.DropButtonStyle">
  14104. <summary>
  14105. Specifies the symbol displayed on the drop button
  14106. </summary>
  14107. </member>
  14108. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ShowDropButtonTypeWhen">
  14109. <summary>
  14110. Specifies the symbol displayed on the drop button
  14111. </summary>
  14112. </member>
  14113. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ListStyle">
  14114. <summary>
  14115. Gets and sets the visual appearance.
  14116. </summary>
  14117. </member>
  14118. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.BorderStyle">
  14119. <summary>
  14120. Gets and set the type of border used by the control.
  14121. </summary>
  14122. </member>
  14123. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.BorderOleColor">
  14124. <summary>
  14125. Gets and sets the ole color of the background.
  14126. </summary>
  14127. </member>
  14128. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.SpecialEffect">
  14129. <summary>
  14130. Gets and sets the special effect of the control.
  14131. </summary>
  14132. </member>
  14133. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.IsEditable">
  14134. <summary>
  14135. Indicates whether the user can type into the control.
  14136. </summary>
  14137. </member>
  14138. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ShowColumnHeads">
  14139. <summary>
  14140. Indicates whether column headings are displayed.
  14141. </summary>
  14142. </member>
  14143. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.IsDragBehaviorEnabled">
  14144. <summary>
  14145. Indicates whether dragging and dropping is enabled for the control.
  14146. </summary>
  14147. </member>
  14148. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.EnterFieldBehavior">
  14149. <summary>
  14150. Specifies selection behavior when entering the control.
  14151. True specifies that the selection remains unchanged from last time the control was active.
  14152. False specifies that all the text in the control will be selected when entering the control.
  14153. </summary>
  14154. </member>
  14155. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.IsAutoWordSelected">
  14156. <summary>
  14157. Specifies the basic unit used to extend a selection.
  14158. True specifies that the basic unit is a single character.
  14159. false specifies that the basic unit is a whole word.
  14160. </summary>
  14161. </member>
  14162. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.SelectionMargin">
  14163. <summary>
  14164. Indicates whether the user can select a line of text by clicking in the region to the left of the text.
  14165. </summary>
  14166. </member>
  14167. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.Value">
  14168. <summary>
  14169. Gets and sets the value of the control.
  14170. </summary>
  14171. </member>
  14172. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.HideSelection">
  14173. <summary>
  14174. Indicates whether selected text in the control appears highlighted when the control does not have focus.
  14175. </summary>
  14176. </member>
  14177. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ComboBoxActiveXControl.ColumnWidths">
  14178. <summary>
  14179. Gets and sets the width of the column.
  14180. </summary>
  14181. </member>
  14182. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlType">
  14183. <summary>
  14184. Represents all type of ActiveX control.
  14185. </summary>
  14186. </member>
  14187. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.CommandButton">
  14188. <summary>
  14189. Button
  14190. </summary>
  14191. </member>
  14192. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.ComboBox">
  14193. <summary>
  14194. ComboBox
  14195. </summary>
  14196. </member>
  14197. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.CheckBox">
  14198. <summary>
  14199. CheckBox
  14200. </summary>
  14201. </member>
  14202. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.ListBox">
  14203. <summary>
  14204. ListBox
  14205. </summary>
  14206. </member>
  14207. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.TextBox">
  14208. <summary>
  14209. TextBox
  14210. </summary>
  14211. </member>
  14212. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.SpinButton">
  14213. <summary>
  14214. Spinner
  14215. </summary>
  14216. </member>
  14217. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.RadioButton">
  14218. <summary>
  14219. RadioButton
  14220. </summary>
  14221. </member>
  14222. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.Label">
  14223. <summary>
  14224. Label
  14225. </summary>
  14226. </member>
  14227. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.Image">
  14228. <summary>
  14229. Image
  14230. </summary>
  14231. </member>
  14232. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.ToggleButton">
  14233. <summary>
  14234. ToggleButton
  14235. </summary>
  14236. </member>
  14237. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.ScrollBar">
  14238. <summary>
  14239. ScrollBar
  14240. </summary>
  14241. </member>
  14242. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlType.Unknown">
  14243. <summary>
  14244. Unknown
  14245. </summary>
  14246. </member>
  14247. <member name="T:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl">
  14248. <summary>
  14249. Represents a command button.
  14250. </summary>
  14251. </member>
  14252. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.Type">
  14253. <summary>
  14254. Gets the type of the ActiveX control.
  14255. </summary>
  14256. </member>
  14257. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.Caption">
  14258. <summary>
  14259. Gets and set the descriptive text that appears on a control.
  14260. </summary>
  14261. </member>
  14262. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.PicturePosition">
  14263. <summary>
  14264. Gets and set the location of the control's picture relative to its caption.
  14265. </summary>
  14266. </member>
  14267. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.Picture">
  14268. <summary>
  14269. Gets and sets the data of the picture.
  14270. </summary>
  14271. </member>
  14272. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.Accelerator">
  14273. <summary>
  14274. Gets and sets the accelerator key for the control.
  14275. </summary>
  14276. </member>
  14277. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.TakeFocusOnClick">
  14278. <summary>
  14279. Indicates whether the control takes the focus when clicked.
  14280. </summary>
  14281. </member>
  14282. <member name="P:Aspose.Cells.Drawing.ActiveXControls.CommandButtonActiveXControl.IsWordWrapped">
  14283. <summary>
  14284. Indicates whether the contents of the control automatically wrap at the end of a line.
  14285. </summary>
  14286. </member>
  14287. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl">
  14288. <summary>
  14289. Represents the image control.
  14290. </summary>
  14291. </member>
  14292. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.Type">
  14293. <summary>
  14294. Gets the type of the ActiveX control.
  14295. </summary>
  14296. </member>
  14297. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.IsAutoSize">
  14298. <summary>
  14299. Indicates whether the control will automatically resize to display its entire contents.
  14300. </summary>
  14301. </member>
  14302. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.BorderOleColor">
  14303. <summary>
  14304. Gets and sets the ole color of the background.
  14305. </summary>
  14306. </member>
  14307. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.BorderStyle">
  14308. <summary>
  14309. Gets and set the type of border used by the control.
  14310. </summary>
  14311. </member>
  14312. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.PictureSizeMode">
  14313. <summary>
  14314. Gets and sets how to display the picture.
  14315. </summary>
  14316. </member>
  14317. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.SpecialEffect">
  14318. <summary>
  14319. Gets and sets the special effect of the control.
  14320. </summary>
  14321. </member>
  14322. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.Picture">
  14323. <summary>
  14324. Gets and sets the data of the picture.
  14325. </summary>
  14326. </member>
  14327. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.PictureAlignment">
  14328. <summary>
  14329. Gets and sets the alignment of the picture inside the Form or Image.
  14330. </summary>
  14331. </member>
  14332. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ImageActiveXControl.IsTiled">
  14333. <summary>
  14334. Indicates whether the picture is tiled across the background.
  14335. </summary>
  14336. </member>
  14337. <member name="T:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl">
  14338. <summary>
  14339. Represents the label ActiveX control.
  14340. </summary>
  14341. </member>
  14342. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.Type">
  14343. <summary>
  14344. Gets the type of the ActiveX control.
  14345. </summary>
  14346. </member>
  14347. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.Caption">
  14348. <summary>
  14349. Gets and set the descriptive text that appears on a control.
  14350. </summary>
  14351. </member>
  14352. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.PicturePosition">
  14353. <summary>
  14354. Gets and set the location of the control's picture relative to its caption.
  14355. </summary>
  14356. </member>
  14357. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.BorderOleColor">
  14358. <summary>
  14359. Gets and sets the ole color of the background.
  14360. </summary>
  14361. </member>
  14362. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.BorderStyle">
  14363. <summary>
  14364. Gets and set the type of border used by the control.
  14365. </summary>
  14366. </member>
  14367. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.SpecialEffect">
  14368. <summary>
  14369. Gets and sets the special effect of the control.
  14370. </summary>
  14371. </member>
  14372. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.Picture">
  14373. <summary>
  14374. Gets and sets the data of the picture.
  14375. </summary>
  14376. </member>
  14377. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.Accelerator">
  14378. <summary>
  14379. Gets and sets the accelerator key for the control.
  14380. </summary>
  14381. </member>
  14382. <member name="P:Aspose.Cells.Drawing.ActiveXControls.LabelActiveXControl.IsWordWrapped">
  14383. <summary>
  14384. Indicates whether the contents of the control automatically wrap at the end of a line.
  14385. </summary>
  14386. </member>
  14387. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl">
  14388. <summary>
  14389. Represents a ListBox ActiveX control.
  14390. </summary>
  14391. </member>
  14392. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.Type">
  14393. <summary>
  14394. Gets the type of the ActiveX control.
  14395. </summary>
  14396. </member>
  14397. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ScrollBars">
  14398. <summary>
  14399. Indicates specifies whether the control has vertical scroll bars, horizontal scroll bars, both, or neither.
  14400. </summary>
  14401. </member>
  14402. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ListWidth">
  14403. <summary>
  14404. Gets and set the width in unit of points.
  14405. </summary>
  14406. </member>
  14407. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.BoundColumn">
  14408. <summary>
  14409. Represents how the Value property is determined for a ComboBox or ListBox
  14410. when the MultiSelect properties value (fmMultiSelectSingle).
  14411. </summary>
  14412. </member>
  14413. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.TextColumn">
  14414. <summary>
  14415. Represents the column in a ComboBox or ListBox to display to the user.
  14416. </summary>
  14417. </member>
  14418. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ColumnCount">
  14419. <summary>
  14420. Represents the number of columns to display in a ComboBox or ListBox.
  14421. </summary>
  14422. </member>
  14423. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.MatchEntry">
  14424. <summary>
  14425. Indicates how a ListBox or ComboBox searches its list as the user types.
  14426. </summary>
  14427. </member>
  14428. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ListStyle">
  14429. <summary>
  14430. Gets and sets the visual appearance.
  14431. </summary>
  14432. </member>
  14433. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.SelectionType">
  14434. <summary>
  14435. Indicates whether the control permits multiple selections.
  14436. </summary>
  14437. </member>
  14438. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.Value">
  14439. <summary>
  14440. Gets and sets the value of the control.
  14441. </summary>
  14442. <remarks>
  14443. Only effects when <see cref="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.SelectionType" /> is SelectionType.Single;
  14444. </remarks>
  14445. </member>
  14446. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.BorderStyle">
  14447. <summary>
  14448. Gets and set the type of border used by the control.
  14449. </summary>
  14450. </member>
  14451. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.BorderOleColor">
  14452. <summary>
  14453. Gets and sets the ole color of the background.
  14454. </summary>
  14455. </member>
  14456. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.SpecialEffect">
  14457. <summary>
  14458. Gets and sets the special effect of the control.
  14459. </summary>
  14460. </member>
  14461. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ShowColumnHeads">
  14462. <summary>
  14463. Indicates whether column headings are displayed.
  14464. </summary>
  14465. </member>
  14466. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.IntegralHeight">
  14467. <summary>
  14468. Indicates whether the control will only show complete lines of text without showing any partial lines.
  14469. </summary>
  14470. </member>
  14471. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ListBoxActiveXControl.ColumnWidths">
  14472. <summary>
  14473. Gets and sets the width of the column.
  14474. </summary>
  14475. </member>
  14476. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlListStyle">
  14477. <summary>
  14478. Represents the visual appearance of the list in a ListBox or ComboBox.
  14479. </summary>
  14480. </member>
  14481. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlListStyle.Plain">
  14482. <summary>
  14483. Displays a list in which the background of an item is highlighted when it is selected.
  14484. </summary>
  14485. </member>
  14486. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlListStyle.Option">
  14487. <summary>
  14488. Displays a list in which an option button or a checkbox next to each entry displays the selection state of that item.
  14489. </summary>
  14490. </member>
  14491. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlMatchEntryType">
  14492. <summary>
  14493. Represents how a ListBox or ComboBox searches its list as the user types.
  14494. </summary>
  14495. </member>
  14496. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMatchEntryType.FirstLetter">
  14497. <summary>
  14498. The control searches for the next entry that starts with the character entered.
  14499. Repeatedly typing the same letter cycles through all entries beginning with that letter.
  14500. </summary>
  14501. </member>
  14502. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMatchEntryType.Complete">
  14503. <summary>
  14504. As each character is typed, the control searches for an entry matching all characters entered.
  14505. </summary>
  14506. </member>
  14507. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMatchEntryType.None">
  14508. <summary>
  14509. The list will not be searched when characters are typed.
  14510. </summary>
  14511. </member>
  14512. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType">
  14513. <summary>
  14514. Represents the type of icon displayed as the mouse pointer for the control.
  14515. </summary>
  14516. </member>
  14517. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.Default">
  14518. <summary>
  14519. Standard pointer.
  14520. </summary>
  14521. </member>
  14522. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.Arrow">
  14523. <summary>
  14524. Arrow.
  14525. </summary>
  14526. </member>
  14527. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.Cross">
  14528. <summary>
  14529. Cross-hair pointer.
  14530. </summary>
  14531. </member>
  14532. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.IBeam">
  14533. <summary>
  14534. I-beam.
  14535. </summary>
  14536. </member>
  14537. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.SizeNESW">
  14538. <summary>
  14539. Double arrow pointing northeast and southwest.
  14540. </summary>
  14541. </member>
  14542. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.SizeNS">
  14543. <summary>
  14544. Double arrow pointing north and south.
  14545. </summary>
  14546. </member>
  14547. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.SizeNWSE">
  14548. <summary>
  14549. Double arrow pointing northwest and southeast.
  14550. </summary>
  14551. </member>
  14552. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.SizeWE">
  14553. <summary>
  14554. Double arrow pointing west and east.
  14555. </summary>
  14556. </member>
  14557. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.UpArrow">
  14558. <summary>
  14559. Up arrow.
  14560. </summary>
  14561. </member>
  14562. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.HourGlass">
  14563. <summary>
  14564. Hourglass.
  14565. </summary>
  14566. </member>
  14567. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.NoDrop">
  14568. <summary>
  14569. "Not” symbol (circle with a diagonal line) on top of the object being dragged.
  14570. </summary>
  14571. </member>
  14572. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.AppStarting">
  14573. <summary>
  14574. Arrow with an hourglass.
  14575. </summary>
  14576. </member>
  14577. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.Help">
  14578. <summary>
  14579. Arrow with a question mark.
  14580. </summary>
  14581. </member>
  14582. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.SizeAll">
  14583. <summary>
  14584. "Size-all” cursor (arrows pointing north, south, east, and west).
  14585. </summary>
  14586. </member>
  14587. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlMousePointerType.Custom">
  14588. <summary>
  14589. Uses the icon specified by the MouseIcon property.
  14590. </summary>
  14591. </member>
  14592. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType">
  14593. <summary>
  14594. Represents the alignment of the picture inside the Form or Image.
  14595. </summary>
  14596. </member>
  14597. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType.TopLeft">
  14598. <summary>
  14599. The top left corner.
  14600. </summary>
  14601. </member>
  14602. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType.TopRight">
  14603. <summary>
  14604. The top right corner.
  14605. </summary>
  14606. </member>
  14607. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType.Center">
  14608. <summary>
  14609. The center.
  14610. </summary>
  14611. </member>
  14612. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType.BottomLeft">
  14613. <summary>
  14614. The bottom left corner.
  14615. </summary>
  14616. </member>
  14617. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureAlignmentType.BottomRight">
  14618. <summary>
  14619. The bottom right corner.
  14620. </summary>
  14621. </member>
  14622. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType">
  14623. <summary>
  14624. Represents the location of the control's picture relative to its caption.
  14625. </summary>
  14626. </member>
  14627. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.LeftTop">
  14628. <summary>
  14629. The picture appears to the left of the caption.
  14630. The caption is aligned with the top of the picture.
  14631. </summary>
  14632. </member>
  14633. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.LeftCenter">
  14634. <summary>
  14635. The picture appears to the left of the caption.
  14636. The caption is centered relative to the picture.
  14637. </summary>
  14638. </member>
  14639. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.LeftBottom">
  14640. <summary>
  14641. The picture appears to the left of the caption.
  14642. The caption is aligned with the bottom of the picture.
  14643. </summary>
  14644. </member>
  14645. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.RightTop">
  14646. <summary>
  14647. The picture appears to the right of the caption.
  14648. The caption is aligned with the top of the picture.
  14649. </summary>
  14650. </member>
  14651. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.RightCenter">
  14652. <summary>
  14653. The picture appears to the right of the caption.
  14654. The caption is centered relative to the picture.
  14655. </summary>
  14656. </member>
  14657. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.RightBottom">
  14658. <summary>
  14659. The picture appears to the right of the caption.
  14660. The caption is aligned with the bottom of the picture.
  14661. </summary>
  14662. </member>
  14663. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.AboveLeft">
  14664. <summary>
  14665. The picture appears above the caption.
  14666. The caption is aligned with the left edge of the picture.
  14667. </summary>
  14668. </member>
  14669. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.AboveCenter">
  14670. <summary>
  14671. The picture appears above the caption.
  14672. The caption is centered below the picture.
  14673. </summary>
  14674. </member>
  14675. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.AboveRight">
  14676. <summary>
  14677. The picture appears above the caption.
  14678. The caption is aligned with the right edge of the picture.
  14679. </summary>
  14680. </member>
  14681. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.BelowLeft">
  14682. <summary>
  14683. The picture appears below the caption.
  14684. The caption is aligned with the left edge of the picture.
  14685. </summary>
  14686. </member>
  14687. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.BelowCenter">
  14688. <summary>
  14689. The picture appears below the caption.
  14690. The caption is centered above the picture.
  14691. </summary>
  14692. </member>
  14693. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.BelowRight">
  14694. <summary>
  14695. The picture appears below the caption.
  14696. The caption is aligned with the right edge of the picture.
  14697. </summary>
  14698. </member>
  14699. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPicturePositionType.Center">
  14700. <summary>
  14701. The picture appears in the center of the control.
  14702. The caption is centered horizontally and vertically on top of the picture.
  14703. </summary>
  14704. </member>
  14705. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlPictureSizeMode">
  14706. <summary>
  14707. Represents how to display the picture.
  14708. </summary>
  14709. </member>
  14710. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureSizeMode.Clip">
  14711. <summary>
  14712. Crops any part of the picture that is larger than the control's boundaries.
  14713. </summary>
  14714. </member>
  14715. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureSizeMode.Stretch">
  14716. <summary>
  14717. Stretches the picture to fill the control's area.
  14718. This setting distorts the picture in either the horizontal or vertical direction.
  14719. </summary>
  14720. </member>
  14721. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlPictureSizeMode.Zoom">
  14722. <summary>
  14723. Enlarges the picture, but does not distort the picture in either the horizontal or vertical direction.
  14724. </summary>
  14725. </member>
  14726. <member name="T:Aspose.Cells.Drawing.ActiveXControls.RadioButtonActiveXControl">
  14727. <summary>
  14728. Represents a RadioButton ActiveX control.
  14729. </summary>
  14730. </member>
  14731. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl">
  14732. <summary>
  14733. Represents a ToggleButton ActiveX control.
  14734. </summary>
  14735. </member>
  14736. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.Type">
  14737. <summary>
  14738. Gets the type of the ActiveX control.
  14739. </summary>
  14740. </member>
  14741. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.Caption">
  14742. <summary>
  14743. Gets and set the descriptive text that appears on a control.
  14744. </summary>
  14745. </member>
  14746. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.PicturePosition">
  14747. <summary>
  14748. Gets and set the location of the control's picture relative to its caption.
  14749. </summary>
  14750. </member>
  14751. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.SpecialEffect">
  14752. <summary>
  14753. Gets and sets the special effect of the control.
  14754. </summary>
  14755. </member>
  14756. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.Picture">
  14757. <summary>
  14758. Gets and sets the data of the picture.
  14759. </summary>
  14760. </member>
  14761. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.Accelerator">
  14762. <summary>
  14763. Gets and sets the accelerator key for the control.
  14764. </summary>
  14765. </member>
  14766. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.Value">
  14767. <summary>
  14768. Indicates if the control is checked or not.
  14769. </summary>
  14770. </member>
  14771. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ToggleButtonActiveXControl.IsTripleState">
  14772. <summary>
  14773. Indicates how the specified control will display Null values.
  14774. </summary>
  14775. <remarks>
  14776. ///<table class="dtTABLE" cellspacing="0"><tr><td><font color="gray"><b>Setting</b></font> </td><td><font color="gray"><b>Description</b></font> </td></tr><tr><td>True</td><td>The control will cycle through states for Yes, No, and Null values. The control appears dimmed (grayed) when its Value property is set to Null.</td></tr><tr><td>False</td><td>(Default) The control will cycle through states for Yes and No values. Null values display as if they were No values.</td></tr></table></remarks>
  14777. </member>
  14778. <member name="P:Aspose.Cells.Drawing.ActiveXControls.RadioButtonActiveXControl.Type">
  14779. <summary>
  14780. Gets the type of the ActiveX control.
  14781. </summary>
  14782. </member>
  14783. <member name="P:Aspose.Cells.Drawing.ActiveXControls.RadioButtonActiveXControl.GroupName">
  14784. <summary>
  14785. Gets and sets the group's name.
  14786. </summary>
  14787. </member>
  14788. <member name="P:Aspose.Cells.Drawing.ActiveXControls.RadioButtonActiveXControl.Alignment">
  14789. <summary>
  14790. Gets and set the position of the Caption relative to the control.
  14791. </summary>
  14792. </member>
  14793. <member name="P:Aspose.Cells.Drawing.ActiveXControls.RadioButtonActiveXControl.IsWordWrapped">
  14794. <summary>
  14795. Indicates whether the contents of the control automatically wrap at the end of a line.
  14796. </summary>
  14797. </member>
  14798. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ScrollBarActiveXControl">
  14799. <summary>
  14800. Represents the ScrollBar control.
  14801. </summary>
  14802. </member>
  14803. <member name="T:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl">
  14804. <summary>
  14805. Represents the SpinButton control.
  14806. </summary>
  14807. </member>
  14808. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.Type">
  14809. <summary>
  14810. Gets the type of the ActiveX control.
  14811. </summary>
  14812. </member>
  14813. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.Min">
  14814. <summary>
  14815. Gets and sets the minimum acceptable value.
  14816. </summary>
  14817. </member>
  14818. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.Max">
  14819. <summary>
  14820. Gets and sets the maximum acceptable value.
  14821. </summary>
  14822. </member>
  14823. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.Position">
  14824. <summary>
  14825. Gets and sets the value.
  14826. </summary>
  14827. </member>
  14828. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.SmallChange">
  14829. <summary>
  14830. Gets and sets the amount by which the Position property changes
  14831. </summary>
  14832. </member>
  14833. <member name="P:Aspose.Cells.Drawing.ActiveXControls.SpinButtonActiveXControl.Orientation">
  14834. <summary>
  14835. Gets and sets whether the SpinButton or ScrollBar is oriented vertically or horizontally.
  14836. </summary>
  14837. </member>
  14838. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ScrollBarActiveXControl.Type">
  14839. <summary>
  14840. Gets the type of the ActiveX control.
  14841. </summary>
  14842. </member>
  14843. <member name="P:Aspose.Cells.Drawing.ActiveXControls.ScrollBarActiveXControl.LargeChange">
  14844. <summary>
  14845. Gets and sets the amount by which the Position property changes
  14846. </summary>
  14847. </member>
  14848. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlScrollBarType">
  14849. <summary>
  14850. Represents the type of scroll bar.
  14851. </summary>
  14852. </member>
  14853. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollBarType.None">
  14854. <summary>
  14855. Displays no scroll bars.
  14856. </summary>
  14857. </member>
  14858. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollBarType.Horizontal">
  14859. <summary>
  14860. Displays a horizontal scroll bar.
  14861. </summary>
  14862. </member>
  14863. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollBarType.BarsVertical">
  14864. <summary>
  14865. Displays a vertical scroll bar.
  14866. </summary>
  14867. </member>
  14868. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollBarType.BarsBoth">
  14869. <summary>
  14870. Displays both a horizontal and a vertical scroll bar.
  14871. </summary>
  14872. </member>
  14873. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation">
  14874. <summary>
  14875. Represents type of scroll orientation
  14876. </summary>
  14877. </member>
  14878. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation.Auto">
  14879. <summary>
  14880. Control is rendered horizontally when the control's width is greater than its height.
  14881. Control is rendered vertically otherwise.
  14882. </summary>
  14883. </member>
  14884. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation.Vertical">
  14885. <summary>
  14886. Control is rendered vertically.
  14887. </summary>
  14888. </member>
  14889. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation.Horizontal">
  14890. <summary>
  14891. Control is rendered horizontally.
  14892. </summary>
  14893. </member>
  14894. <member name="T:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType">
  14895. <summary>
  14896. Represents the type of special effect.
  14897. </summary>
  14898. </member>
  14899. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType.Flat">
  14900. <summary>
  14901. Flat
  14902. </summary>
  14903. </member>
  14904. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType.Raised">
  14905. <summary>
  14906. Raised
  14907. </summary>
  14908. </member>
  14909. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType.Sunken">
  14910. <summary>
  14911. Sunken
  14912. </summary>
  14913. </member>
  14914. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType.Etched">
  14915. <summary>
  14916. Etched
  14917. </summary>
  14918. </member>
  14919. <member name="F:Aspose.Cells.Drawing.ActiveXControls.ControlSpecialEffectType.Bump">
  14920. <summary>
  14921. Bump
  14922. </summary>
  14923. </member>
  14924. <member name="T:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl">
  14925. <summary>
  14926. Represents a text box ActiveX control.
  14927. </summary>
  14928. </member>
  14929. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.Type">
  14930. <summary>
  14931. Gets the type of the ActiveX control.
  14932. </summary>
  14933. </member>
  14934. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.BorderStyle">
  14935. <summary>
  14936. Gets and set the type of border used by the control.
  14937. </summary>
  14938. </member>
  14939. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.BorderOleColor">
  14940. <summary>
  14941. Gets and sets the ole color of the background.
  14942. </summary>
  14943. </member>
  14944. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.SpecialEffect">
  14945. <summary>
  14946. Gets and sets the special effect of the control.
  14947. </summary>
  14948. </member>
  14949. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.MaxLength">
  14950. <summary>
  14951. Gets and sets the maximum number of characters
  14952. </summary>
  14953. </member>
  14954. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.ScrollBars">
  14955. <summary>
  14956. Indicates specifies whether the control has vertical scroll bars, horizontal scroll bars, both, or neither.
  14957. </summary>
  14958. </member>
  14959. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.PasswordChar">
  14960. <summary>
  14961. Gets and sets a character to be displayed in place of the characters entered.
  14962. </summary>
  14963. </member>
  14964. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsEditable">
  14965. <summary>
  14966. Indicates whether the user can type into the control.
  14967. </summary>
  14968. </member>
  14969. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IntegralHeight">
  14970. <summary>
  14971. Indicates whether the control will only show complete lines of text without showing any partial lines.
  14972. </summary>
  14973. </member>
  14974. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsDragBehaviorEnabled">
  14975. <summary>
  14976. Indicates whether dragging and dropping is enabled for the control.
  14977. </summary>
  14978. </member>
  14979. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.EnterKeyBehavior">
  14980. <summary>
  14981. Specifies the behavior of the ENTER key.
  14982. True specifies that pressing ENTER will create a new line.
  14983. False specifies that pressing ENTER will move the focus to the next object in the tab order.
  14984. </summary>
  14985. </member>
  14986. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.EnterFieldBehavior">
  14987. <summary>
  14988. Specifies selection behavior when entering the control.
  14989. True specifies that the selection remains unchanged from last time the control was active.
  14990. False specifies that all the text in the control will be selected when entering the control.
  14991. </summary>
  14992. </member>
  14993. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.TabKeyBehavior">
  14994. <summary>
  14995. Indicates whether tab characters are allowed in the text of the control.
  14996. </summary>
  14997. </member>
  14998. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.HideSelection">
  14999. <summary>
  15000. Indicates whether selected text in the control appears highlighted when the control does not have focus.
  15001. </summary>
  15002. </member>
  15003. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsAutoTab">
  15004. <summary>
  15005. Indicates whether the focus will automatically move to the next control when the user enters the maximum number of characters.
  15006. </summary>
  15007. </member>
  15008. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsMultiLine">
  15009. <summary>
  15010. Indicates whether the control can display more than one line of text.
  15011. </summary>
  15012. </member>
  15013. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsAutoWordSelected">
  15014. <summary>
  15015. Specifies the basic unit used to extend a selection.
  15016. True specifies that the basic unit is a single character.
  15017. false specifies that the basic unit is a whole word.
  15018. </summary>
  15019. </member>
  15020. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.IsWordWrapped">
  15021. <summary>
  15022. Indicates whether the contents of the control automatically wrap at the end of a line.
  15023. </summary>
  15024. </member>
  15025. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.Text">
  15026. <summary>
  15027. Gets and set text of the control.
  15028. </summary>
  15029. </member>
  15030. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.DropButtonStyle">
  15031. <summary>
  15032. Specifies the symbol displayed on the drop button
  15033. </summary>
  15034. </member>
  15035. <member name="P:Aspose.Cells.Drawing.ActiveXControls.TextBoxActiveXControl.ShowDropButtonTypeWhen">
  15036. <summary>
  15037. Specifies the symbol displayed on the drop button
  15038. </summary>
  15039. </member>
  15040. <member name="T:Aspose.Cells.Drawing.ActiveXControls.UnknownControl">
  15041. <summary>
  15042. Unknow control.
  15043. </summary>
  15044. </member>
  15045. <member name="M:Aspose.Cells.Drawing.ActiveXControls.UnknownControl.GetRelationshipData(System.String)">
  15046. <summary>
  15047. Gets the related data.
  15048. </summary>
  15049. <param name="relId">The relationship id.</param>
  15050. <returns>Returns the related data.</returns>
  15051. </member>
  15052. <member name="P:Aspose.Cells.Drawing.ActiveXControls.UnknownControl.PersistenceType">
  15053. <summary>
  15054. Gets the persistence method to persist an ActiveX control.
  15055. </summary>
  15056. </member>
  15057. <member name="P:Aspose.Cells.Drawing.ActiveXControls.UnknownControl.Data">
  15058. <summary>
  15059. Gets and sets the binary data of the control.
  15060. </summary>
  15061. </member>
  15062. <member name="P:Aspose.Cells.Drawing.ActiveXControls.UnknownControl.Type">
  15063. <summary>
  15064. Gets the type of the ActiveX control.
  15065. </summary>
  15066. </member>
  15067. <member name="T:Aspose.Cells.Drawing.ColorHelper">
  15068. <summary>
  15069. Provides helper functions about color.
  15070. </summary>
  15071. </member>
  15072. <member name="M:Aspose.Cells.Drawing.ColorHelper.FromOleColor(System.Int32)">
  15073. <summary>
  15074. Convert OLE_COLOR.
  15075. </summary>
  15076. <param name="oleColor">The value of OLE_COLOR.</param>
  15077. <returns>The <see cref="T:System.Drawing.Color" /> object.</returns>
  15078. </member>
  15079. <member name="M:Aspose.Cells.Drawing.ColorHelper.ToOleColor(System.Drawing.Color,Aspose.Cells.Workbook)">
  15080. <summary>
  15081. Convert color to OLE_COLOR
  15082. </summary>
  15083. <param name="color">The <see cref="T:System.Drawing.Color" /> object.</param>
  15084. <param name="workbook">
  15085. </param>
  15086. <returns>The value of OLE_COLOR</returns>
  15087. </member>
  15088. <member name="T:Aspose.Cells.CalculationPrecisionStrategy">
  15089. <summary>
  15090. Enumerates strategies for handling calculation precision.
  15091. Because of the precision issue of IEEE 754 Floating-Point Arithmetic, some "seemingly simple" formulas may not be calculated as the expected result.
  15092. Such as formula "=-0.45+0.43+0.02", when calculating operands by '+' operator directly, the result is not zero. For such kind of precision issue,
  15093. some special strategies may give the expected result.
  15094. </summary>
  15095. </member>
  15096. <member name="F:Aspose.Cells.CalculationPrecisionStrategy.None">
  15097. <summary>
  15098. No strategy applied on calculation.
  15099. When calculating just use the original double value as operand and return the result directly.
  15100. Most efficient for performance and applicable for most cases.
  15101. </summary>
  15102. </member>
  15103. <member name="F:Aspose.Cells.CalculationPrecisionStrategy.Round">
  15104. <summary>
  15105. Rounds the calculation result according with significant digits.
  15106. </summary>
  15107. </member>
  15108. <member name="F:Aspose.Cells.CalculationPrecisionStrategy.Decimal">
  15109. <summary>
  15110. Uses decimal as operands when possible.
  15111. Most inefficient for performance.
  15112. </summary>
  15113. </member>
  15114. <member name="T:Aspose.Cells.CalculationOptions">
  15115. <summary>
  15116. Represents options for calculation.
  15117. </summary>
  15118. </member>
  15119. <member name="P:Aspose.Cells.CalculationOptions.IgnoreError">
  15120. <summary>
  15121. Indicates if you need to hide the error in calculating formulas.
  15122. The error may be unsupported function, external links, etc.
  15123. </summary>
  15124. </member>
  15125. <member name="P:Aspose.Cells.CalculationOptions.CustomFunction">
  15126. <summary>
  15127. The custom formula calculation functions to extend the calculation engine.
  15128. </summary>
  15129. <remarks>
  15130. NOTE: This member is now obsolete. Instead,
  15131. please use CustomEngine property, AbstractCalculationEngine provides more convenient and flexible APIs
  15132. for manipulating custom functions.
  15133. This property will be removed 12 months later since August 2020.
  15134. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  15135. </member>
  15136. <member name="P:Aspose.Cells.CalculationOptions.CustomEngine">
  15137. <summary>
  15138. The custom formula calculation engine to extend the default calculation engine of Aspose.Cells.
  15139. </summary>
  15140. </member>
  15141. <member name="P:Aspose.Cells.CalculationOptions.CalculationMonitor">
  15142. <summary>
  15143. The monitor for user to track the progress of formula calculation.
  15144. </summary>
  15145. </member>
  15146. <member name="P:Aspose.Cells.CalculationOptions.CalcStackSize">
  15147. <summary>
  15148. Specifies the stack size for calculating cells recursively.
  15149. -1 for this property means the calculation will use WorkbookSettings.CalcStackSize of corresponding workbook.
  15150. </summary>
  15151. <see cref="P:Aspose.Cells.WorkbookSettings.CalcStackSize" />
  15152. </member>
  15153. <member name="P:Aspose.Cells.CalculationOptions.PrecisionStrategy">
  15154. <summary>
  15155. Specifies the strategy for processing precision of calculation.
  15156. </summary>
  15157. </member>
  15158. <member name="P:Aspose.Cells.CalculationOptions.Recursive">
  15159. <summary>
  15160. Indicates whether calculate the dependent cells recursively when calculating one cell and it depends on other cells.
  15161. </summary>
  15162. </member>
  15163. <member name="T:Aspose.Cells.Markup.CustomXmlPart">
  15164. <summary>
  15165. Represents a Custom XML Data Storage Part (custom XML data within a package).
  15166. </summary>
  15167. </member>
  15168. <member name="P:Aspose.Cells.Markup.CustomXmlPart.Data">
  15169. <summary>
  15170. Gets or sets the XML content of this Custom XML Data Storage Part.
  15171. </summary>
  15172. </member>
  15173. <member name="P:Aspose.Cells.Markup.CustomXmlPart.SchemaData">
  15174. <summary>
  15175. Gets or sets the XML content of this Custom XML Schema Data Storage Part.
  15176. </summary>
  15177. </member>
  15178. <member name="P:Aspose.Cells.Markup.CustomXmlPart.ID">
  15179. <summary>
  15180. Gets and sets the id of the custom xml part.
  15181. </summary>
  15182. </member>
  15183. <member name="T:Aspose.Cells.Markup.CustomXmlPartCollection">
  15184. <summary>
  15185. Represents a Custom XML Data Storage Part (custom XML data within a package).
  15186. </summary>
  15187. </member>
  15188. <member name="M:Aspose.Cells.Markup.CustomXmlPartCollection.Add(System.Byte[],System.Byte[])">
  15189. <summary>
  15190. Adds an item to the collection.
  15191. </summary>
  15192. <param name="data">The XML content of this Custom XML Data Storage Part. </param>
  15193. <param name="shemaData">The set of XML schemas that are associated with this custom XML part. </param>
  15194. <returns>
  15195. </returns>
  15196. </member>
  15197. <member name="M:Aspose.Cells.Markup.CustomXmlPartCollection.SelectByID(System.String)">
  15198. <summary>
  15199. Gets an item by id.
  15200. </summary>
  15201. <param name="id">Contains the GUID for the custom XML part.</param>
  15202. <returns>
  15203. </returns>
  15204. </member>
  15205. <member name="P:Aspose.Cells.Markup.CustomXmlPartCollection.Item(System.Int32)">
  15206. <summary>
  15207. Gets an item at the specified index.
  15208. </summary>
  15209. <param name="index">The index.</param>
  15210. <returns>
  15211. </returns>
  15212. </member>
  15213. <member name="T:Aspose.Cells.Drawing.AutomaticFill">
  15214. <summary>
  15215. represents automatic fill.
  15216. </summary>
  15217. </member>
  15218. <member name="T:Aspose.Cells.Drawing.Fill">
  15219. <summary>
  15220. Represents the fill format of the shape.
  15221. </summary>
  15222. </member>
  15223. <member name="T:Aspose.Cells.Drawing.GroupFill">
  15224. <summary>
  15225. Represents this fill format should inherit the fill properties of the group.
  15226. </summary>
  15227. </member>
  15228. <member name="T:Aspose.Cells.Drawing.NoneFill">
  15229. <summary>
  15230. Represents no fill.
  15231. </summary>
  15232. </member>
  15233. <member name="T:Aspose.Cells.Drawing.SignatureLine">
  15234. <summary>
  15235. Represent the signature line.
  15236. </summary>
  15237. </member>
  15238. <member name="P:Aspose.Cells.Drawing.SignatureLine.ProviderId">
  15239. <summary>
  15240. Gets and sets the id of signature provider.
  15241. </summary>
  15242. <remarks>
  15243. It's typically the CLSID of the provider com add-in.
  15244. </remarks>
  15245. </member>
  15246. <member name="P:Aspose.Cells.Drawing.SignatureLine.Signer">
  15247. <summary>
  15248. Gets and sets the singer.
  15249. </summary>
  15250. </member>
  15251. <member name="P:Aspose.Cells.Drawing.SignatureLine.Title">
  15252. <summary>
  15253. Gets and sets the title of singer.
  15254. </summary>
  15255. </member>
  15256. <member name="P:Aspose.Cells.Drawing.SignatureLine.Email">
  15257. <summary>
  15258. Gets and sets the email of singer.
  15259. </summary>
  15260. </member>
  15261. <member name="P:Aspose.Cells.Drawing.SignatureLine.IsLine">
  15262. <summary>
  15263. Indicates whether it is a signature line.
  15264. </summary>
  15265. </member>
  15266. <member name="P:Aspose.Cells.Drawing.SignatureLine.AllowComments">
  15267. <summary>
  15268. Indicates whether comments could be attached.
  15269. </summary>
  15270. </member>
  15271. <member name="P:Aspose.Cells.Drawing.SignatureLine.ShowSignedDate">
  15272. <summary>
  15273. Indicates whether show signed date.
  15274. </summary>
  15275. </member>
  15276. <member name="P:Aspose.Cells.Drawing.SignatureLine.Instructions">
  15277. <summary>
  15278. Gets and sets the text shown to user at signing time.
  15279. </summary>
  15280. </member>
  15281. <member name="T:Aspose.Cells.Drawing.Texts.AutoNumberedBulletValue">
  15282. <summary>
  15283. Represents automatic numbered bullet.
  15284. </summary>
  15285. </member>
  15286. <member name="T:Aspose.Cells.Drawing.Texts.BulletValue">
  15287. <summary>
  15288. Represents the value of the bullet.
  15289. </summary>
  15290. </member>
  15291. <member name="P:Aspose.Cells.Drawing.Texts.BulletValue.Type">
  15292. <summary>
  15293. Gets the type of the bullet's value.
  15294. </summary>
  15295. </member>
  15296. <member name="P:Aspose.Cells.Drawing.Texts.AutoNumberedBulletValue.Type">
  15297. <summary>
  15298. Gets the type of the bullet.
  15299. </summary>
  15300. </member>
  15301. <member name="P:Aspose.Cells.Drawing.Texts.AutoNumberedBulletValue.StartAt">
  15302. <summary>
  15303. Gets and sets the starting number of the bullet.
  15304. </summary>
  15305. </member>
  15306. <member name="P:Aspose.Cells.Drawing.Texts.AutoNumberedBulletValue.AutonumberScheme">
  15307. <summary>
  15308. Represents the scheme of automatic number.
  15309. </summary>
  15310. </member>
  15311. <member name="T:Aspose.Cells.Drawing.Texts.Bullet">
  15312. <summary>
  15313. Represents the bullet.
  15314. </summary>
  15315. </member>
  15316. <member name="P:Aspose.Cells.Drawing.Texts.Bullet.BulletValue">
  15317. <summary>
  15318. Gets bullet value
  15319. </summary>
  15320. </member>
  15321. <member name="P:Aspose.Cells.Drawing.Texts.Bullet.Type">
  15322. <summary>
  15323. Gets and sets the bullet type.
  15324. </summary>
  15325. </member>
  15326. <member name="P:Aspose.Cells.Drawing.Texts.Bullet.FontName">
  15327. <summary>
  15328. Get and sets the name of the font.
  15329. </summary>
  15330. </member>
  15331. <member name="T:Aspose.Cells.Drawing.Texts.BulletType">
  15332. <summary>
  15333. Represents the type of the bullet.
  15334. </summary>
  15335. </member>
  15336. <member name="F:Aspose.Cells.Drawing.Texts.BulletType.None">
  15337. <summary>
  15338. No bullet.
  15339. </summary>
  15340. </member>
  15341. <member name="F:Aspose.Cells.Drawing.Texts.BulletType.Character">
  15342. <summary>
  15343. Character bullet.
  15344. </summary>
  15345. </member>
  15346. <member name="F:Aspose.Cells.Drawing.Texts.BulletType.Picture">
  15347. <summary>
  15348. Image bullet.
  15349. </summary>
  15350. </member>
  15351. <member name="F:Aspose.Cells.Drawing.Texts.BulletType.AutoNumbered">
  15352. <summary>
  15353. Automatic numbered bullet.
  15354. </summary>
  15355. </member>
  15356. <member name="T:Aspose.Cells.Drawing.Texts.CharacterBulletValue">
  15357. <summary>
  15358. Represents the character bullet.
  15359. </summary>
  15360. </member>
  15361. <member name="P:Aspose.Cells.Drawing.Texts.CharacterBulletValue.Type">
  15362. <summary>
  15363. Gets the type of the bullet.
  15364. </summary>
  15365. </member>
  15366. <member name="P:Aspose.Cells.Drawing.Texts.CharacterBulletValue.Character">
  15367. <summary>
  15368. Gets and sets character of the bullet.
  15369. </summary>
  15370. </member>
  15371. <member name="T:Aspose.Cells.Drawing.Texts.LineSpaceSizeType">
  15372. <summary>
  15373. Represents the unit type of line space size.
  15374. </summary>
  15375. </member>
  15376. <member name="F:Aspose.Cells.Drawing.Texts.LineSpaceSizeType.Percentage">
  15377. <summary>
  15378. Represents in unit of a percentage of the text size.
  15379. </summary>
  15380. </member>
  15381. <member name="F:Aspose.Cells.Drawing.Texts.LineSpaceSizeType.Points">
  15382. <summary>
  15383. Represents in unit of points.
  15384. </summary>
  15385. </member>
  15386. <member name="T:Aspose.Cells.Drawing.Texts.NoneBulletValue">
  15387. <summary>
  15388. Represents no bullet.
  15389. </summary>
  15390. </member>
  15391. <member name="P:Aspose.Cells.Drawing.Texts.NoneBulletValue.Type">
  15392. <summary>
  15393. Gets the type of the bullet's value.
  15394. </summary>
  15395. </member>
  15396. <member name="T:Aspose.Cells.Drawing.Texts.PictureBulletValue">
  15397. <summary>
  15398. Represents the value of the image bullet.
  15399. </summary>
  15400. </member>
  15401. <member name="P:Aspose.Cells.Drawing.Texts.PictureBulletValue.Type">
  15402. <summary>
  15403. Gets the type of the bullet's value.
  15404. </summary>
  15405. </member>
  15406. <member name="P:Aspose.Cells.Drawing.Texts.PictureBulletValue.ImageData">
  15407. <summary>
  15408. Gets and sets image data of the bullet.
  15409. </summary>
  15410. </member>
  15411. <member name="T:Aspose.Cells.Drawing.Texts.TextAutonumberScheme">
  15412. <summary>
  15413. Represents all automatic number scheme.
  15414. </summary>
  15415. </member>
  15416. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.None">
  15417. <summary>
  15418. </summary>
  15419. </member>
  15420. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaLcParenBoth">
  15421. <summary>
  15422. (a), (b), (c), …
  15423. </summary>
  15424. </member>
  15425. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaLcParenR">
  15426. <summary>
  15427. a), b), c), …
  15428. </summary>
  15429. </member>
  15430. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaLcPeriod">
  15431. <summary>
  15432. a., b., c., …
  15433. </summary>
  15434. </member>
  15435. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaUcParenBoth">
  15436. <summary>
  15437. (A), (B), (C), …
  15438. </summary>
  15439. </member>
  15440. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaUcParenR">
  15441. <summary>
  15442. A), B), C), …
  15443. </summary>
  15444. </member>
  15445. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.AlphaUcPeriod">
  15446. <summary>
  15447. A., B., C., …
  15448. </summary>
  15449. </member>
  15450. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Arabic1Minus">
  15451. <summary>
  15452. Bidi Arabic 1 (AraAlpha) with ANSI minus symbol
  15453. </summary>
  15454. </member>
  15455. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Arabic2Minus">
  15456. <summary>
  15457. Bidi Arabic 2 (AraAbjad) with ANSI minus symbol
  15458. </summary>
  15459. </member>
  15460. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicDbPeriod">
  15461. <summary>
  15462. Dbl-byte Arabic numbers w/ double-byte period
  15463. </summary>
  15464. </member>
  15465. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicDbPlain">
  15466. <summary>
  15467. Dbl-byte Arabic numbers
  15468. </summary>
  15469. </member>
  15470. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicParenBoth">
  15471. <summary>
  15472. (1), (2), (3), …
  15473. </summary>
  15474. </member>
  15475. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicParenR">
  15476. <summary>
  15477. 1), 2), 3), …
  15478. </summary>
  15479. </member>
  15480. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicPeriod">
  15481. <summary>
  15482. 1., 2., 3., …
  15483. </summary>
  15484. </member>
  15485. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ArabicPlain">
  15486. <summary>
  15487. 1, 2, 3, …
  15488. </summary>
  15489. </member>
  15490. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.CircleNumDbPlain">
  15491. <summary>
  15492. Dbl-byte circle numbers (1-10 circle[0x2460-], 11-arabic numbers)
  15493. </summary>
  15494. </member>
  15495. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.CircleNumWdBlackPlain">
  15496. <summary>
  15497. Wingdings black circle numbers
  15498. </summary>
  15499. </member>
  15500. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.CircleNumWdWhitePlain">
  15501. <summary>
  15502. Wingdings white circle numbers (0-10 circle[0x0080-],11- arabic numbers)
  15503. </summary>
  15504. </member>
  15505. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1ChsPeriod">
  15506. <summary>
  15507. EA: Simplified Chinese w/ single-byte period
  15508. </summary>
  15509. </member>
  15510. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1ChsPlain">
  15511. <summary>
  15512. EA: Simplified Chinese (TypeA 1-99, TypeC 100-)
  15513. </summary>
  15514. </member>
  15515. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1ChtPeriod">
  15516. <summary>
  15517. EA: Traditional Chinese w/ single-byte period
  15518. </summary>
  15519. </member>
  15520. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1ChtPlain">
  15521. <summary>
  15522. EA: Traditional Chinese (TypeA 1-19, TypeC 20-)
  15523. </summary>
  15524. </member>
  15525. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1JpnChsDbPeriod">
  15526. <summary>
  15527. EA: Japanese w/ double-byte period
  15528. </summary>
  15529. </member>
  15530. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1JpnKorPeriod">
  15531. <summary>
  15532. EA: Japanese/Korean w/ single-byte period
  15533. </summary>
  15534. </member>
  15535. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Ea1JpnKorPlain">
  15536. <summary>
  15537. EA: Japanese/Korean (TypeC 1-)
  15538. </summary>
  15539. </member>
  15540. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.Hebrew2Minus">
  15541. <summary>
  15542. Bidi Hebrew 2 with ANSI minus symbol
  15543. </summary>
  15544. </member>
  15545. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.HindiAlpha1Period">
  15546. <summary>
  15547. Hindi alphabet period - consonants
  15548. </summary>
  15549. </member>
  15550. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.HindiAlphaPeriod">
  15551. <summary>
  15552. Hindi alphabet period - vowels
  15553. </summary>
  15554. </member>
  15555. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.HindiNumParenR">
  15556. /// <summary>
  15557. Hindi numerical parentheses - right
  15558. </summary></member>
  15559. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.HindiNumPeriod">
  15560. <summary>
  15561. Hindi numerical period
  15562. </summary>
  15563. </member>
  15564. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanLcParenBoth">
  15565. <summary>
  15566. (i), (ii), (iii), …
  15567. </summary>
  15568. </member>
  15569. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanLcParenR">
  15570. <summary>
  15571. i), ii), iii), …
  15572. </summary>
  15573. </member>
  15574. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanLcPeriod">
  15575. <summary>
  15576. i., ii., iii., …
  15577. </summary>
  15578. </member>
  15579. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanUcParenBoth">
  15580. <summary>
  15581. (I), (II), (III), …
  15582. </summary>
  15583. </member>
  15584. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanUcParenR">
  15585. <summary>
  15586. I), II), III), …
  15587. </summary>
  15588. </member>
  15589. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.RomanUcPeriod">
  15590. <summary>
  15591. I., II., III., …
  15592. </summary>
  15593. </member>
  15594. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiAlphaParenBoth">
  15595. <summary>
  15596. Thai alphabet parentheses - both
  15597. </summary>
  15598. </member>
  15599. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiAlphaParenR">
  15600. <summary>
  15601. Thai alphabet parentheses - right
  15602. </summary>
  15603. </member>
  15604. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiAlphaPeriod">
  15605. <summary>
  15606. Thai alphabet period
  15607. </summary>
  15608. </member>
  15609. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiNumParenBoth">
  15610. <summary>
  15611. Thai numerical parentheses - both
  15612. </summary>
  15613. </member>
  15614. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiNumParenR">
  15615. <summary>
  15616. Thai numerical parentheses - right
  15617. </summary>
  15618. </member>
  15619. <member name="F:Aspose.Cells.Drawing.Texts.TextAutonumberScheme.ThaiNumPeriod">
  15620. <summary>
  15621. Thai numerical period
  15622. </summary>
  15623. </member>
  15624. <member name="T:Aspose.Cells.Drawing.Geometry">
  15625. <summary>
  15626. Represents a geometric shape.
  15627. </summary>
  15628. </member>
  15629. <member name="P:Aspose.Cells.Drawing.Geometry.ShapeAdjustValues">
  15630. <summary>
  15631. Gets a collection of shape adjust value
  15632. </summary>
  15633. </member>
  15634. <member name="T:Aspose.Cells.Drawing.Texts.TextFontAlignType">
  15635. <summary>
  15636. Represents the different types of font alignment.
  15637. </summary>
  15638. </member>
  15639. <member name="F:Aspose.Cells.Drawing.Texts.TextFontAlignType.Automatic">
  15640. <summary>
  15641. When the text flow is horizontal or simple vertical same as fontBaseline
  15642. but for other vertical modes same as fontCenter.
  15643. </summary>
  15644. </member>
  15645. <member name="F:Aspose.Cells.Drawing.Texts.TextFontAlignType.Bottom">
  15646. <summary>
  15647. The letters are anchored to the very bottom of a single line.
  15648. </summary>
  15649. </member>
  15650. <member name="F:Aspose.Cells.Drawing.Texts.TextFontAlignType.Baseline">
  15651. <summary>
  15652. The letters are anchored to the bottom baseline of a single line.
  15653. </summary>
  15654. </member>
  15655. <member name="F:Aspose.Cells.Drawing.Texts.TextFontAlignType.Center">
  15656. <summary>
  15657. The letters are anchored between the two baselines of a single line.
  15658. </summary>
  15659. </member>
  15660. <member name="F:Aspose.Cells.Drawing.Texts.TextFontAlignType.Top">
  15661. <summary>
  15662. The letters are anchored to the top baseline of a single dline.
  15663. </summary>
  15664. </member>
  15665. <member name="T:Aspose.Cells.Drawing.Texts.ShapeTextAlignment">
  15666. <summary>
  15667. Represents the setting of shape's text alignment;
  15668. </summary>
  15669. </member>
  15670. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.IsTextWrapped">
  15671. <summary>
  15672. Gets and sets the text wrapped type of the shape which contains text.
  15673. </summary>
  15674. </member>
  15675. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.RotateTextWithShape">
  15676. <summary>
  15677. Indicates whether rotating text with shape.
  15678. </summary>
  15679. </member>
  15680. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.TextVerticalOverflow">
  15681. <summary>
  15682. Gets and sets the text vertical overflow type of the text box.
  15683. </summary>
  15684. </member>
  15685. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.TextHorizontalOverflow">
  15686. <summary>
  15687. Gets and sets the text horizontal overflow type of the text box.
  15688. </summary>
  15689. </member>
  15690. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.RotationAngle">
  15691. <summary>
  15692. Gets and sets the rotation of the shape.
  15693. </summary>
  15694. </member>
  15695. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.TextVerticalType">
  15696. <summary>
  15697. Gets and sets the text direction.
  15698. </summary>
  15699. </member>
  15700. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.AutoSize">
  15701. <summary>
  15702. Indicates if size of shape is adjusted automatically according to its content.
  15703. </summary>
  15704. </member>
  15705. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.TextShapeType">
  15706. <summary>
  15707. Gets and set the transform type of text.
  15708. </summary>
  15709. </member>
  15710. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.TopMarginPt">
  15711. <summary>
  15712. Returns the top margin in unit of Points
  15713. </summary>
  15714. </member>
  15715. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.BottomMarginPt">
  15716. <summary>
  15717. Returns the bottom margin in unit of Points
  15718. </summary>
  15719. </member>
  15720. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.LeftMarginPt">
  15721. <summary>
  15722. Returns the left margin in unit of Points
  15723. </summary>
  15724. </member>
  15725. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.RightMarginPt">
  15726. <summary>
  15727. Returns the right margin in unit of Points
  15728. </summary>
  15729. </member>
  15730. <member name="P:Aspose.Cells.Drawing.Texts.ShapeTextAlignment.IsAutoMargin">
  15731. <summary>
  15732. Indicates whether the margin of the text frame is automatic.
  15733. </summary>
  15734. </member>
  15735. <member name="T:Aspose.Cells.Drawing.Texts.TextNodeType">
  15736. <summary>
  15737. Represents the node type.
  15738. </summary>
  15739. </member>
  15740. <member name="F:Aspose.Cells.Drawing.Texts.TextNodeType.TextRun">
  15741. <summary>
  15742. Represents the text node.
  15743. </summary>
  15744. </member>
  15745. <member name="F:Aspose.Cells.Drawing.Texts.TextNodeType.TextParagraph">
  15746. <summary>
  15747. Represents the text paragraph.
  15748. </summary>
  15749. </member>
  15750. <member name="F:Aspose.Cells.Drawing.Texts.TextNodeType.Equation">
  15751. <summary>
  15752. Represents the equation text.
  15753. </summary>
  15754. </member>
  15755. <member name="T:Aspose.Cells.Drawing.Texts.TextParagraph">
  15756. <summary>
  15757. Represents the text paragraph setting.
  15758. </summary>
  15759. </member>
  15760. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.Bullet">
  15761. <summary>
  15762. Gets the bullet.
  15763. </summary>
  15764. </member>
  15765. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.Type">
  15766. <summary>
  15767. Gets the type of text node.
  15768. </summary>
  15769. </member>
  15770. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.LineSpaceSizeType">
  15771. <summary>
  15772. Gets and sets the amount of vertical white space that will be used within a paragraph.
  15773. </summary>
  15774. </member>
  15775. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.LineSpace">
  15776. <summary>
  15777. Gets and sets the amount of vertical white space that will be used within a paragraph.
  15778. </summary>
  15779. </member>
  15780. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.SpaceAfterSizeType">
  15781. <summary>
  15782. Gets and sets the amount of vertical white space that will be present after a paragraph.
  15783. </summary>
  15784. </member>
  15785. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.SpaceAfter">
  15786. <summary>
  15787. Gets and sets the amount of vertical white space that will be present after a paragraph.
  15788. </summary>
  15789. </member>
  15790. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.SpaceBeforeSizeType">
  15791. <summary>
  15792. Gets and sets the amount of vertical white space that will be present before a paragraph.
  15793. </summary>
  15794. </member>
  15795. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.SpaceBefore">
  15796. <summary>
  15797. Gets and sets the amount of vertical white space that will be present before a paragraph.
  15798. </summary>
  15799. </member>
  15800. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.Stops">
  15801. <summary>
  15802. Gets tab stop list.
  15803. </summary>
  15804. </member>
  15805. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.IsLatinLineBreak">
  15806. <summary>
  15807. Specifies whether a Latin word can be broken in half and wrapped onto the next line without a hyphen being added.
  15808. </summary>
  15809. </member>
  15810. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.IsEastAsianLineBreak">
  15811. <summary>
  15812. Specifies whether an East Asian word can be broken in half and wrapped onto the next line without a hyphen being added.
  15813. </summary>
  15814. </member>
  15815. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.IsHangingPunctuation">
  15816. <summary>
  15817. Specifies whether punctuation is to be forcefully laid out on a line of text or put on a different line of text.
  15818. </summary>
  15819. </member>
  15820. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.RightMargin">
  15821. <summary>
  15822. Specifies the right margin of the paragraph.
  15823. </summary>
  15824. </member>
  15825. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.LeftMargin">
  15826. <summary>
  15827. Specifies the left margin of the paragraph.
  15828. </summary>
  15829. </member>
  15830. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.FirstLineIndent">
  15831. <summary>
  15832. Specifies the indent size that will be applied to the first line of text in the paragraph.
  15833. </summary>
  15834. </member>
  15835. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.FontAlignType">
  15836. <summary>
  15837. Determines where vertically on a line of text the actual words are positioned. This deals
  15838. with vertical placement of the characters with respect to the baselines.
  15839. </summary>
  15840. </member>
  15841. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.AlignmentType">
  15842. <summary>
  15843. Gets and sets the text horizontal alignment type of the paragraph.
  15844. </summary>
  15845. </member>
  15846. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.DefaultTabSize">
  15847. <summary>
  15848. Gets and sets the default size for a tab character within this paragraph.
  15849. </summary>
  15850. </member>
  15851. <member name="P:Aspose.Cells.Drawing.Texts.TextParagraph.Children">
  15852. <summary>
  15853. Gets all text runs in this paragraph.
  15854. If this paragraph is empty, return paragraph itself.
  15855. </summary>
  15856. </member>
  15857. <member name="T:Aspose.Cells.Drawing.Texts.TextTabAlignmentType">
  15858. <summary>
  15859. Represents the text tab alignment types.
  15860. </summary>
  15861. </member>
  15862. <member name="F:Aspose.Cells.Drawing.Texts.TextTabAlignmentType.Center">
  15863. <summary>
  15864. The text at this tab stop is center aligned.
  15865. </summary>
  15866. </member>
  15867. <member name="F:Aspose.Cells.Drawing.Texts.TextTabAlignmentType.Decimal">
  15868. <summary>
  15869. At this tab stop, the decimals are lined up.
  15870. </summary>
  15871. </member>
  15872. <member name="F:Aspose.Cells.Drawing.Texts.TextTabAlignmentType.Left">
  15873. <summary>
  15874. The text at this tab stop is left aligned.
  15875. </summary>
  15876. </member>
  15877. <member name="F:Aspose.Cells.Drawing.Texts.TextTabAlignmentType.Right">
  15878. <summary>
  15879. The text at this tab stop is right aligned.
  15880. </summary>
  15881. </member>
  15882. <member name="T:Aspose.Cells.Drawing.Texts.TextTabStop">
  15883. <summary>
  15884. Represents tab stop.
  15885. </summary>
  15886. </member>
  15887. <member name="P:Aspose.Cells.Drawing.Texts.TextTabStop.TabAlignment">
  15888. <summary>
  15889. Specifies the alignment that is to be applied to text using this tab stop.
  15890. </summary>
  15891. </member>
  15892. <member name="P:Aspose.Cells.Drawing.Texts.TextTabStop.TabPosition">
  15893. <summary>
  15894. Specifies the position of the tab stop relative to the left margin.
  15895. </summary>
  15896. </member>
  15897. <member name="T:Aspose.Cells.Drawing.Texts.TextTabStopCollection">
  15898. <summary>
  15899. Represents the list of all tab stops.
  15900. </summary>
  15901. </member>
  15902. <member name="M:Aspose.Cells.Drawing.Texts.TextTabStopCollection.Add(Aspose.Cells.Drawing.Texts.TextTabAlignmentType,System.Double)">
  15903. <summary>
  15904. Adds a tab stop.
  15905. </summary>
  15906. <param name="tabAlignment">
  15907. </param>
  15908. <param name="tabPosition">
  15909. </param>
  15910. <returns>
  15911. </returns>
  15912. </member>
  15913. <member name="P:Aspose.Cells.Drawing.Texts.TextTabStopCollection.Item(System.Int32)">
  15914. <summary>
  15915. Gets <see cref="T:Aspose.Cells.Drawing.Texts.TextTabStop" /> by the index.
  15916. </summary>
  15917. <param name="index">The index.</param>
  15918. <returns>
  15919. </returns>
  15920. </member>
  15921. <member name="T:Aspose.Cells.Drawing.Texts.TextVerticalType">
  15922. <summary>
  15923. Represents the text direct type.
  15924. </summary>
  15925. </member>
  15926. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.Vertical">
  15927. <summary>
  15928. East Asian Vertical display.
  15929. </summary>
  15930. </member>
  15931. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.Horizontal">
  15932. <summary>
  15933. Horizontal text.
  15934. </summary>
  15935. </member>
  15936. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.VerticalLeftToRight">
  15937. <summary>
  15938. Displayed vertical and the text flows top down then LEFT to RIGHT
  15939. </summary>
  15940. </member>
  15941. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.Vertical90">
  15942. <summary>
  15943. Each line is 90 degrees rotated clockwise
  15944. </summary>
  15945. </member>
  15946. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.Vertical270">
  15947. <summary>
  15948. Each line is 270 degrees rotated clockwise
  15949. </summary>
  15950. </member>
  15951. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.Stacked">
  15952. <summary>
  15953. Determines if all of the text is vertical
  15954. </summary>
  15955. </member>
  15956. <member name="F:Aspose.Cells.Drawing.Texts.TextVerticalType.StackedRightToLeft">
  15957. <summary>
  15958. Specifies that vertical WordArt should be shown from right to left rather than left to right.
  15959. </summary>
  15960. </member>
  15961. <member name="T:Aspose.Cells.TxtLoadStyleStrategy">
  15962. <summary>
  15963. Specifies how to apply style for parsed values when converting string value to number or datetime.
  15964. </summary>
  15965. </member>
  15966. <member name="F:Aspose.Cells.TxtLoadStyleStrategy.None">
  15967. <summary>
  15968. Does not set style for the parsed value.
  15969. </summary>
  15970. </member>
  15971. <member name="F:Aspose.Cells.TxtLoadStyleStrategy.BuiltIn">
  15972. <summary>
  15973. Set the style as built-in number/datetime when the parsed value are plain numeric/datetime values.
  15974. </summary>
  15975. <remarks>
  15976. When ms excel parsing datetime or numeric values according to user's input(such as CSV file),
  15977. the formatting of those values may be changed, such as
  15978. leading/tailing zeros of number, year/month/day order of datetime, ...etc.
  15979. This type is for simulating ms excel's behavior.
  15980. </remarks>
  15981. </member>
  15982. <member name="F:Aspose.Cells.TxtLoadStyleStrategy.ExactFormat">
  15983. <summary>
  15984. Set the exact custom format for the parsed value to make the formatted value be same with the original input one.
  15985. </summary>
  15986. </member>
  15987. <member name="T:Aspose.Cells.NamespaceDoc">
  15988. <summary>
  15989. Contains all basic classes of Aspose.Cells.
  15990. </summary>
  15991. </member>
  15992. <member name="T:Aspose.Cells.Charts.NamespaceDoc">
  15993. <summary>
  15994. Contains all classes of chart and sparkline.
  15995. </summary>
  15996. </member>
  15997. <member name="T:Aspose.Cells.DigitalSignatures.NamespaceDoc">
  15998. <summary>
  15999. Contains all classes of DigitalSignature.
  16000. </summary>
  16001. </member>
  16002. <member name="T:Aspose.Cells.Drawing.NamespaceDoc">
  16003. <summary>
  16004. Contains all classes of shapes and fill format.
  16005. </summary>
  16006. </member>
  16007. <member name="T:Aspose.Cells.Drawing.ActiveXControls.NamespaceDoc">
  16008. <summary>
  16009. Contains all classes of ActiveXControl.
  16010. </summary>
  16011. </member>
  16012. <member name="T:Aspose.Cells.Drawing.Texts.NamespaceDoc">
  16013. <summary>
  16014. Contains all classes of Texts.
  16015. </summary>
  16016. </member>
  16017. <member name="T:Aspose.Cells.ExternalConnections.NamespaceDoc">
  16018. <summary>
  16019. Contains all classes of external connections.
  16020. </summary>
  16021. </member>
  16022. <member name="T:Aspose.Cells.Markup.NamespaceDoc">
  16023. <summary>
  16024. Contains all classes of smart tag.
  16025. </summary>
  16026. </member>
  16027. <member name="T:Aspose.Cells.Metadata.NamespaceDoc">
  16028. <summary>
  16029. Contains all classes of loading and saving metadata.
  16030. </summary>
  16031. </member>
  16032. <member name="T:Aspose.Cells.Pivot.NamespaceDoc">
  16033. <summary>
  16034. Contains all classes of PivotTable.
  16035. </summary>
  16036. </member>
  16037. <member name="T:Aspose.Cells.Properties.NamespaceDoc">
  16038. <summary>
  16039. Contains all core classes of Aspose.Cells.
  16040. </summary>
  16041. </member>
  16042. <member name="T:Aspose.Cells.Rendering.NamespaceDoc">
  16043. <summary>
  16044. Contains all classes of Rendering image and pdf.
  16045. </summary>
  16046. </member>
  16047. <member name="T:Aspose.Cells.Rendering.PdfSecurity.NamespaceDoc">
  16048. <summary>
  16049. Contains all security options of Rendering pdf.
  16050. </summary>
  16051. </member>
  16052. <member name="T:Aspose.Cells.Tables.NamespaceDoc">
  16053. <summary>
  16054. Contains all classes of Table(List Object).
  16055. </summary>
  16056. </member>
  16057. <member name="T:Aspose.Cells.Vba.NamespaceDoc">
  16058. <summary>
  16059. Contains all classes of VBA project.
  16060. </summary>
  16061. </member>
  16062. <member name="T:Aspose.Cells.Drawing.CustomGeometry">
  16063. <summary>
  16064. Represents a custom geometric shape.
  16065. </summary>
  16066. </member>
  16067. <member name="P:Aspose.Cells.Drawing.CustomGeometry.Paths">
  16068. <summary>
  16069. Gets path collection information when shape is a NotPrimitive autoshape
  16070. </summary>
  16071. </member>
  16072. <member name="T:Aspose.Cells.Drawing.ShapeGuide">
  16073. <summary>
  16074. Encapsulates a shape guide specifies the presence of a shape guide that will be used to
  16075. govern the geometry of the specified shape
  16076. </summary>
  16077. </member>
  16078. <member name="P:Aspose.Cells.Drawing.ShapeGuide.Value">
  16079. <summary>
  16080. Gets or sets value of this guide
  16081. </summary>
  16082. </member>
  16083. <member name="T:Aspose.Cells.Drawing.ShapeGuideCollection">
  16084. <summary>
  16085. Encapsulates a collection of shape guide
  16086. </summary>
  16087. </member>
  16088. <member name="P:Aspose.Cells.Drawing.ShapeGuideCollection.Item(System.Int32)">
  16089. <summary>
  16090. Gets a shape guide by index
  16091. </summary>
  16092. <param name="index">
  16093. </param>
  16094. <returns>
  16095. </returns>
  16096. </member>
  16097. <member name="T:Aspose.Cells.Drawing.ShapeLockType">
  16098. <summary>
  16099. Represents type of the property to be locked.
  16100. </summary>
  16101. </member>
  16102. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Group">
  16103. <summary>
  16104. Group
  16105. </summary>
  16106. </member>
  16107. <member name="F:Aspose.Cells.Drawing.ShapeLockType.AdjustHandles">
  16108. <summary>
  16109. AdjustHandles
  16110. </summary>
  16111. </member>
  16112. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Text">
  16113. <summary>
  16114. Text
  16115. </summary>
  16116. </member>
  16117. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Points">
  16118. <summary>
  16119. Points
  16120. </summary>
  16121. </member>
  16122. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Crop">
  16123. <summary>
  16124. Crop
  16125. </summary>
  16126. </member>
  16127. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Selection">
  16128. <summary>
  16129. Selection
  16130. </summary>
  16131. </member>
  16132. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Move">
  16133. <summary>
  16134. Move
  16135. </summary>
  16136. </member>
  16137. <member name="F:Aspose.Cells.Drawing.ShapeLockType.AspectRatio">
  16138. <summary>
  16139. AspectRatio
  16140. </summary>
  16141. </member>
  16142. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Rotation">
  16143. <summary>
  16144. Rotation
  16145. </summary>
  16146. </member>
  16147. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Ungroup">
  16148. <summary>
  16149. Ungroup
  16150. </summary>
  16151. </member>
  16152. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Resize">
  16153. <summary>
  16154. Resize
  16155. </summary>
  16156. </member>
  16157. <member name="F:Aspose.Cells.Drawing.ShapeLockType.ShapeType">
  16158. <summary>
  16159. ShapeType
  16160. </summary>
  16161. </member>
  16162. <member name="F:Aspose.Cells.Drawing.ShapeLockType.Arrowhead">
  16163. <summary>
  16164. Arrowhead
  16165. </summary>
  16166. </member>
  16167. <member name="T:Aspose.Cells.Drawing.ShapeSegmentPathCollection">
  16168. <summary>
  16169. Represents a creation path consisting of a series of moves, lines and curves that when combined will form a geometric shape.
  16170. </summary>
  16171. </member>
  16172. <member name="M:Aspose.Cells.Drawing.ShapeSegmentPathCollection.Add(Aspose.Cells.Drawing.ShapePathType)">
  16173. <summary>
  16174. Add a segment path in creation path.
  16175. </summary>
  16176. <param name="type">The path type.</param>
  16177. <returns>Returns the position of <see cref="T:Aspose.Cells.Drawing.ShapeSegmentPath" /> object in the list. </returns>
  16178. </member>
  16179. <member name="P:Aspose.Cells.Drawing.ShapeSegmentPathCollection.Item(System.Int32)">
  16180. <summary>
  16181. Gets <see cref="T:Aspose.Cells.Drawing.ShapeSegmentPath" /> object.
  16182. </summary>
  16183. <param name="index">The index.</param>
  16184. <returns>Returns a <see cref="T:Aspose.Cells.Drawing.ShapeSegmentPath" /> object.</returns>
  16185. </member>
  16186. <member name="T:Aspose.Cells.Drawing.ShapePathPoint">
  16187. <summary>
  16188. Represents an x-y coordinate within the path coordinate space.
  16189. </summary>
  16190. </member>
  16191. <member name="P:Aspose.Cells.Drawing.ShapePathPoint.X">
  16192. <summary>
  16193. Gets and sets x coordinate for this position coordinate.
  16194. </summary>
  16195. </member>
  16196. <member name="P:Aspose.Cells.Drawing.ShapePathPoint.Y">
  16197. <summary>
  16198. Gets y coordinate for this position coordinate.
  16199. </summary>
  16200. </member>
  16201. <member name="T:Aspose.Cells.Drawing.ShapePathPointCollection">
  16202. <summary>
  16203. Represents all shape path points.
  16204. </summary>
  16205. </member>
  16206. <member name="M:Aspose.Cells.Drawing.ShapePathPointCollection.Add(System.Int32,System.Int32)">
  16207. <summary>
  16208. Adds a path point.
  16209. </summary>
  16210. <param name="x">The x coordinate.</param>
  16211. <param name="y">The y coordinate.</param>
  16212. </member>
  16213. <member name="P:Aspose.Cells.Drawing.ShapePathPointCollection.Item(System.Int32)">
  16214. <summary>
  16215. Gets shape path point by index.
  16216. </summary>
  16217. <param name="index">The index</param>
  16218. <returns>Returns <see cref="T:Aspose.Cells.Drawing.ShapePathPoint" /> object</returns>
  16219. </member>
  16220. <member name="T:Aspose.Cells.ExternalConnections.ExternalConnectionCollection">
  16221. <summary>
  16222. Specifies the <see cref="T:Aspose.Cells.ExternalConnections.ExternalConnection" /> collection
  16223. </summary>
  16224. <example>
  16225. <code>
  16226. [C#]
  16227. Workbook wb = new Workbook("connection.xlsx");
  16228. ExternalConnectionCollection dataConns = wb.DataConnections;
  16229. ExternalConnection dataConn = null;
  16230. for (int i = 0; i &lt; dataConns.Count; i++)
  16231. {
  16232. dataConn = dataConns[i];
  16233. //get external connection id
  16234. Console.WriteLine(dataConn.ConnectionId);
  16235. }
  16236. [Visual Basic]
  16237. Dim wb As Workbook = New Workbook("connection.xlsx")
  16238. Dim dataConns As ExternalConnectionCollection = wb.DataConnections
  16239. Dim dataConn As ExternalConnection
  16240. Dim count As Integer = dataConns.Count - 1
  16241. Dim i As Integer
  16242. For i = 0 To count Step 1
  16243. dataConn = dataConns(i)
  16244. 'get external connection id
  16245. Console.WriteLine(dataConn.ConnectionId)
  16246. Next
  16247. </code>
  16248. </example>
  16249. </member>
  16250. <member name="M:Aspose.Cells.ExternalConnections.ExternalConnectionCollection.GetExternalConnectionById(System.Int32)">
  16251. <summary>
  16252. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ExternalConnection" /> element with the specified id.
  16253. </summary>
  16254. <param name="connId">external connection id</param>
  16255. <returns>The element with the specified id.</returns>
  16256. </member>
  16257. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnectionCollection.Item(System.Int32)">
  16258. <summary>
  16259. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ExternalConnection" /> element at the specified index.
  16260. </summary>
  16261. <param name="index">The zero based index of the element.</param>
  16262. <returns>The element at the specified index.</returns>
  16263. </member>
  16264. <member name="P:Aspose.Cells.ExternalConnections.ExternalConnectionCollection.Item(System.String)">
  16265. <summary>
  16266. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ExternalConnection" /> element with the specified name.
  16267. </summary>
  16268. <param name="connectionName">data connection name</param>
  16269. <returns>The element with the specified name.</returns>
  16270. </member>
  16271. <member name="T:Aspose.Cells.ExternalConnections.DBConnection">
  16272. <summary>
  16273. Specifies all properties associated with an ODBC or OLE DB external data connection.
  16274. </summary>
  16275. </member>
  16276. <member name="P:Aspose.Cells.ExternalConnections.DBConnection.ConnectionInfo">
  16277. <summary>
  16278. The connection information string is used to make contact with an OLE DB or ODBC data source.
  16279. </summary>
  16280. </member>
  16281. <member name="P:Aspose.Cells.ExternalConnections.DBConnection.PowerQueryFormula">
  16282. <summary>
  16283. Gets the definition of power query formula.
  16284. </summary>
  16285. </member>
  16286. <member name="P:Aspose.Cells.ExternalConnections.DBConnection.CommandType">
  16287. <summary>
  16288. Specifies the OLE DB command type.
  16289. 1. Query specifies a cube name
  16290. 2. Query specifies a SQL statement
  16291. 3. Query specifies a table name
  16292. 4. Query specifies that default information has been given, and it is up to the provider how to interpret.
  16293. 5. Query is against a web based List Data Provider.
  16294. </summary>
  16295. </member>
  16296. <member name="P:Aspose.Cells.ExternalConnections.DBConnection.Command">
  16297. <summary>
  16298. The string containing the database command to pass to the data provider API that will
  16299. interact with the external source in order to retrieve data
  16300. </summary>
  16301. </member>
  16302. <member name="P:Aspose.Cells.ExternalConnections.DBConnection.SeverCommand">
  16303. <summary>
  16304. Specifies a second command text string that is persisted when PivotTable server-based
  16305. page fields are in use.
  16306. For ODBC connections, serverCommand is usually a broader query than command (no
  16307. WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand),
  16308. parameter UI can be populated and parameterized queries can be constructed
  16309. </summary>
  16310. </member>
  16311. <member name="T:Aspose.Cells.ExternalConnections.WebQueryConnection">
  16312. <summary>
  16313. Specifies the properties for a web query source. A web query will retrieve data from HTML tables,
  16314. and can also supply HTTP "Get" parameters to be processed by the web server in generating the HTML by
  16315. including the parameters and parameter elements.
  16316. </summary>
  16317. </member>
  16318. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsXml">
  16319. <summary>
  16320. true if the web query source is XML (versus HTML), otherwise false.
  16321. </summary>
  16322. </member>
  16323. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsXl97">
  16324. <summary>
  16325. This flag exists for backward compatibility with older existing spreadsheet files, and is set
  16326. to true if this web query was created in Microsoft Excel 97.
  16327. This is an optional attribute that can be ignored.
  16328. </summary>
  16329. </member>
  16330. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsXl2000">
  16331. <summary>
  16332. This flag exists for backward compatibility with older existing spreadsheet files, and is set
  16333. to true if this web query was refreshed in a spreadsheet application newer than or equal
  16334. to Microsoft Excel 2000.
  16335. This is an optional attribute that can be ignored.
  16336. </summary>
  16337. </member>
  16338. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.Url">
  16339. <summary>
  16340. URL to use to refresh external data.
  16341. </summary>
  16342. </member>
  16343. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsTextDates">
  16344. <summary>
  16345. Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates.
  16346. </summary>
  16347. </member>
  16348. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsXmlSourceData">
  16349. <summary>
  16350. Flag indicating that XML source data should be imported instead of the HTML table itself.
  16351. </summary>
  16352. </member>
  16353. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.Post">
  16354. <summary>
  16355. Returns or sets the string used with the post method of inputting data into a web server
  16356. to return data from a web query.
  16357. </summary>
  16358. </member>
  16359. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsParsePre">
  16360. <summary>
  16361. Flag indicating whether data contained within HTML PRE tags in the web page is
  16362. parsed into columns when you import the page into a query table.
  16363. </summary>
  16364. </member>
  16365. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsHtmlTables">
  16366. <summary>
  16367. Flag indicating whether web queries should only work on HTML tables.
  16368. </summary>
  16369. </member>
  16370. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.HtmlFormat">
  16371. <summary>
  16372. How to handle formatting from the HTML source when bringing web query data into the
  16373. worksheet. Relevant when sourceData is True.
  16374. </summary>
  16375. </member>
  16376. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsSameSettings">
  16377. <summary>
  16378. Flag indicating whether to parse all tables inside a PRE block with the same width settings
  16379. as the first row.
  16380. </summary>
  16381. </member>
  16382. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.EditWebPage">
  16383. <summary>
  16384. The URL of the user-facing web page showing the web query data. This URL is persisted
  16385. in the case that sourceData="true" and url has been redirected to reference an XML file.
  16386. Then the user-facing page can be shown in the UI, and the XML data can be retrieved
  16387. behind the scenes.
  16388. </summary>
  16389. </member>
  16390. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.EditPage">
  16391. <summary>
  16392. The URL of the user-facing web page showing the web query data. This URL is persisted
  16393. in the case that sourceData="true" and url has been redirected to reference an XML file.
  16394. Then the user-facing page can be shown in the UI, and the XML data can be retrieved
  16395. behind the scenes.
  16396. </summary>
  16397. <remarks>
  16398. NOTE: This property is now obsolete. Instead,
  16399. please use WebQueryConnection.EditWebPage property.
  16400. This property will be removed 12 months later since October 2017.
  16401. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  16402. </member>
  16403. <member name="P:Aspose.Cells.ExternalConnections.WebQueryConnection.IsConsecutive">
  16404. <summary>
  16405. Flag indicating whether consecutive delimiters should be treated as just one delimiter.
  16406. </summary>
  16407. </member>
  16408. <member name="T:Aspose.Cells.ExternalConnections.ConnectionDataSourceType">
  16409. <summary>
  16410. Specifies external database source type
  16411. </summary>
  16412. </member>
  16413. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.ODBCBasedSource">
  16414. <summary>
  16415. ODBC-based source
  16416. </summary>
  16417. </member>
  16418. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.DAOBasedSource">
  16419. <summary>
  16420. DAO-based source
  16421. </summary>
  16422. </member>
  16423. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.FileBasedDataBaseSource">
  16424. <summary>
  16425. File based database source
  16426. </summary>
  16427. </member>
  16428. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.WebQuery">
  16429. <summary>
  16430. Web query
  16431. </summary>
  16432. </member>
  16433. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.OLEDBBasedSource">
  16434. <summary>
  16435. OLE DB-based source
  16436. </summary>
  16437. </member>
  16438. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.TextBasedSource">
  16439. <summary>
  16440. Text-based source
  16441. </summary>
  16442. </member>
  16443. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.ADORecordSet">
  16444. <summary>
  16445. ADO record set
  16446. </summary>
  16447. </member>
  16448. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.DSP">
  16449. <summary>
  16450. DSP
  16451. </summary>
  16452. </member>
  16453. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.OLEDBDataModel">
  16454. <summary>
  16455. OLE DB data source created by the Spreadsheet Data Model.
  16456. </summary>
  16457. </member>
  16458. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.DataFeedDataModel">
  16459. <summary>
  16460. Data feed data source created by the Spreadsheet Data Model.
  16461. </summary>
  16462. </member>
  16463. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.WorksheetDataModel">
  16464. <summary>
  16465. Worksheet data source created by the Spreadsheet Data Model.
  16466. </summary>
  16467. </member>
  16468. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.Table">
  16469. <summary>
  16470. Worksheet data source created by the Spreadsheet Data Model.
  16471. </summary>
  16472. <remarks>NOTE: This member is now obsolete. Instead,
  16473. please use WorksheetDataModel enum.
  16474. This property will be removed 12 months later since September 2017.
  16475. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  16476. </member>
  16477. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.TextDataModel">
  16478. <summary>
  16479. Text data source created by the Spreadsheet Data Model.
  16480. </summary>
  16481. </member>
  16482. <member name="F:Aspose.Cells.ExternalConnections.ConnectionDataSourceType.Unknown">
  16483. <summary>
  16484. Text data source created by the Spreadsheet Data Model.
  16485. </summary>
  16486. </member>
  16487. <member name="T:Aspose.Cells.ExternalConnections.ConnectionParameter">
  16488. <summary>
  16489. Specifies properties about any parameters used with external data connections
  16490. Parameters are valid for ODBC and web queries.
  16491. </summary>
  16492. </member>
  16493. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.SqlType">
  16494. <summary>
  16495. SQL data type of the parameter. Only valid for ODBC sources.
  16496. </summary>
  16497. </member>
  16498. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.RefreshOnChange">
  16499. <summary>
  16500. Flag indicating whether the query should automatically refresh when the contents of a
  16501. cell that provides the parameter value changes. If true, then external data is refreshed
  16502. using the new parameter value every time there's a change. If false, then external data
  16503. is only refreshed when requested by the user, or some other event triggers refresh (e.g., workbook opened).
  16504. </summary>
  16505. </member>
  16506. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.Prompt">
  16507. <summary>
  16508. Prompt string for the parameter. Presented to the spreadsheet user along with input UI
  16509. to collect the parameter value before refreshing the external data. Used only when
  16510. parameterType = prompt.
  16511. </summary>
  16512. </member>
  16513. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.Type">
  16514. <summary>
  16515. Type of parameter used.
  16516. If the parameterType=value, then the value from boolean, double, integer,
  16517. or string will be used. In this case, it is expected that only one of
  16518. {boolean, double, integer, or string} will be specified.
  16519. </summary>
  16520. </member>
  16521. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.Name">
  16522. <summary>
  16523. The name of the parameter.
  16524. </summary>
  16525. </member>
  16526. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.CellReference">
  16527. <summary>
  16528. Cell reference indicating which cell's value to use for the query parameter. Used only when parameterType is cell.
  16529. </summary>
  16530. </member>
  16531. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameter.Value">
  16532. <summary>
  16533. Non-integer numeric value,Integer value,String value or Boolean value
  16534. to use as the query parameter. Used only when parameterType is value.
  16535. </summary>
  16536. </member>
  16537. <member name="T:Aspose.Cells.ExternalConnections.ConnectionParameterCollection">
  16538. <summary>
  16539. Specifies the <see cref="T:Aspose.Cells.ExternalConnections.ConnectionParameter" /> collection
  16540. </summary>
  16541. </member>
  16542. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameterCollection.Item(System.Int32)">
  16543. <summary>
  16544. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ConnectionParameter" /> element at the specified index.
  16545. </summary>
  16546. <param name="index">The zero based index of the element.</param>
  16547. <returns>The element at the specified index.</returns>
  16548. </member>
  16549. <member name="P:Aspose.Cells.ExternalConnections.ConnectionParameterCollection.Item(System.String)">
  16550. <summary>
  16551. Gets the <see cref="T:Aspose.Cells.ExternalConnections.ConnectionParameter" /> element with the specified name.
  16552. </summary>
  16553. <param name="connParamName">connection parameter name</param>
  16554. <returns>The element with the specified name.</returns>
  16555. </member>
  16556. <member name="T:Aspose.Cells.ExternalConnections.ConnectionParameterType">
  16557. <summary>
  16558. Specifies the parameter type of external connection
  16559. </summary>
  16560. </member>
  16561. <member name="F:Aspose.Cells.ExternalConnections.ConnectionParameterType.Cell">
  16562. <summary>
  16563. Get the parameter value from a cell on each refresh.
  16564. </summary>
  16565. </member>
  16566. <member name="F:Aspose.Cells.ExternalConnections.ConnectionParameterType.Prompt">
  16567. <summary>
  16568. Prompt the user on each refresh for a parameter value.
  16569. </summary>
  16570. </member>
  16571. <member name="F:Aspose.Cells.ExternalConnections.ConnectionParameterType.Value">
  16572. <summary>
  16573. Use a constant value on each refresh for the parameter value.
  16574. </summary>
  16575. </member>
  16576. <member name="T:Aspose.Cells.ExternalConnections.CredentialsMethodType">
  16577. <summary>
  16578. Specifies Credentials method used for server access.
  16579. </summary>
  16580. </member>
  16581. <member name="F:Aspose.Cells.ExternalConnections.CredentialsMethodType.Integrated">
  16582. <summary>
  16583. Integrated Authentication
  16584. </summary>
  16585. </member>
  16586. <member name="F:Aspose.Cells.ExternalConnections.CredentialsMethodType.None">
  16587. <summary>
  16588. No Credentials
  16589. </summary>
  16590. </member>
  16591. <member name="F:Aspose.Cells.ExternalConnections.CredentialsMethodType.Prompt">
  16592. <summary>
  16593. Prompt Credentials
  16594. </summary>
  16595. </member>
  16596. <member name="F:Aspose.Cells.ExternalConnections.CredentialsMethodType.Stored">
  16597. <summary>
  16598. Stored Credentials
  16599. </summary>
  16600. </member>
  16601. <member name="T:Aspose.Cells.ExternalConnections.OLEDBCommandType">
  16602. <summary>
  16603. Specifies the OLE DB command type.
  16604. </summary>
  16605. </member>
  16606. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.None">
  16607. <summary>
  16608. The command type is not specified.
  16609. </summary>
  16610. </member>
  16611. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.CubeName">
  16612. <summary>
  16613. Specifies a cube name
  16614. </summary>
  16615. <remarks>unsupported</remarks>
  16616. </member>
  16617. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.SqlStatement">
  16618. <summary>
  16619. Specifies a SQL statement
  16620. </summary>
  16621. </member>
  16622. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.TableName">
  16623. <summary>
  16624. Specifies a table name
  16625. </summary>
  16626. </member>
  16627. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.DefaultInformation">
  16628. <summary>
  16629. Specifies that default information has been given, and it is up to the provider how to interpret.
  16630. </summary>
  16631. <remarks>unsupported</remarks>
  16632. </member>
  16633. <member name="F:Aspose.Cells.ExternalConnections.OLEDBCommandType.WebBasedList">
  16634. <summary>
  16635. Specifies a query which is against a web based List Data Provider.
  16636. </summary>
  16637. <remarks>unsupported</remarks>
  16638. </member>
  16639. <member name="T:Aspose.Cells.ExternalConnections.ReConnectionMethodType">
  16640. <summary>
  16641. Specifies what the spreadsheet application should do when a connection fails.
  16642. </summary>
  16643. </member>
  16644. <member name="F:Aspose.Cells.ExternalConnections.ReConnectionMethodType.Required">
  16645. <summary>
  16646. On refresh use the existing connection information and if it ends up being invalid
  16647. then get updated connection information, if available from the external connection file.
  16648. </summary>
  16649. </member>
  16650. <member name="F:Aspose.Cells.ExternalConnections.ReConnectionMethodType.Always">
  16651. <summary>
  16652. On every refresh get updated connection information from the external connection file,
  16653. if available, and use that instead of the existing connection information.
  16654. In this case the data refresh will fail if the external connection file is unavailable.
  16655. </summary>
  16656. </member>
  16657. <member name="F:Aspose.Cells.ExternalConnections.ReConnectionMethodType.Never">
  16658. <summary>
  16659. Never get updated connection information from the external connection file
  16660. even if it is available and even if the existing connection information is invalid
  16661. </summary>
  16662. </member>
  16663. <member name="T:Aspose.Cells.ExternalConnections.SqlDataType">
  16664. <summary>
  16665. Specifies SQL data type of the parameter. Only valid for ODBC sources.
  16666. </summary>
  16667. </member>
  16668. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlUnsignedOffset">
  16669. <summary>
  16670. sql unsigned offset
  16671. </summary>
  16672. </member>
  16673. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlSignedOffset">
  16674. <summary>
  16675. sql signed offset
  16676. </summary>
  16677. </member>
  16678. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlGUID">
  16679. <summary>
  16680. sql guid
  16681. </summary>
  16682. </member>
  16683. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlWLongVarchar">
  16684. <summary>
  16685. sql wide long variable char
  16686. </summary>
  16687. </member>
  16688. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlWVarchar">
  16689. <summary>
  16690. sql wide variable char
  16691. </summary>
  16692. </member>
  16693. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlWChar">
  16694. <summary>
  16695. sql wide char
  16696. </summary>
  16697. </member>
  16698. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlBit">
  16699. <summary>
  16700. sql bit
  16701. </summary>
  16702. </member>
  16703. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlTinyInt">
  16704. <summary>
  16705. sql tiny int
  16706. </summary>
  16707. </member>
  16708. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlBigInt">
  16709. <summary>
  16710. sql big int
  16711. </summary>
  16712. </member>
  16713. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlLongVarBinary">
  16714. <summary>
  16715. sql long variable binary
  16716. </summary>
  16717. </member>
  16718. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlVarBinary">
  16719. <summary>
  16720. sql variable binary
  16721. </summary>
  16722. </member>
  16723. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlBinary">
  16724. <summary>
  16725. sql binary
  16726. </summary>
  16727. </member>
  16728. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlLongVarChar">
  16729. <summary>
  16730. sql long variable char
  16731. </summary>
  16732. </member>
  16733. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlUnknownType">
  16734. <summary>
  16735. sql unknown type
  16736. </summary>
  16737. </member>
  16738. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlChar">
  16739. <summary>
  16740. sql char
  16741. </summary>
  16742. </member>
  16743. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlNumeric">
  16744. <summary>
  16745. sql numeric
  16746. </summary>
  16747. </member>
  16748. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlDecimal">
  16749. <summary>
  16750. sql decimal
  16751. </summary>
  16752. </member>
  16753. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlInteger">
  16754. <summary>
  16755. sql integer
  16756. </summary>
  16757. </member>
  16758. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlSmallInt">
  16759. <summary>
  16760. sql small int
  16761. </summary>
  16762. </member>
  16763. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlFloat">
  16764. <summary>
  16765. sql float
  16766. </summary>
  16767. </member>
  16768. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlReal">
  16769. <summary>
  16770. sql real
  16771. </summary>
  16772. </member>
  16773. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlDouble">
  16774. <summary>
  16775. sql double
  16776. </summary>
  16777. </member>
  16778. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlTypeDate">
  16779. <summary>
  16780. sql date type
  16781. </summary>
  16782. </member>
  16783. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlTypeTime">
  16784. <summary>
  16785. sql time type
  16786. </summary>
  16787. </member>
  16788. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlTypeTimestamp">
  16789. <summary>
  16790. sql timestamp type
  16791. </summary>
  16792. </member>
  16793. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlVarChar">
  16794. <summary>
  16795. sql variable char
  16796. </summary>
  16797. </member>
  16798. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalYear">
  16799. <summary>
  16800. sql interval year
  16801. </summary>
  16802. </member>
  16803. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalMonth">
  16804. <summary>
  16805. sql interval month
  16806. </summary>
  16807. </member>
  16808. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalDay">
  16809. <summary>
  16810. sql interval day
  16811. </summary>
  16812. </member>
  16813. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalHour">
  16814. <summary>
  16815. sql interval hour
  16816. </summary>
  16817. </member>
  16818. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalMinute">
  16819. <summary>
  16820. sql interval minute
  16821. </summary>
  16822. </member>
  16823. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalSecond">
  16824. <summary>
  16825. sql interval second
  16826. </summary>
  16827. </member>
  16828. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalYearToMonth">
  16829. <summary>
  16830. sql interval year to month
  16831. </summary>
  16832. </member>
  16833. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalDayToHour">
  16834. <summary>
  16835. sql interval day to hour
  16836. </summary>
  16837. </member>
  16838. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalDayToMinute">
  16839. <summary>
  16840. sql interval day to minute
  16841. </summary>
  16842. </member>
  16843. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalDayToSecond">
  16844. <summary>
  16845. sql interval day to second
  16846. </summary>
  16847. </member>
  16848. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalHourToMinute">
  16849. <summary>
  16850. sql interval hour to minute
  16851. </summary>
  16852. </member>
  16853. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalHourToSecond">
  16854. <summary>
  16855. sql interval hour to second
  16856. </summary>
  16857. </member>
  16858. <member name="F:Aspose.Cells.ExternalConnections.SqlDataType.SqlIntervalMinuteToSecond">
  16859. <summary>
  16860. sql interval minute to second
  16861. </summary>
  16862. </member>
  16863. <member name="T:Aspose.Cells.FileFormatInfo">
  16864. <summary>
  16865. Contains data returned by <see cref="T:Aspose.Cells.FileFormatUtil" /> file format detection methods.
  16866. </summary>
  16867. </member>
  16868. <member name="P:Aspose.Cells.FileFormatInfo.IsProtectedByRMS">
  16869. <summary>
  16870. Gets whether the file is protected by Microsoft Rights Management Server.
  16871. </summary>
  16872. </member>
  16873. <member name="P:Aspose.Cells.FileFormatInfo.IsEncrypted">
  16874. <summary>
  16875. Returns true if the document is encrypted and requires a password to open.
  16876. </summary>
  16877. </member>
  16878. <member name="P:Aspose.Cells.FileFormatInfo.FileFormatType">
  16879. <summary>
  16880. Gets the detected file format.
  16881. </summary>
  16882. </member>
  16883. <member name="P:Aspose.Cells.FileFormatInfo.LoadFormat">
  16884. <summary>
  16885. Gets the detected load format.
  16886. </summary>
  16887. </member>
  16888. <member name="T:Aspose.Cells.LoadDataFilterOptions">
  16889. <summary>
  16890. Represents the options to filter data when loading workbook from template.
  16891. </summary>
  16892. </member>
  16893. <member name="F:Aspose.Cells.LoadDataFilterOptions.None">
  16894. <summary>
  16895. Load nothing for sheet data
  16896. </summary>
  16897. <remarks>
  16898. NOTE: This member is now obsolete and please use Structure instead.
  16899. This property will be removed 12 months later since December 2017.
  16900. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  16901. </member>
  16902. <member name="F:Aspose.Cells.LoadDataFilterOptions.All">
  16903. <summary>
  16904. Load all
  16905. </summary>
  16906. </member>
  16907. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellBlank">
  16908. <summary>
  16909. Load cells whose value is blank
  16910. </summary>
  16911. </member>
  16912. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellString">
  16913. <summary>
  16914. Load cells whose value is string
  16915. </summary>
  16916. </member>
  16917. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellNumeric">
  16918. <summary>
  16919. Load cells whose value is numeric(including datetime)
  16920. </summary>
  16921. </member>
  16922. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellError">
  16923. <summary>
  16924. Load cells whose value is error
  16925. </summary>
  16926. </member>
  16927. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellBool">
  16928. <summary>
  16929. Load cells whose value is bool
  16930. </summary>
  16931. </member>
  16932. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellValue">
  16933. <summary>
  16934. Load cells value(all value types) only
  16935. </summary>
  16936. </member>
  16937. <member name="F:Aspose.Cells.LoadDataFilterOptions.Formula">
  16938. <summary>
  16939. Load cell formulas.
  16940. </summary>
  16941. <remarks>
  16942. Generally defined Name objects(DefinedNames) also need to be loaded when loading formulas because they may be referenced by formulas.
  16943. So Formula or CellData option should work with DefinedNames option together(Formula|DefinedNames or CellData|DefinedNames) for most scenarios.
  16944. </remarks>
  16945. </member>
  16946. <member name="F:Aspose.Cells.LoadDataFilterOptions.CellData">
  16947. <summary>
  16948. Load cells data including values, formulas and formatting
  16949. </summary>
  16950. </member>
  16951. <member name="F:Aspose.Cells.LoadDataFilterOptions.Chart">
  16952. <summary>
  16953. Load charts
  16954. </summary>
  16955. </member>
  16956. <member name="F:Aspose.Cells.LoadDataFilterOptions.Shape">
  16957. <summary>
  16958. Load shapes
  16959. </summary>
  16960. <remarks>
  16961. NOTE: This member is now obsolete and please use Structure instead.
  16962. This property will be removed 12 months later since November 2019.
  16963. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  16964. </member>
  16965. <member name="F:Aspose.Cells.LoadDataFilterOptions.Drawing">
  16966. <summary>
  16967. Drawing objects(including Chart, Picture, OleObject and all other drawing objects)
  16968. </summary>
  16969. </member>
  16970. <member name="F:Aspose.Cells.LoadDataFilterOptions.MergedArea">
  16971. <summary>
  16972. Load merged cells
  16973. </summary>
  16974. </member>
  16975. <member name="F:Aspose.Cells.LoadDataFilterOptions.ConditionalFormatting">
  16976. <summary>
  16977. Load conditional formatting
  16978. </summary>
  16979. </member>
  16980. <member name="F:Aspose.Cells.LoadDataFilterOptions.DataValidation">
  16981. <summary>
  16982. Load data validations
  16983. </summary>
  16984. </member>
  16985. <member name="F:Aspose.Cells.LoadDataFilterOptions.PivotTable">
  16986. <summary>
  16987. Load pivot tables
  16988. </summary>
  16989. </member>
  16990. <member name="F:Aspose.Cells.LoadDataFilterOptions.Table">
  16991. <summary>
  16992. Load tables
  16993. </summary>
  16994. </member>
  16995. <member name="F:Aspose.Cells.LoadDataFilterOptions.Hyperlinks">
  16996. <summary>
  16997. Load hyperlinks
  16998. </summary>
  16999. </member>
  17000. <member name="F:Aspose.Cells.LoadDataFilterOptions.SheetSettings">
  17001. <summary>
  17002. Load settings for worksheet
  17003. </summary>
  17004. </member>
  17005. <member name="F:Aspose.Cells.LoadDataFilterOptions.SheetData">
  17006. <summary>
  17007. Load all data of worksheet, such as cells data, settings, objects, ...etc.
  17008. </summary>
  17009. </member>
  17010. <member name="F:Aspose.Cells.LoadDataFilterOptions.BookSettings">
  17011. <summary>
  17012. Load settings for workbook
  17013. </summary>
  17014. </member>
  17015. <member name="F:Aspose.Cells.LoadDataFilterOptions.Settings">
  17016. <summary>
  17017. Load settings for workbook and worksheet
  17018. </summary>
  17019. </member>
  17020. <member name="F:Aspose.Cells.LoadDataFilterOptions.XmlMap">
  17021. <summary>
  17022. Load XmlMap
  17023. </summary>
  17024. </member>
  17025. <member name="F:Aspose.Cells.LoadDataFilterOptions.Structure">
  17026. <summary>
  17027. Load structure of the workbook
  17028. </summary>
  17029. </member>
  17030. <member name="F:Aspose.Cells.LoadDataFilterOptions.DocumentProperties">
  17031. <summary>
  17032. Load document properties
  17033. </summary>
  17034. </member>
  17035. <member name="F:Aspose.Cells.LoadDataFilterOptions.DefinedNames">
  17036. <summary>
  17037. Load defined Name objects
  17038. </summary>
  17039. </member>
  17040. <member name="F:Aspose.Cells.LoadDataFilterOptions.VBA">
  17041. <summary>
  17042. Load VBA projects
  17043. </summary>
  17044. </member>
  17045. <member name="F:Aspose.Cells.LoadDataFilterOptions.Style">
  17046. <summary>
  17047. Load styles for cell formatting
  17048. </summary>
  17049. </member>
  17050. <member name="F:Aspose.Cells.LoadDataFilterOptions.Picture">
  17051. <summary>
  17052. Load pictures
  17053. </summary>
  17054. </member>
  17055. <member name="F:Aspose.Cells.LoadDataFilterOptions.OleObject">
  17056. <summary>
  17057. Load OleObjects
  17058. </summary>
  17059. </member>
  17060. <member name="T:Aspose.Cells.Drawing.FillType">
  17061. <summary>
  17062. Fill format type.
  17063. </summary>
  17064. </member>
  17065. <member name="F:Aspose.Cells.Drawing.FillType.Automatic">
  17066. <summary>
  17067. Represents automatic formatting type.
  17068. </summary>
  17069. </member>
  17070. <member name="F:Aspose.Cells.Drawing.FillType.None">
  17071. <summary>
  17072. Represents none formatting type.
  17073. </summary>
  17074. </member>
  17075. <member name="F:Aspose.Cells.Drawing.FillType.Solid">
  17076. <summary>
  17077. Solid fill format.
  17078. </summary>
  17079. </member>
  17080. <member name="F:Aspose.Cells.Drawing.FillType.Gradient">
  17081. <summary>
  17082. Gradient fill format.
  17083. </summary>
  17084. </member>
  17085. <member name="F:Aspose.Cells.Drawing.FillType.Texture">
  17086. <summary>
  17087. Texture fill format(includes picture fill).
  17088. </summary>
  17089. </member>
  17090. <member name="F:Aspose.Cells.Drawing.FillType.Pattern">
  17091. <summary>
  17092. Pattern fill format.
  17093. </summary>
  17094. </member>
  17095. <member name="F:Aspose.Cells.Drawing.FillType.Group">
  17096. <summary>
  17097. Inherit the fill properties of the group.
  17098. </summary>
  17099. </member>
  17100. <member name="T:Aspose.Cells.Drawing.SolidFill">
  17101. <summary>
  17102. Encapsulates the object that represents solid fill format
  17103. </summary>
  17104. </member>
  17105. <member name="P:Aspose.Cells.Drawing.SolidFill.Color">
  17106. <summary>
  17107. Gets or sets the <see cref="T:System.Drawing.Color" />.
  17108. </summary>
  17109. </member>
  17110. <member name="P:Aspose.Cells.Drawing.SolidFill.CellsColor">
  17111. <summary>
  17112. Gets and sets the <see cref="P:Aspose.Cells.Drawing.SolidFill.CellsColor" /> object.
  17113. </summary>
  17114. </member>
  17115. <member name="P:Aspose.Cells.Drawing.SolidFill.Transparency">
  17116. <summary>
  17117. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
  17118. </summary>
  17119. </member>
  17120. <member name="T:Aspose.Cells.ConditionalFormattingIcon">
  17121. <summary>
  17122. Represents the custom icon of conditional formatting rule.
  17123. </summary>
  17124. </member>
  17125. <member name="M:Aspose.Cells.ConditionalFormattingIcon.GetIconImageData(Aspose.Cells.IconSetType,System.Int32)">
  17126. <summary>
  17127. Get the icon set data
  17128. </summary>
  17129. <param name="type">icon's type</param>
  17130. <param name="index"> icon's index</param>
  17131. <returns>
  17132. </returns>
  17133. </member>
  17134. <member name="P:Aspose.Cells.ConditionalFormattingIcon.ImageData">
  17135. <summary>
  17136. Gets the icon set data.
  17137. </summary>
  17138. </member>
  17139. <member name="P:Aspose.Cells.ConditionalFormattingIcon.Type">
  17140. <summary>
  17141. Gets and sets the icon set type.
  17142. </summary>
  17143. </member>
  17144. <member name="P:Aspose.Cells.ConditionalFormattingIcon.Index">
  17145. <summary>
  17146. Gets and sets the icon's index in the icon set.
  17147. </summary>
  17148. </member>
  17149. <member name="T:Aspose.Cells.ConditionalFormattingIconCollection">
  17150. <summary>
  17151. Represents a collection of <see cref="T:Aspose.Cells.ConditionalFormattingIcon" /> objects.
  17152. </summary>
  17153. <example>
  17154. <code>
  17155. [C#]
  17156. //Instantiating a Workbook object
  17157. Workbook workbook = new Workbook();
  17158. Worksheet sheet = workbook.Worksheets[0];
  17159. //Get Conditional Formatting
  17160. ConditionalFormattingCollection cformattings = sheet.ConditionalFormattings;
  17161. //Adds an empty conditional formatting
  17162. int index = cformattings.Add();
  17163. //Get newly added Conditional formatting
  17164. FormatConditionCollection fcs = cformattings[index];
  17165. //Sets the conditional format range.
  17166. CellArea ca = new CellArea();
  17167. ca.StartRow = 0;
  17168. ca.EndRow = 0;
  17169. ca.StartColumn = 0;
  17170. ca.EndColumn = 0;
  17171. fcs.AddArea(ca);
  17172. ca = new CellArea();
  17173. ca.StartRow = 1;
  17174. ca.EndRow = 1;
  17175. ca.StartColumn = 1;
  17176. ca.EndColumn = 1;
  17177. fcs.AddArea(ca);
  17178. //Sets condition
  17179. int idx = fcs.AddCondition(FormatConditionType.IconSet);
  17180. FormatCondition cond = fcs[idx];
  17181. //Sets condition's type
  17182. cond.IconSet.Type = IconSetType.ArrowsGray3;
  17183. //Add custom iconset condition.
  17184. ConditionalFormattingIcon cfIcon = cond.IconSet.CfIcons[0];
  17185. cfIcon.Type = IconSetType.Arrows3;
  17186. cfIcon.Index = 0;
  17187. ConditionalFormattingIcon cfIcon1 = cond.IconSet.CfIcons[1];
  17188. cfIcon1.Type = IconSetType.ArrowsGray3;
  17189. cfIcon1.Index = 1;
  17190. ConditionalFormattingIcon cfIcon2 = cond.IconSet.CfIcons[2];
  17191. cfIcon2.Type = IconSetType.Boxes5;
  17192. cfIcon2.Index = 2;
  17193. //Saving the Excel file
  17194. workbook.Save("C:\\output.xls");
  17195. [VB.NET]
  17196. 'Instantiating a Workbook object
  17197. Dim workbook As New Workbook()
  17198. Dim sheet As Worksheet = workbook.Worksheets(0)
  17199. 'Get Conditional Formatting
  17200. Dim cformattings As ConditionalFormattingCollection = sheet.ConditionalFormattings
  17201. 'Adds an empty conditional formatting
  17202. Dim index As Integer = cformattings.Add()
  17203. 'Get newly added Conditional formatting
  17204. Dim fcs As FormatConditionCollection = cformattings(index)
  17205. 'Sets the conditional format range.
  17206. Dim ca As New CellArea()
  17207. ca.StartRow = 0
  17208. ca.EndRow = 0
  17209. ca.StartColumn = 0
  17210. ca.EndColumn = 0
  17211. fcs.AddArea(ca)
  17212. ca = New CellArea()
  17213. ca.StartRow = 1
  17214. ca.EndRow = 1
  17215. ca.StartColumn = 1
  17216. ca.EndColumn = 1
  17217. fcs.AddArea(ca)
  17218. //Sets condition
  17219. Dim idx As Integer =fcs.AddCondition(FormatConditionType.IconSet)
  17220. Dim cond As FormatCondition=fcs[idx]
  17221. //Sets condition's type
  17222. cfIcon.Type = IconSetType.ArrowsGray3
  17223. 'Add custom iconset condition.
  17224. Dim cfIcon As ConditionalFormattingIcon = cond.IconSet.CfIcons[0]
  17225. cfIcon.Type = IconSetType.Arrows3
  17226. cfIcon.Index=0
  17227. Dim cfIcon1 As ConditionalFormattingIcon = cond.IconSet.CfIcons[1]
  17228. cfIcon1.Type = IconSetType.ArrowsGray3
  17229. cfIcon1.Index=1
  17230. Dim cfIcon2 As ConditionalFormattingIcon = cond.IconSet.CfIcons[2]
  17231. cfIcon2.Type = IconSetType.Boxes5
  17232. cfIcon2.Index=2
  17233. 'Saving the Excel file
  17234. workbook.Save("C:\output.xls")
  17235. </code>
  17236. </example>
  17237. </member>
  17238. <member name="M:Aspose.Cells.ConditionalFormattingIconCollection.Add(Aspose.Cells.IconSetType,System.Int32)">
  17239. <summary>
  17240. Adds <see cref="T:Aspose.Cells.ConditionalFormattingIcon" /> object.
  17241. </summary>
  17242. <param name="type">The value type.</param>
  17243. <param name="index">The Index.</param>
  17244. <returns>Returns the index of new object in the list.</returns>
  17245. </member>
  17246. <member name="M:Aspose.Cells.ConditionalFormattingIconCollection.Add(Aspose.Cells.ConditionalFormattingIcon)">
  17247. <summary>
  17248. Adds <see cref="T:Aspose.Cells.ConditionalFormattingIcon" /> object.
  17249. </summary>
  17250. <param name="cficon">Returns the index of new object in the list.</param>
  17251. </member>
  17252. <member name="P:Aspose.Cells.ConditionalFormattingIconCollection.Item(System.Int32)">
  17253. <summary>
  17254. Gets the ConditionalFormattingIcon element at the specified index.
  17255. </summary>
  17256. <param name="index">The zero based index of the element.</param>
  17257. <returns>The element at the specified index.</returns>
  17258. </member>
  17259. <member name="T:Aspose.Cells.DataBarAxisPosition">
  17260. <summary>
  17261. Specifies the axis position for a range of cells with conditional formatting as data bars.
  17262. </summary>
  17263. </member>
  17264. <member name="F:Aspose.Cells.DataBarAxisPosition.DataBarAxisAutomatic">
  17265. <summary>
  17266. Display the axis at a variable position based on the ratio of the minimum negative value to the maximum positive value in the range.
  17267. Positive values are displayed in a left-to-right direction.
  17268. Negative values are displayed in a right-to-left direction.
  17269. When all values are positive or all values are negative, no axis is displayed.
  17270. </summary>
  17271. <remarks>
  17272. NOTE: This enum type is now obsolete. Instead,
  17273. please use DataBarAxisPosition.Automatic enum type.
  17274. This property will be removed 12 months later since December 2013.
  17275. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17276. </member>
  17277. <member name="F:Aspose.Cells.DataBarAxisPosition.DataBarAxisMidpoint">
  17278. <summary>
  17279. Display the axis at the midpoint of the cell regardless of the set of values in the range.
  17280. Positive values are displayed in a left-to-right direction.
  17281. Negative values are displayed in a right-to-left direction.
  17282. </summary>
  17283. <remarks>
  17284. NOTE: This enum type is now obsolete. Instead,
  17285. please use DataBarAxisPosition.Midpoint enum type.
  17286. This property will be removed 12 months later since December 2013.
  17287. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17288. </member>
  17289. <member name="F:Aspose.Cells.DataBarAxisPosition.DataBarAxisNone">
  17290. <summary>
  17291. No axis is displayed, and both positive and negative values are displayed in the left-to-right direction.
  17292. </summary>
  17293. <remarks>
  17294. NOTE: This enum type is now obsolete. Instead,
  17295. please use DataBarAxisPosition.None enum type.
  17296. This property will be removed 12 months later since December 2013.
  17297. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17298. </member>
  17299. <member name="F:Aspose.Cells.DataBarAxisPosition.Automatic">
  17300. <summary>
  17301. Display the axis at a variable position based on the ratio of the minimum negative value to the maximum positive value in the range.
  17302. Positive values are displayed in a left-to-right direction.
  17303. Negative values are displayed in a right-to-left direction.
  17304. When all values are positive or all values are negative, no axis is displayed.
  17305. </summary>
  17306. </member>
  17307. <member name="F:Aspose.Cells.DataBarAxisPosition.Midpoint">
  17308. <summary>
  17309. Display the axis at the midpoint of the cell regardless of the set of values in the range.
  17310. Positive values are displayed in a left-to-right direction.
  17311. Negative values are displayed in a right-to-left direction.
  17312. </summary>
  17313. </member>
  17314. <member name="F:Aspose.Cells.DataBarAxisPosition.None">
  17315. <summary>
  17316. No axis is displayed, and both positive and negative values are displayed in the left-to-right direction.
  17317. </summary>
  17318. </member>
  17319. <member name="T:Aspose.Cells.DataBarBorder">
  17320. <summary>
  17321. Represents the border of the data bars specified by a conditional formatting rule.
  17322. </summary>
  17323. </member>
  17324. <member name="P:Aspose.Cells.DataBarBorder.Color">
  17325. <summary>
  17326. Gets or sets the border's color of data bars specified by a conditional formatting rule.
  17327. </summary>
  17328. </member>
  17329. <member name="P:Aspose.Cells.DataBarBorder.Type">
  17330. <summary>
  17331. Gets or sets the border's type of data bars specified by a conditional formatting rule.
  17332. </summary>
  17333. </member>
  17334. <member name="T:Aspose.Cells.DataBarBorderType">
  17335. <summary>
  17336. Specifies the border type of a data bar.
  17337. </summary>
  17338. </member>
  17339. <member name="F:Aspose.Cells.DataBarBorderType.DataBarBorderNone">
  17340. <summary>
  17341. The data bar has no border.
  17342. </summary>
  17343. <remarks>
  17344. NOTE: This enum type is now obsolete. Instead,
  17345. please use DataBarBorderType.None enum type.
  17346. This property will be removed 12 months later since December 2013.
  17347. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17348. </member>
  17349. <member name="F:Aspose.Cells.DataBarBorderType.DataBarBorderSolid">
  17350. <summary>
  17351. The data bar has a solid border.
  17352. </summary>
  17353. <remarks>
  17354. NOTE: This enum type is now obsolete. Instead,
  17355. please use DataBarBorderType.Solid enum type.
  17356. This property will be removed 12 months later since December 2013.
  17357. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17358. </member>
  17359. <member name="F:Aspose.Cells.DataBarBorderType.None">
  17360. <summary>
  17361. The data bar has no border.
  17362. </summary>
  17363. </member>
  17364. <member name="F:Aspose.Cells.DataBarBorderType.Solid">
  17365. <summary>
  17366. The data bar has a solid border.
  17367. </summary>
  17368. </member>
  17369. <member name="T:Aspose.Cells.DataBarFillType">
  17370. <summary>
  17371. Specifies how a data bar is filled with color.
  17372. </summary>
  17373. </member>
  17374. <member name="F:Aspose.Cells.DataBarFillType.DataBarFillSolid">
  17375. <summary>
  17376. The data bar is filled with solid color.
  17377. </summary>
  17378. <remarks>
  17379. NOTE: This enum type is now obsolete. Instead,
  17380. please use DataBarFillType.Solid enum type.
  17381. This property will be removed 12 months later since December 2013.
  17382. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17383. </member>
  17384. <member name="F:Aspose.Cells.DataBarFillType.DataBarFillGradient">
  17385. <summary>
  17386. The data bar is filled with a color gradient.
  17387. </summary>
  17388. <remarks>
  17389. NOTE: This enum type is now obsolete. Instead,
  17390. please use DataBarFillType.Gradient enum type.
  17391. This property will be removed 12 months later since December 2013.
  17392. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17393. </member>
  17394. <member name="F:Aspose.Cells.DataBarFillType.Solid">
  17395. <summary>
  17396. The data bar is filled with solid color.
  17397. </summary>
  17398. </member>
  17399. <member name="F:Aspose.Cells.DataBarFillType.Gradient">
  17400. <summary>
  17401. The data bar is filled with a color gradient.
  17402. </summary>
  17403. </member>
  17404. <member name="T:Aspose.Cells.DataBarNegativeColorType">
  17405. <summary>
  17406. Specifies whether to use the same border and fill color as positive data bars.
  17407. </summary>
  17408. </member>
  17409. <member name="F:Aspose.Cells.DataBarNegativeColorType.DataBarColor">
  17410. <summary>
  17411. Use the color specified in the Negative Value and Axis Setting dialog box
  17412. or by using the ColorType and BorderColorType properties of the NegativeBarFormat object.
  17413. </summary>
  17414. <remarks>
  17415. NOTE: This enum type is now obsolete. Instead,
  17416. please use DataBarNegativeColorType.Color enum type.
  17417. This property will be removed 12 months later since December 2013.
  17418. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17419. </member>
  17420. <member name="F:Aspose.Cells.DataBarNegativeColorType.DataBarSameAsPositive">
  17421. <summary>
  17422. Use the same color as positive data bars.
  17423. </summary>
  17424. <remarks>
  17425. NOTE: This enum type is now obsolete. Instead,
  17426. please use DataBarNegativeColorType.SameAsPositive enum type.
  17427. This property will be removed 12 months later since December 2013.
  17428. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  17429. </member>
  17430. <member name="F:Aspose.Cells.DataBarNegativeColorType.Color">
  17431. <summary>
  17432. Use the color specified in the Negative Value and Axis Setting dialog box
  17433. or by using the ColorType and BorderColorType properties of the NegativeBarFormat object.
  17434. </summary>
  17435. </member>
  17436. <member name="F:Aspose.Cells.DataBarNegativeColorType.SameAsPositive">
  17437. <summary>
  17438. Use the same color as positive data bars.
  17439. </summary>
  17440. </member>
  17441. <member name="T:Aspose.Cells.NegativeBarFormat">
  17442. <summary>
  17443. Represents the color settings of the data bars for negative values that are defined by a data bar conditional formatting rule.
  17444. </summary>
  17445. </member>
  17446. <member name="P:Aspose.Cells.NegativeBarFormat.BorderColor">
  17447. <summary>
  17448. Gets or sets a FormatColor object that you can use to specify the border color for negative data bars.
  17449. </summary>
  17450. </member>
  17451. <member name="P:Aspose.Cells.NegativeBarFormat.BorderColorType">
  17452. <summary>
  17453. Gets whether to use the same border color as positive data bars.
  17454. </summary>
  17455. </member>
  17456. <member name="P:Aspose.Cells.NegativeBarFormat.Color">
  17457. <summary>
  17458. Gets or sets a FormatColor object that you can use to specify the fill color for negative data bars.
  17459. </summary>
  17460. </member>
  17461. <member name="P:Aspose.Cells.NegativeBarFormat.ColorType">
  17462. <summary>
  17463. Gets or sets whether to use the same fill color as positive data bars.
  17464. </summary>
  17465. </member>
  17466. <member name="T:Aspose.Cells.Properties.ContentTypeProperty">
  17467. <summary>
  17468. Represents identifier information.
  17469. </summary>
  17470. </member>
  17471. <member name="P:Aspose.Cells.Properties.ContentTypeProperty.Name">
  17472. <summary>
  17473. Returns or sets the name of the object.
  17474. </summary>
  17475. </member>
  17476. <member name="P:Aspose.Cells.Properties.ContentTypeProperty.Value">
  17477. <summary>
  17478. Returns or sets the value of the content type property.
  17479. </summary>
  17480. </member>
  17481. <member name="P:Aspose.Cells.Properties.ContentTypeProperty.Type">
  17482. <summary>
  17483. Gets and sets the type of the property.
  17484. </summary>
  17485. </member>
  17486. <member name="P:Aspose.Cells.Properties.ContentTypeProperty.IsNillable">
  17487. <summary>
  17488. Indicates whether the value could be empty.
  17489. </summary>
  17490. </member>
  17491. <member name="T:Aspose.Cells.Properties.ContentTypePropertyCollection">
  17492. <summary>
  17493. A collection of <see cref="T:Aspose.Cells.Properties.ContentTypeProperty" /> objects that represent additional information.
  17494. </summary>
  17495. </member>
  17496. <member name="M:Aspose.Cells.Properties.ContentTypePropertyCollection.Add(System.String,System.String)">
  17497. <summary>
  17498. Adds content type property information.
  17499. </summary>
  17500. <param name="name">The name of the content type property.</param>
  17501. <param name="value">The value of the content type property.</param>
  17502. </member>
  17503. <member name="M:Aspose.Cells.Properties.ContentTypePropertyCollection.Add(System.String,System.String,System.String)">
  17504. <summary>
  17505. Adds content type property information.
  17506. </summary>
  17507. <param name="name">The name of the content type property.</param>
  17508. <param name="value">The value of the content type property.</param>
  17509. <param name="type">The type of the content type property.</param>
  17510. </member>
  17511. <member name="P:Aspose.Cells.Properties.ContentTypePropertyCollection.Item(System.Int32)">
  17512. <summary>
  17513. Gets the content type property by the specific index.
  17514. </summary>
  17515. <param name="index">The index.</param>
  17516. <returns>The content type property</returns>
  17517. </member>
  17518. <member name="P:Aspose.Cells.Properties.ContentTypePropertyCollection.Item(System.String)">
  17519. <summary>
  17520. Gets the content type property by the property name.
  17521. </summary>
  17522. <param name="name">The property name.</param>
  17523. <returns>The content type property</returns>
  17524. </member>
  17525. <member name="T:Aspose.Cells.StreamProviderOptions">
  17526. <summary>
  17527. Represents the stream options.
  17528. </summary>
  17529. </member>
  17530. <member name="M:Aspose.Cells.StreamProviderOptions.#ctor(Aspose.Cells.ResourceLoadingType,System.String)">
  17531. <summary>
  17532. Initializes a new instance of the <see cref="T:Aspose.Cells.StreamProviderOptions" /> class.
  17533. </summary>
  17534. <param name="loadingType">The type to load the linked resource.</param>
  17535. <param name="defaultPath">The default path.</param>
  17536. </member>
  17537. <member name="M:Aspose.Cells.StreamProviderOptions.#ctor">
  17538. <summary>
  17539. Initializes a new instance of the <see cref="T:Aspose.Cells.StreamProviderOptions" /> class.
  17540. </summary>
  17541. </member>
  17542. <member name="P:Aspose.Cells.StreamProviderOptions.ResourceLoadingType">
  17543. <summary>
  17544. Gets and sets the type of loading resource.
  17545. </summary>
  17546. </member>
  17547. <member name="P:Aspose.Cells.StreamProviderOptions.DefaultPath">
  17548. <summary>
  17549. The default path(URL) saved in generated html file for the referred source.
  17550. For example, the sheet data saved in xxx_files/sheet001.htm, the url used in the main html file should be like "src="xxx_files/sheet001.htm""
  17551. </summary>
  17552. </member>
  17553. <member name="P:Aspose.Cells.StreamProviderOptions.CustomPath">
  17554. <summary>
  17555. The user custom path(URL) saved in generated html file for the referred source. If not defined by user, DefaultPath will be used.
  17556. For example, the sheet data will be saved by user to d:/sheet001.htm, the url used in the main html file should be "d:/sheet001.htm" or other valid relative path that can be accessed by the main html file.
  17557. </summary>
  17558. </member>
  17559. <member name="P:Aspose.Cells.StreamProviderOptions.Stream">
  17560. <summary>
  17561. Gets/Sets the stream
  17562. </summary>
  17563. </member>
  17564. <member name="T:Aspose.Cells.DeleteOptions">
  17565. <summary>
  17566. Represents the setting of deleting rows/columns.
  17567. </summary>
  17568. </member>
  17569. <member name="P:Aspose.Cells.DeleteOptions.UpdateReference">
  17570. <summary>
  17571. Indicates if update references in other worksheets.
  17572. </summary>
  17573. </member>
  17574. <member name="T:Aspose.Cells.ConditionalFormattingResult">
  17575. <summary>
  17576. Represents the result of conditional formatting which applies to a cell.
  17577. </summary>
  17578. </member>
  17579. <member name="P:Aspose.Cells.ConditionalFormattingResult.ConditionalStyle">
  17580. <summary>
  17581. Gets the conditional result style.
  17582. </summary>
  17583. </member>
  17584. <member name="P:Aspose.Cells.ConditionalFormattingResult.ConditionalFormattingIcon">
  17585. <summary>
  17586. Gets the image of icon set.
  17587. </summary>
  17588. </member>
  17589. <member name="P:Aspose.Cells.ConditionalFormattingResult.ConditionalFormattingDataBar">
  17590. <summary>
  17591. Gets the DataBar object.
  17592. </summary>
  17593. </member>
  17594. <member name="P:Aspose.Cells.ConditionalFormattingResult.ConditionalFormattingColorScale">
  17595. <summary>
  17596. Gets the ColorScale object.
  17597. </summary>
  17598. </member>
  17599. <member name="P:Aspose.Cells.ConditionalFormattingResult.ColorScaleResult">
  17600. <summary>
  17601. Gets the display color of color scale.
  17602. </summary>
  17603. </member>
  17604. <member name="T:Aspose.Cells.Pivot.PivotConditionFormatRuleType">
  17605. <summary>
  17606. Represents PivotTable condition formatting rule type.
  17607. </summary>
  17608. </member>
  17609. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatRuleType.None">
  17610. <summary>
  17611. Indicates that Top N conditional formatting is not evaluated
  17612. </summary>
  17613. </member>
  17614. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatRuleType.All">
  17615. <summary>
  17616. Indicates that Top N conditional formatting is
  17617. evaluated across the entire scope range.
  17618. </summary>
  17619. </member>
  17620. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatRuleType.Row">
  17621. <summary>
  17622. Indicates that Top N conditional formatting is evaluated for each row.
  17623. </summary>
  17624. </member>
  17625. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatRuleType.Column">
  17626. <summary>
  17627. Indicates that Top N conditional formatting is
  17628. evaluated for each column.
  17629. </summary>
  17630. </member>
  17631. <member name="T:Aspose.Cells.Revisions.Revision">
  17632. <summary>
  17633. Represents the revision.
  17634. </summary>
  17635. </member>
  17636. <member name="P:Aspose.Cells.Revisions.Revision.Type">
  17637. <summary>
  17638. Represents the type of revision.
  17639. </summary>
  17640. </member>
  17641. <member name="P:Aspose.Cells.Revisions.Revision.Worksheet">
  17642. <summary>
  17643. Gets the worksheet.
  17644. </summary>
  17645. </member>
  17646. <member name="P:Aspose.Cells.Revisions.Revision.Id">
  17647. <summary>
  17648. Gets the number of this revision.
  17649. </summary>
  17650. <remarks>
  17651. Zero means this revision does not contains id.
  17652. </remarks>
  17653. </member>
  17654. <member name="T:Aspose.Cells.Revisions.RevisionAutoFormat">
  17655. <summary>
  17656. represents a revision record of information about a formatting change.
  17657. </summary>
  17658. </member>
  17659. <member name="P:Aspose.Cells.Revisions.RevisionAutoFormat.Type">
  17660. <summary>
  17661. Gets the type of the revision.
  17662. </summary>
  17663. </member>
  17664. <member name="P:Aspose.Cells.Revisions.RevisionAutoFormat.CellArea">
  17665. <summary>
  17666. Gets the location where the formatting was applied.
  17667. </summary>
  17668. </member>
  17669. <member name="T:Aspose.Cells.Revisions.RevisionCellComment">
  17670. <summary>
  17671. Represents a revision record of a cell comment change.
  17672. </summary>
  17673. </member>
  17674. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.Type">
  17675. <summary>
  17676. Gets the type of revision.
  17677. </summary>
  17678. </member>
  17679. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.Row">
  17680. <summary>
  17681. Gets the row index of the which contains a comment.
  17682. </summary>
  17683. </member>
  17684. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.Column">
  17685. <summary>
  17686. Gets the column index of the which contains a comment.
  17687. </summary>
  17688. </member>
  17689. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.CellName">
  17690. <summary>
  17691. Gets the name of the cell.
  17692. </summary>
  17693. </member>
  17694. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.ActionType">
  17695. <summary>
  17696. Gets the action type of the revision.
  17697. </summary>
  17698. </member>
  17699. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.IsOldComment">
  17700. <summary>
  17701. Indicates whether it's an old comment.
  17702. </summary>
  17703. </member>
  17704. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.OldLength">
  17705. <summary>
  17706. Gets Length of the comment text added in this revision.
  17707. </summary>
  17708. </member>
  17709. <member name="P:Aspose.Cells.Revisions.RevisionCellComment.NewLength">
  17710. <summary>
  17711. Gets Length of the comment before this revision was made.
  17712. </summary>
  17713. </member>
  17714. <member name="T:Aspose.Cells.Revisions.RevisionCellMove">
  17715. <summary>
  17716. Represents a revision record on a cell(s) that moved.
  17717. </summary>
  17718. </member>
  17719. <member name="P:Aspose.Cells.Revisions.RevisionCellMove.Type">
  17720. <summary>
  17721. Represents the type of revision.
  17722. </summary>
  17723. </member>
  17724. <member name="P:Aspose.Cells.Revisions.RevisionCellMove.SourceArea">
  17725. <summary>
  17726. Gets the source area.
  17727. </summary>
  17728. </member>
  17729. <member name="P:Aspose.Cells.Revisions.RevisionCellMove.DestinationArea">
  17730. <summary>
  17731. Gets the destination area.
  17732. </summary>
  17733. </member>
  17734. <member name="P:Aspose.Cells.Revisions.RevisionCellMove.SourceWorksheet">
  17735. <summary>
  17736. Gets the source worksheet.
  17737. </summary>
  17738. </member>
  17739. <member name="T:Aspose.Cells.Revisions.RevisionFormat">
  17740. <summary>
  17741. represents a revision record of information about a formatting change.
  17742. </summary>
  17743. </member>
  17744. <member name="P:Aspose.Cells.Revisions.RevisionFormat.Type">
  17745. <summary>
  17746. Gets the type of revision.
  17747. </summary>
  17748. </member>
  17749. <member name="P:Aspose.Cells.Revisions.RevisionFormat.Areas">
  17750. <summary>
  17751. The range to which this formatting was applied.
  17752. </summary>
  17753. </member>
  17754. <member name="P:Aspose.Cells.Revisions.RevisionFormat.Style">
  17755. <summary>
  17756. Gets the applied style.
  17757. </summary>
  17758. </member>
  17759. <member name="T:Aspose.Cells.Revisions.RevisionInsertDelete">
  17760. <summary>
  17761. Represents a revision record of a row/column insert/delete action.
  17762. </summary>
  17763. </member>
  17764. <member name="P:Aspose.Cells.Revisions.RevisionInsertDelete.Type">
  17765. <summary>
  17766. Represents the type of revision.
  17767. </summary>
  17768. </member>
  17769. <member name="P:Aspose.Cells.Revisions.RevisionInsertDelete.CellArea">
  17770. <summary>
  17771. Gets the inserting/deleting range.
  17772. </summary>
  17773. </member>
  17774. <member name="P:Aspose.Cells.Revisions.RevisionInsertDelete.ActionType">
  17775. <summary>
  17776. Gets the action type of this revision.
  17777. </summary>
  17778. </member>
  17779. <member name="P:Aspose.Cells.Revisions.RevisionInsertDelete.Revisions">
  17780. <summary>
  17781. Gets revision list by this operation.
  17782. </summary>
  17783. </member>
  17784. <member name="T:Aspose.Cells.Revisions.RevisionInsertSheet">
  17785. <summary>
  17786. Represents a revision record of a sheet that was inserted.
  17787. </summary>
  17788. </member>
  17789. <member name="P:Aspose.Cells.Revisions.RevisionInsertSheet.Type">
  17790. <summary>
  17791. Gets the type of revision.
  17792. </summary>
  17793. </member>
  17794. <member name="P:Aspose.Cells.Revisions.RevisionInsertSheet.ActionType">
  17795. <summary>
  17796. Gets the action type of the revision.
  17797. </summary>
  17798. </member>
  17799. <member name="P:Aspose.Cells.Revisions.RevisionInsertSheet.Name">
  17800. <summary>
  17801. Gets the name of the worksheet.
  17802. </summary>
  17803. </member>
  17804. <member name="P:Aspose.Cells.Revisions.RevisionInsertSheet.SheetPosition">
  17805. <summary>
  17806. Gets the zero based position of the new sheet in the sheet tab bar.
  17807. </summary>
  17808. </member>
  17809. <member name="T:Aspose.Cells.Revisions.RevisionMergeConflict">
  17810. <summary>
  17811. Represents a revision record which indicates that there was a merge conflict.
  17812. </summary>
  17813. </member>
  17814. <member name="P:Aspose.Cells.Revisions.RevisionMergeConflict.Type">
  17815. <summary>
  17816. Gets the type of revision.
  17817. </summary>
  17818. </member>
  17819. <member name="T:Aspose.Cells.Revisions.RevisionQueryTable">
  17820. <summary>
  17821. Represents a revision of a query table field change.
  17822. </summary>
  17823. </member>
  17824. <member name="P:Aspose.Cells.Revisions.RevisionQueryTable.Type">
  17825. <summary>
  17826. Represents the type of the revision.
  17827. </summary>
  17828. </member>
  17829. <member name="P:Aspose.Cells.Revisions.RevisionQueryTable.CellArea">
  17830. <summary>
  17831. Gets the location of the affected query table.
  17832. </summary>
  17833. </member>
  17834. <member name="P:Aspose.Cells.Revisions.RevisionQueryTable.FieldId">
  17835. <summary>
  17836. Gets ID of the specific query table field that was removed.
  17837. </summary>
  17838. </member>
  17839. <member name="T:Aspose.Cells.Revisions.RevisionCellChange">
  17840. <summary>
  17841. Represents the revision that changing cells.
  17842. </summary>
  17843. </member>
  17844. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.Type">
  17845. <summary>
  17846. Represents the type of revision.
  17847. </summary>
  17848. </member>
  17849. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.CellName">
  17850. <summary>
  17851. Gets the name of the cell.
  17852. </summary>
  17853. </member>
  17854. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.Row">
  17855. <summary>
  17856. Gets the row index of the cell.
  17857. </summary>
  17858. </member>
  17859. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.Column">
  17860. <summary>
  17861. Gets the column index of the cell.
  17862. </summary>
  17863. </member>
  17864. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.IsNewFormatted">
  17865. <summary>
  17866. Indicates whether this cell is new formatted.
  17867. </summary>
  17868. </member>
  17869. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.IsOldFormatted">
  17870. <summary>
  17871. Indicates whether this cell is old formatted.
  17872. </summary>
  17873. </member>
  17874. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.OldFormula">
  17875. <summary>
  17876. Gets the old formula.
  17877. </summary>
  17878. </member>
  17879. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.OldValue">
  17880. <summary>
  17881. Gets old value of the cell.
  17882. </summary>
  17883. </member>
  17884. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.NewValue">
  17885. <summary>
  17886. Gets new value of the cell.
  17887. </summary>
  17888. </member>
  17889. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.NewFormula">
  17890. <summary>
  17891. Gets the old formula.
  17892. </summary>
  17893. </member>
  17894. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.NewStyle">
  17895. <summary>
  17896. Gets the new style of the cell.
  17897. </summary>
  17898. </member>
  17899. <member name="P:Aspose.Cells.Revisions.RevisionCellChange.OldStyle">
  17900. <summary>
  17901. Gets the old style of the cell.
  17902. </summary>
  17903. </member>
  17904. <member name="T:Aspose.Cells.Revisions.RevisionCollection">
  17905. <summary>
  17906. Represents all revision logs.
  17907. </summary>
  17908. </member>
  17909. <member name="P:Aspose.Cells.Revisions.RevisionCollection.Item(System.Int32)">
  17910. <summary>
  17911. Gets <see cref="T:Aspose.Cells.Revisions.Revision" /> by the index.
  17912. </summary>
  17913. <param name="index">
  17914. </param>
  17915. <returns>
  17916. </returns>
  17917. </member>
  17918. <member name="T:Aspose.Cells.Revisions.RevisionDefinedName">
  17919. <summary>
  17920. Represents a revision record of a defined name change.
  17921. </summary>
  17922. </member>
  17923. <member name="P:Aspose.Cells.Revisions.RevisionDefinedName.Type">
  17924. <summary>
  17925. Represents the type of revision.
  17926. </summary>
  17927. </member>
  17928. <member name="P:Aspose.Cells.Revisions.RevisionDefinedName.Text">
  17929. <summary>
  17930. Gets the text of the defined name.
  17931. </summary>
  17932. </member>
  17933. <member name="P:Aspose.Cells.Revisions.RevisionDefinedName.OldFormula">
  17934. <summary>
  17935. Gets the old formula.
  17936. </summary>
  17937. </member>
  17938. <member name="P:Aspose.Cells.Revisions.RevisionDefinedName.NewFormula">
  17939. <summary>
  17940. Gets the formula.
  17941. </summary>
  17942. </member>
  17943. <member name="T:Aspose.Cells.Revisions.RevisionLogCollection">
  17944. <summary>
  17945. Represents all revision logs.
  17946. </summary>
  17947. </member>
  17948. <member name="P:Aspose.Cells.Revisions.RevisionLogCollection.DaysPreservingHistory">
  17949. <summary>
  17950. Gets and sets the number of days the spreadsheet application will keep the change history for this workbook.
  17951. </summary>
  17952. </member>
  17953. <member name="P:Aspose.Cells.Revisions.RevisionLogCollection.Item(System.Int32)">
  17954. <summary>
  17955. Gets <see cref="T:Aspose.Cells.Revisions.RevisionLog" /> by index.
  17956. </summary>
  17957. <param name="index">The index.</param>
  17958. <returns>Returns <see cref="T:Aspose.Cells.Revisions.RevisionLog" /> object.</returns>
  17959. </member>
  17960. <member name="T:Aspose.Cells.Revisions.RevisionActionType">
  17961. <summary>
  17962. Represents the type of revision action.
  17963. </summary>
  17964. </member>
  17965. <member name="F:Aspose.Cells.Revisions.RevisionActionType.Add">
  17966. <summary>
  17967. Add revision.
  17968. </summary>
  17969. </member>
  17970. <member name="F:Aspose.Cells.Revisions.RevisionActionType.Delete">
  17971. <summary>
  17972. Delete revision.
  17973. </summary>
  17974. </member>
  17975. <member name="F:Aspose.Cells.Revisions.RevisionActionType.DeleteColumn">
  17976. <summary>
  17977. Column delete revision.
  17978. </summary>
  17979. </member>
  17980. <member name="F:Aspose.Cells.Revisions.RevisionActionType.DeleteRow">
  17981. <summary>
  17982. Row delete revision.
  17983. </summary>
  17984. </member>
  17985. <member name="F:Aspose.Cells.Revisions.RevisionActionType.InsertColumn">
  17986. <summary>
  17987. Column insert revision.
  17988. </summary>
  17989. </member>
  17990. <member name="F:Aspose.Cells.Revisions.RevisionActionType.InsertRow">
  17991. <summary>
  17992. Row insert revision.
  17993. </summary>
  17994. </member>
  17995. <member name="T:Aspose.Cells.Revisions.RevisionCustomView">
  17996. <summary>
  17997. Represents a revision record of adding or removing a custom view to the workbook
  17998. </summary>
  17999. </member>
  18000. <member name="P:Aspose.Cells.Revisions.RevisionCustomView.Type">
  18001. <summary>
  18002. Gets the type of revision.
  18003. </summary>
  18004. </member>
  18005. <member name="P:Aspose.Cells.Revisions.RevisionCustomView.ActionType">
  18006. <summary>
  18007. Gets the type of action.
  18008. </summary>
  18009. </member>
  18010. <member name="P:Aspose.Cells.Revisions.RevisionCustomView.Guid">
  18011. <summary>
  18012. Gets the globally unique identifier of the custom view.
  18013. </summary>
  18014. </member>
  18015. <member name="T:Aspose.Cells.Revisions.RevisionLog">
  18016. <summary>
  18017. Represents the revision log.
  18018. </summary>
  18019. </member>
  18020. <member name="P:Aspose.Cells.Revisions.RevisionLog.Revisions">
  18021. <summary>
  18022. Gets all revisions in this log.
  18023. </summary>
  18024. </member>
  18025. <member name="T:Aspose.Cells.Revisions.RevisionType">
  18026. <summary>
  18027. Represents the revision type.
  18028. </summary>
  18029. </member>
  18030. <member name="F:Aspose.Cells.Revisions.RevisionType.CustomView">
  18031. <summary>
  18032. Custom view.
  18033. </summary>
  18034. </member>
  18035. <member name="F:Aspose.Cells.Revisions.RevisionType.DefinedName">
  18036. <summary>
  18037. Defined name.
  18038. </summary>
  18039. </member>
  18040. <member name="F:Aspose.Cells.Revisions.RevisionType.ChangeCells">
  18041. <summary>
  18042. Cells change.
  18043. </summary>
  18044. </member>
  18045. <member name="F:Aspose.Cells.Revisions.RevisionType.AutoFormat">
  18046. <summary>
  18047. Auto format.
  18048. </summary>
  18049. </member>
  18050. <member name="F:Aspose.Cells.Revisions.RevisionType.MergeConflict">
  18051. <summary>
  18052. Merge conflict.
  18053. </summary>
  18054. </member>
  18055. <member name="F:Aspose.Cells.Revisions.RevisionType.Comment">
  18056. <summary>
  18057. Comment.
  18058. </summary>
  18059. </member>
  18060. <member name="F:Aspose.Cells.Revisions.RevisionType.Format">
  18061. <summary>
  18062. Format.
  18063. </summary>
  18064. </member>
  18065. <member name="F:Aspose.Cells.Revisions.RevisionType.InsertSheet">
  18066. <summary>
  18067. Insert worksheet.
  18068. </summary>
  18069. </member>
  18070. <member name="F:Aspose.Cells.Revisions.RevisionType.MoveCells">
  18071. <summary>
  18072. Move cells.
  18073. </summary>
  18074. </member>
  18075. <member name="F:Aspose.Cells.Revisions.RevisionType.Undo">
  18076. <summary>
  18077. Undo.
  18078. </summary>
  18079. </member>
  18080. <member name="F:Aspose.Cells.Revisions.RevisionType.QueryTable">
  18081. <summary>
  18082. Query table.
  18083. </summary>
  18084. </member>
  18085. <member name="F:Aspose.Cells.Revisions.RevisionType.InsertDelete">
  18086. <summary>
  18087. Inserting or deleting.
  18088. </summary>
  18089. </member>
  18090. <member name="F:Aspose.Cells.Revisions.RevisionType.RenameSheet">
  18091. <summary>
  18092. Rename worksheet.
  18093. </summary>
  18094. </member>
  18095. <member name="F:Aspose.Cells.Revisions.RevisionType.Unknown">
  18096. <summary>
  18097. Unknown.
  18098. </summary>
  18099. </member>
  18100. <member name="T:Aspose.Cells.Revisions.RevisionRenameSheet">
  18101. <summary>
  18102. Represents a revision of renaming sheet.
  18103. </summary>
  18104. </member>
  18105. <member name="P:Aspose.Cells.Revisions.RevisionRenameSheet.Type">
  18106. <summary>
  18107. Represents the type of the revision.
  18108. </summary>
  18109. </member>
  18110. <member name="P:Aspose.Cells.Revisions.RevisionRenameSheet.OldName">
  18111. <summary>
  18112. Gets the old name of the worksheet.
  18113. </summary>
  18114. </member>
  18115. <member name="P:Aspose.Cells.Revisions.RevisionRenameSheet.NewName">
  18116. <summary>
  18117. Gets the new name of the worksheet.
  18118. </summary>
  18119. </member>
  18120. <member name="T:Aspose.Cells.HtmlExportDataOptions">
  18121. <summary>
  18122. Represents the options for exporting html data.
  18123. </summary>
  18124. </member>
  18125. <member name="F:Aspose.Cells.HtmlExportDataOptions.Table">
  18126. <summary>
  18127. Only export table part of html file.
  18128. </summary>
  18129. </member>
  18130. <member name="F:Aspose.Cells.HtmlExportDataOptions.All">
  18131. <summary>
  18132. Export all the data of html file.
  18133. </summary>
  18134. </member>
  18135. <member name="T:Aspose.Cells.HtmlLinkTargetType">
  18136. <summary>
  18137. Represents the type of target attribute in HTML <a /> tag.
  18138. </summary>
  18139. </member>
  18140. <member name="F:Aspose.Cells.HtmlLinkTargetType.Blank">
  18141. <summary>
  18142. Opens the linked document in a new window or tab
  18143. </summary>
  18144. </member>
  18145. <member name="F:Aspose.Cells.HtmlLinkTargetType.Parent">
  18146. <summary>
  18147. Opens the linked document in the parent frame
  18148. </summary>
  18149. </member>
  18150. <member name="F:Aspose.Cells.HtmlLinkTargetType.Self">
  18151. <summary>
  18152. Opens the linked document in the same frame as it was clicked (this is default)
  18153. </summary>
  18154. </member>
  18155. <member name="F:Aspose.Cells.HtmlLinkTargetType.Top">
  18156. <summary>
  18157. Opens the linked document in the full body of the window
  18158. </summary>
  18159. </member>
  18160. <member name="T:Aspose.Cells.TxtValueQuoteType">
  18161. <summary>
  18162. Specifies the type of using quotation marks for values in text format files.
  18163. </summary>
  18164. </member>
  18165. <member name="F:Aspose.Cells.TxtValueQuoteType.Normal">
  18166. <summary>
  18167. All values that contain special characters such as quotation mark, separator character will be quoted.
  18168. Same with the behavior of ms excel for exporting text file.
  18169. </summary>
  18170. </member>
  18171. <member name="F:Aspose.Cells.TxtValueQuoteType.Always">
  18172. <summary>
  18173. All values will be quoted always.
  18174. </summary>
  18175. </member>
  18176. <member name="F:Aspose.Cells.TxtValueQuoteType.Minimum">
  18177. <summary>
  18178. Only quote values when needed. Such as, if one value contains quotation mark but the quotation mark is not at the begin of this value, this value will not be quoted.
  18179. </summary>
  18180. </member>
  18181. <member name="F:Aspose.Cells.TxtValueQuoteType.Never">
  18182. <summary>
  18183. All values will not be quoted. The exported text file with this type may not be read back correctly because the needed quotation marks being absent.
  18184. </summary>
  18185. </member>
  18186. <member name="T:Aspose.Cells.ExportObjectEvent">
  18187. <summary>
  18188. The event triggered when exporting an object, such as Picture.
  18189. </summary>
  18190. </member>
  18191. <member name="M:Aspose.Cells.ExportObjectEvent.GetSource">
  18192. Gets the object that contains the data to be saved.
  18193. @return the data source object.
  18194. <summary>
  18195. Gets the object to be exported.
  18196. </summary><returns>the object to be exported.</returns></member>
  18197. <member name="T:Aspose.Cells.HtmlHiddenRowDisplayType">
  18198. <summary>
  18199. Represents two types of showing the hidden row in html.
  18200. </summary>
  18201. </member>
  18202. <member name="F:Aspose.Cells.HtmlHiddenRowDisplayType.Hidden">
  18203. <summary>
  18204. Hidden the row in html page.
  18205. </summary>
  18206. </member>
  18207. <member name="F:Aspose.Cells.HtmlHiddenRowDisplayType.Remove">
  18208. <summary>
  18209. Remove the row in html page.
  18210. </summary>
  18211. </member>
  18212. <member name="T:Aspose.Cells.HtmlHiddenColDisplayType">
  18213. <summary>
  18214. Represents two types of showing the hidden col in html.
  18215. </summary>
  18216. </member>
  18217. <member name="F:Aspose.Cells.HtmlHiddenColDisplayType.Hidden">
  18218. <summary>
  18219. Hidden the column in html page.
  18220. </summary>
  18221. </member>
  18222. <member name="F:Aspose.Cells.HtmlHiddenColDisplayType.Remove">
  18223. <summary>
  18224. Remove the hidden in html page.
  18225. </summary>
  18226. </member>
  18227. <member name="T:Aspose.Cells.IExportObjectListener">
  18228. <summary>
  18229. Allows users to manipulate objects while exporting.
  18230. </summary>
  18231. <example>
  18232. The following example creates a Workbook, opens a file named designer.xls in it and makes the horizontal and vertical scroll bars invisible for the Workbook. It then replaces two string values with an Integer value and string value respectively within the spreadsheet and finally sends the updated file to the client browser.
  18233. <code>
  18234. [C#]
  18235. //custom implementation of IExportObjectListener
  18236. class CustomExportObjectListener : IExportObjectListener
  18237. {
  18238. private int imgIdx = 0;
  18239. public object ExportObject(ExportObjectEvent e)
  18240. {
  18241. Object source = e.GetSource();
  18242. if (source is Shape)
  18243. {
  18244. Shape shape = (Shape)source;
  18245. string url = null;
  18246. switch (shape.MsoDrawingType)
  18247. {
  18248. case MsoDrawingType.Picture:
  18249. {
  18250. url = SaveImage(((Picture)shape).Data, imgIdx, ((Picture)shape).ImageFormat);
  18251. break;
  18252. }
  18253. }
  18254. if (url != null)
  18255. {
  18256. imgIdx++;
  18257. }
  18258. return url;
  18259. }
  18260. return null;
  18261. }
  18262. private string SaveImage(byte[] data, int imgIdx, ImageFormat format)
  18263. {
  18264. //here save the image to any location, then return the url(relative or absolute) that the generated html can get the image
  18265. return "temp1/temp2.png";
  18266. }
  18267. }
  18268. //Save html file with custom listener
  18269. HtmlSaveOptions saveOptions = new HtmlSaveOptions();
  18270. saveOptions.ExportObjectListener = new CustomExportObjectListener();
  18271. Stream stream = File.Create(outfn);
  18272. book.Save(stream, saveOptions);
  18273. stream.Flush();
  18274. stream.Close();
  18275. </code></example>
  18276. </member>
  18277. <member name="M:Aspose.Cells.IExportObjectListener.ExportObject(Aspose.Cells.ExportObjectEvent)">
  18278. <summary>
  18279. Export one object.
  18280. </summary>
  18281. <param name="e">The event triggered when one object needs to be exported.</param>
  18282. <returns>
  18283. The information about the result of exporting object.
  18284. <ul><li>For exporting objects when export workbook to HTML format,
  18285. the result is URL string to access the saved Image from the html file which contains this exported object.
  18286. </li></ul></returns>
  18287. </member>
  18288. <member name="T:Aspose.Cells.QueryTable">
  18289. <summary>
  18290. Represents QueryTable information.
  18291. </summary>
  18292. </member>
  18293. <member name="P:Aspose.Cells.QueryTable.ConnectionId">
  18294. <summary>
  18295. Gets the connection id of the query table.
  18296. </summary>
  18297. </member>
  18298. <member name="P:Aspose.Cells.QueryTable.ExternalConnection">
  18299. <summary>
  18300. Gets the relate external connection.
  18301. </summary>
  18302. </member>
  18303. <member name="P:Aspose.Cells.QueryTable.Name">
  18304. <summary>
  18305. Gets the name of querytable.
  18306. </summary>
  18307. </member>
  18308. <member name="P:Aspose.Cells.QueryTable.ResultRange">
  18309. <summary>
  18310. Gets the range of the result.
  18311. </summary>
  18312. <returns>
  18313. </returns>
  18314. </member>
  18315. <member name="P:Aspose.Cells.QueryTable.PreserveFormatting">
  18316. <summary>
  18317. Returns or sets the PreserveFormatting of the object.
  18318. </summary>
  18319. </member>
  18320. <member name="P:Aspose.Cells.QueryTable.AdjustColumnWidth">
  18321. <summary>
  18322. Returns or sets the AdjustColumnWidth of the object.
  18323. </summary>
  18324. </member>
  18325. <member name="T:Aspose.Cells.QueryTableCollection">
  18326. <summary>
  18327. A collection of <see cref="T:Aspose.Cells.QueryTableCollection" /> objects that represent QueryTable collection information.
  18328. </summary>
  18329. </member>
  18330. <member name="P:Aspose.Cells.QueryTableCollection.Item(System.Int32)">
  18331. <summary>
  18332. Gets the querytable by the specific index.
  18333. </summary>
  18334. <param name="index">The index.</param>
  18335. <returns>The querytable</returns>
  18336. </member>
  18337. <member name="T:Aspose.Cells.Scenario">
  18338. <summary>
  18339. Represents an individual scenario.
  18340. </summary>
  18341. </member>
  18342. <member name="P:Aspose.Cells.Scenario.Comment">
  18343. <summary>
  18344. Gets and sets the comment of scenario.
  18345. </summary>
  18346. </member>
  18347. <member name="P:Aspose.Cells.Scenario.Name">
  18348. <summary>
  18349. Gets and sets the name of scenario.
  18350. </summary>
  18351. </member>
  18352. <member name="P:Aspose.Cells.Scenario.User">
  18353. <summary>
  18354. Gets name of user who last changed the scenario.
  18355. </summary>
  18356. </member>
  18357. <member name="P:Aspose.Cells.Scenario.IsHidden">
  18358. <summary>
  18359. Indicates whether scenario is hidden.
  18360. </summary>
  18361. </member>
  18362. <member name="P:Aspose.Cells.Scenario.IsLocked">
  18363. <summary>
  18364. Indicates whether scenario is locked for editing when the sheet is protected.
  18365. </summary>
  18366. </member>
  18367. <member name="P:Aspose.Cells.Scenario.InputCells">
  18368. <summary>
  18369. Gets the input cells of scenario.
  18370. </summary>
  18371. </member>
  18372. <member name="T:Aspose.Cells.ScenarioCollection">
  18373. <summary>
  18374. Represents the list of scenarios.
  18375. </summary>
  18376. </member>
  18377. <member name="M:Aspose.Cells.ScenarioCollection.Add(System.String)">
  18378. <summary>
  18379. Adds a scenario.
  18380. </summary>
  18381. <param name="name">The name of scenario.</param>
  18382. <returns>The index in the list of scenarios.</returns>
  18383. </member>
  18384. <member name="P:Aspose.Cells.ScenarioCollection.ActiveIndex">
  18385. <summary>
  18386. Gets and sets which scenario is selected.
  18387. </summary>
  18388. </member>
  18389. <member name="P:Aspose.Cells.ScenarioCollection.LastSelected">
  18390. <summary>
  18391. Indicates which scenario was last selected by the user to be run/shown.
  18392. </summary>
  18393. </member>
  18394. <member name="P:Aspose.Cells.ScenarioCollection.Item(System.Int32)">
  18395. <summary>
  18396. Gets the <see cref="T:Aspose.Cells.Scenario" /> object by the index.
  18397. </summary>
  18398. <param name="index">The specific index in the list.</param>
  18399. <returns>
  18400. </returns>
  18401. </member>
  18402. <member name="T:Aspose.Cells.ScenarioInputCell">
  18403. <summary>
  18404. Represents input cell for the scenario.
  18405. </summary>
  18406. </member>
  18407. <member name="P:Aspose.Cells.ScenarioInputCell.Row">
  18408. <summary>
  18409. Gets and sets the row index of the input cell.
  18410. </summary>
  18411. </member>
  18412. <member name="P:Aspose.Cells.ScenarioInputCell.Column">
  18413. <summary>
  18414. Gets and sets the column index of the input cell.
  18415. </summary>
  18416. </member>
  18417. <member name="P:Aspose.Cells.ScenarioInputCell.Name">
  18418. <summary>
  18419. Gets and sets the input cell address.
  18420. </summary>
  18421. </member>
  18422. <member name="P:Aspose.Cells.ScenarioInputCell.Value">
  18423. <summary>
  18424. Gets and sets value of the input cell.
  18425. </summary>
  18426. </member>
  18427. <member name="P:Aspose.Cells.ScenarioInputCell.IsDeleted">
  18428. <summary>
  18429. Indicates whether input cell is deleted.
  18430. </summary>
  18431. </member>
  18432. <member name="T:Aspose.Cells.ScenarioInputCellCollection">
  18433. <summary>
  18434. Represents the list of the scenario's input cells.
  18435. </summary>
  18436. </member>
  18437. <member name="M:Aspose.Cells.ScenarioInputCellCollection.Add(System.Int32,System.Int32,System.String)">
  18438. <summary>
  18439. Adds an input cell.
  18440. </summary>
  18441. <param name="row">The row index of input cell.</param>
  18442. <param name="column">The column index of input cell.</param>
  18443. <param name="value">The value of input cell.</param>
  18444. <returns>
  18445. </returns>
  18446. </member>
  18447. <member name="P:Aspose.Cells.ScenarioInputCellCollection.Item(System.Int32)">
  18448. <summary>
  18449. Gets <see cref="T:Aspose.Cells.ScenarioInputCell" /> by index in the list.
  18450. </summary>
  18451. <param name="index">The specific index in the list</param>
  18452. <returns>The <see cref="T:Aspose.Cells.ScenarioInputCell" /> object</returns>
  18453. </member>
  18454. <member name="T:Aspose.Cells.Slicers.SlicerCache">
  18455. <summary>
  18456. summary description of slicer cache
  18457. </summary>
  18458. </member>
  18459. <member name="P:Aspose.Cells.Slicers.SlicerCache.CrossFilterType">
  18460. <summary>
  18461. Returns or sets whether a slicer is participating in cross filtering with other slicers
  18462. that share the same slicer cache, and how cross filtering is displayed. Read/write
  18463. </summary>
  18464. </member>
  18465. <member name="P:Aspose.Cells.Slicers.SlicerCache.List">
  18466. <summary>
  18467. Returns whether the slicer associated with the specified slicer cache is based on an Non-OLAP data source. Read-only
  18468. </summary>
  18469. </member>
  18470. <member name="P:Aspose.Cells.Slicers.SlicerCache.SlicerCacheItems">
  18471. <summary>
  18472. Returns a SlicerCacheItem collection that contains the collection of all items in the slicer cache. Read-only
  18473. </summary>
  18474. </member>
  18475. <member name="P:Aspose.Cells.Slicers.SlicerCache.Name">
  18476. <summary>
  18477. Returns the name of the slicer cache.
  18478. </summary>
  18479. </member>
  18480. <member name="P:Aspose.Cells.Slicers.SlicerCache.SourceName">
  18481. <summary>
  18482. Returns the name of cache field
  18483. </summary>
  18484. </member>
  18485. <member name="T:Aspose.Cells.Slicers.SlicerCacheCrossFilterType">
  18486. <summary>
  18487. Represent the type of SlicerCacheCrossFilterType
  18488. </summary>
  18489. </member>
  18490. <member name="F:Aspose.Cells.Slicers.SlicerCacheCrossFilterType.None">
  18491. <summary>
  18492. The table style element of the slicer style for slicer items
  18493. with no data is not applied to slicer items with no data, and slicer items
  18494. with no data are not sorted separately in the list of slicer items in the slicer view
  18495. </summary>
  18496. </member>
  18497. <member name="F:Aspose.Cells.Slicers.SlicerCacheCrossFilterType.ShowItemsWithDataAtTop">
  18498. <summary>
  18499. The table style element of the slicer style for slicer items with
  18500. no data is applied to slicer items with no data, and slicer items
  18501. with no data are sorted at the bottom in the list of slicer items in the slicer view
  18502. </summary>
  18503. </member>
  18504. <member name="F:Aspose.Cells.Slicers.SlicerCacheCrossFilterType.ShowItemsWithNoData">
  18505. <summary>
  18506. The table style element of the slicer style for slicer items with no data
  18507. is applied to slicer items with no data, and slicer items with no data
  18508. are not sorted separately in the list of slicer items in the slicer view.
  18509. </summary>
  18510. </member>
  18511. <member name="T:Aspose.Cells.Slicers.SlicerCacheItemSortType">
  18512. <summary>
  18513. Specify the sort type of SlicerCacheItem
  18514. </summary>
  18515. </member>
  18516. <member name="F:Aspose.Cells.Slicers.SlicerCacheItemSortType.Ascending">
  18517. <summary>
  18518. Ascending sort type
  18519. </summary>
  18520. </member>
  18521. <member name="F:Aspose.Cells.Slicers.SlicerCacheItemSortType.Descending">
  18522. <summary>
  18523. Descending sort type
  18524. </summary>
  18525. </member>
  18526. <member name="T:Aspose.Cells.Slicers.SlicerCacheItem">
  18527. <summary>
  18528. Represent slicer data source item
  18529. </summary>
  18530. </member>
  18531. <member name="P:Aspose.Cells.Slicers.SlicerCacheItem.Selected">
  18532. <summary>
  18533. Specifies whether the SlicerItem is selected or not.
  18534. </summary>
  18535. </member>
  18536. <member name="T:Aspose.Cells.Slicers.SlicerCacheItemCollection">
  18537. <summary>
  18538. Represent the collection of SlicerCacheItem
  18539. </summary>
  18540. </member>
  18541. <member name="P:Aspose.Cells.Slicers.SlicerCacheItemCollection.Item(System.Int32)">
  18542. <summary>
  18543. Gets the SlicerCacheItem object by index.
  18544. </summary>
  18545. </member>
  18546. <member name="P:Aspose.Cells.Slicers.SlicerCacheItemCollection.Count">
  18547. <summary>
  18548. Gets the count of the SlicerCacheItem.
  18549. </summary>
  18550. </member>
  18551. <member name="T:Aspose.Cells.Slicers.SlicerStyleType">
  18552. <summary>
  18553. Specify the style of slicer view
  18554. </summary>
  18555. </member>
  18556. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight1">
  18557. <summary>
  18558. built-in light style one
  18559. </summary>
  18560. </member>
  18561. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight2">
  18562. <summary>
  18563. built-in light style two
  18564. </summary>
  18565. </member>
  18566. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight3">
  18567. <summary>
  18568. built-in light style three
  18569. </summary>
  18570. </member>
  18571. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight4">
  18572. <summary>
  18573. built-in light style four
  18574. </summary>
  18575. </member>
  18576. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight5">
  18577. <summary>
  18578. built-in light style five
  18579. </summary>
  18580. </member>
  18581. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleLight6">
  18582. <summary>
  18583. built-in light style six
  18584. </summary>
  18585. </member>
  18586. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleOther1">
  18587. <summary>
  18588. built-in style other one
  18589. </summary>
  18590. </member>
  18591. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleOther2">
  18592. <summary>
  18593. built-in style other two
  18594. </summary>
  18595. </member>
  18596. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark1">
  18597. <summary>
  18598. built-in dark style one
  18599. </summary>
  18600. </member>
  18601. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark2">
  18602. <summary>
  18603. built-in dark style tow
  18604. </summary>
  18605. </member>
  18606. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark3">
  18607. <summary>
  18608. built-in dark style three
  18609. </summary>
  18610. </member>
  18611. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark4">
  18612. <summary>
  18613. built-in dark style four
  18614. </summary>
  18615. </member>
  18616. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark5">
  18617. <summary>
  18618. built-in dark style five
  18619. </summary>
  18620. </member>
  18621. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.SlicerStyleDark6">
  18622. <summary>
  18623. built-in dark style six
  18624. </summary>
  18625. </member>
  18626. <member name="F:Aspose.Cells.Slicers.SlicerStyleType.Custom">
  18627. <summary>
  18628. user-defined style, unsupported for now
  18629. </summary>
  18630. <remarks>unsupported</remarks>
  18631. </member>
  18632. <member name="T:Aspose.Cells.Slicers.Slicer">
  18633. <summary>
  18634. summary description of Slicer View
  18635. </summary>
  18636. </member>
  18637. <member name="M:Aspose.Cells.Slicers.Slicer.Refresh">
  18638. <summary>
  18639. Refreshing the slicer.Meanwhile, Refreshing and Calculating relative PivotTables.
  18640. </summary>
  18641. </member>
  18642. <member name="P:Aspose.Cells.Slicers.Slicer.Title">
  18643. <summary>
  18644. Specifies the title of the current Slicer object.
  18645. </summary>
  18646. </member>
  18647. <member name="P:Aspose.Cells.Slicers.Slicer.AlternativeText">
  18648. <summary>
  18649. Returns or sets the descriptive (alternative) text string of the Slicer object.
  18650. </summary>
  18651. </member>
  18652. <member name="P:Aspose.Cells.Slicers.Slicer.IsPrintable">
  18653. <summary>
  18654. Indicates whether the slicer object is printable.
  18655. </summary>
  18656. </member>
  18657. <member name="P:Aspose.Cells.Slicers.Slicer.IsLocked">
  18658. <summary>
  18659. Indicates whether the slicer shape is locked.
  18660. </summary>
  18661. </member>
  18662. <member name="P:Aspose.Cells.Slicers.Slicer.Placement">
  18663. <summary>
  18664. Represents the way the drawing object is attached to the cells below it.
  18665. The property controls the placement of an object on a worksheet.
  18666. </summary>
  18667. </member>
  18668. <member name="P:Aspose.Cells.Slicers.Slicer.LockedAspectRatio">
  18669. <summary>
  18670. Indicates whether locking aspect ratio.
  18671. </summary>
  18672. </member>
  18673. <member name="P:Aspose.Cells.Slicers.Slicer.LockedPosition">
  18674. <summary>
  18675. Indicates whether the specified slicer can be moved or resized by using the user interface.
  18676. </summary>
  18677. </member>
  18678. <member name="P:Aspose.Cells.Slicers.Slicer.SlicerCache">
  18679. <summary>
  18680. Returns the SlicerCache object associated with the slicer. Read-only.
  18681. </summary>
  18682. </member>
  18683. <member name="P:Aspose.Cells.Slicers.Slicer.Parent">
  18684. <summary>
  18685. Returns the Worksheet object that represents the sheet that contains the slicer. Read-only.
  18686. </summary>
  18687. </member>
  18688. <member name="P:Aspose.Cells.Slicers.Slicer.StyleType">
  18689. <summary>
  18690. Specify the type of Built-in slicer style
  18691. the default type is SlicerStyleLight1
  18692. </summary>
  18693. </member>
  18694. <member name="P:Aspose.Cells.Slicers.Slicer.Name">
  18695. <summary>
  18696. Returns or sets the name of the specified slicer
  18697. </summary>
  18698. </member>
  18699. <member name="P:Aspose.Cells.Slicers.Slicer.Caption">
  18700. <summary>
  18701. Returns or sets the caption of the specified slicer.
  18702. </summary>
  18703. </member>
  18704. <member name="P:Aspose.Cells.Slicers.Slicer.CaptionVisible">
  18705. <summary>
  18706. Returns or sets whether the header that displays the slicer Caption is visible
  18707. the default value is true
  18708. </summary>
  18709. </member>
  18710. <member name="P:Aspose.Cells.Slicers.Slicer.NumberOfColumns">
  18711. <summary>
  18712. Returns or sets the number of columns in the specified slicer.
  18713. </summary>
  18714. </member>
  18715. <member name="P:Aspose.Cells.Slicers.Slicer.LeftPixel">
  18716. <summary>
  18717. Returns or sets the horizontal offset of slicer shape from its left column, in pixels.
  18718. </summary>
  18719. </member>
  18720. <member name="P:Aspose.Cells.Slicers.Slicer.TopPixel">
  18721. <summary>
  18722. Returns or sets the vertical offset of slicer shape from its top row, in pixels.
  18723. </summary>
  18724. </member>
  18725. <member name="P:Aspose.Cells.Slicers.Slicer.Width">
  18726. <summary>
  18727. Returns or sets the width of the specified slicer, in points.
  18728. </summary>
  18729. </member>
  18730. <member name="P:Aspose.Cells.Slicers.Slicer.WidthPixel">
  18731. <summary>
  18732. Returns or sets the width of the specified slicer, in pixels.
  18733. </summary>
  18734. </member>
  18735. <member name="P:Aspose.Cells.Slicers.Slicer.Height">
  18736. <summary>
  18737. Returns or sets the height of the specified slicer, in points.
  18738. </summary>
  18739. </member>
  18740. <member name="P:Aspose.Cells.Slicers.Slicer.HeightPixel">
  18741. <summary>
  18742. Returns or sets the height of the specified slicer, in pixels.
  18743. </summary>
  18744. </member>
  18745. <member name="P:Aspose.Cells.Slicers.Slicer.ColumnWidthPixel">
  18746. <summary>
  18747. Gets or sets the width in unit of pixels for each column of the slicer. 
  18748. </summary>
  18749. </member>
  18750. <member name="P:Aspose.Cells.Slicers.Slicer.ColumnWidth">
  18751. <summary>
  18752. Returns or sets the width, in points, of each column in the slicer.
  18753. </summary>
  18754. </member>
  18755. <member name="P:Aspose.Cells.Slicers.Slicer.RowHeightPixel">
  18756. <summary>
  18757. Returns or sets the height, in pixels, of each row in the specified slicer.
  18758. </summary>
  18759. </member>
  18760. <member name="P:Aspose.Cells.Slicers.Slicer.RowHeight">
  18761. <summary>
  18762. Returns or sets the height, in points, of each row in the specified slicer.
  18763. </summary>
  18764. </member>
  18765. <member name="T:Aspose.Cells.Slicers.SlicerCollection">
  18766. <summary>
  18767. Specifies the collection of all the Slicer objects on the specified worksheet.
  18768. </summary>
  18769. </member>
  18770. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Remove(Aspose.Cells.Slicers.Slicer)">
  18771. <summary>
  18772. Remove the specified Slicer
  18773. </summary>
  18774. <param name="slicer">The Slicer object</param>
  18775. </member>
  18776. <member name="M:Aspose.Cells.Slicers.SlicerCollection.RemoveAt(System.Int32)">
  18777. <summary>
  18778. Deletes the Slicer at the specified index
  18779. </summary>
  18780. <param name="index">The position index in Slicer collection</param>
  18781. </member>
  18782. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.String,System.String)">
  18783. <summary>
  18784. Add a new Slicer using PivotTable as data source
  18785. </summary>
  18786. <param name="pivot">PivotTable object</param>
  18787. <param name="destCellName">The cell in the upper-left corner of the Slicer range.</param>
  18788. <param name="baseFieldName">The name of PivotField in PivotTable.BaseFields</param>
  18789. <returns>The new add Slicer index</returns>
  18790. </member>
  18791. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.Int32,System.Int32,System.String)">
  18792. <summary>
  18793. Add a new Slicer using PivotTable as data source
  18794. </summary>
  18795. <param name="pivot">PivotTable object</param>
  18796. <param name="row">Row index of the cell in the upper-left corner of the Slicer range.</param>
  18797. <param name="column">Column index of the cell in the upper-left corner of the Slicer range.</param>
  18798. <param name="baseFieldName">The name of PivotField in PivotTable.BaseFields</param>
  18799. <returns>The new add Slicer index</returns>
  18800. </member>
  18801. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.Int32,System.Int32,System.Int32)">
  18802. <summary>
  18803. Add a new Slicer using PivotTable as data source
  18804. </summary>
  18805. <param name="pivot">PivotTable object</param>
  18806. <param name="row">Row index of the cell in the upper-left corner of the Slicer range.</param>
  18807. <param name="column">Column index of the cell in the upper-left corner of the Slicer range.</param>
  18808. <param name="baseFieldIndex">The index of PivotField in PivotTable.BaseFields</param>
  18809. <returns>The new add Slicer index</returns>
  18810. </member>
  18811. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.String,System.Int32)">
  18812. <summary>
  18813. Add a new Slicer using PivotTable as data source
  18814. </summary>
  18815. <param name="pivot">PivotTable object</param>
  18816. <param name="destCellName">The cell in the upper-left corner of the Slicer range.</param>
  18817. <param name="baseFieldIndex">The index of PivotField in PivotTable.BaseFields</param>
  18818. <returns>The new add Slicer index</returns>
  18819. </member>
  18820. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.Int32,System.Int32,Aspose.Cells.Pivot.PivotField)">
  18821. <summary>
  18822. Add a new Slicer using PivotTable as data source
  18823. </summary>
  18824. <param name="pivot">PivotTable object</param>
  18825. <param name="row">Row index of the cell in the upper-left corner of the Slicer range.</param>
  18826. <param name="column">Column index of the cell in the upper-left corner of the Slicer range.</param>
  18827. <param name="baseField">The PivotField in PivotTable.BaseFields</param>
  18828. <returns>The new add Slicer index</returns>
  18829. </member>
  18830. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Pivot.PivotTable,System.String,Aspose.Cells.Pivot.PivotField)">
  18831. <summary>
  18832. Add a new Slicer using PivotTable as data source
  18833. </summary>
  18834. <param name="pivot">PivotTable object</param>
  18835. <param name="destCellName">The cell in the upper-left corner of the Slicer range.</param>
  18836. <param name="baseField">The PivotField in PivotTable.BaseFields</param>
  18837. <returns>The new add Slicer index</returns>
  18838. </member>
  18839. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Tables.ListObject,System.Int32,System.String)">
  18840. <summary>
  18841. Add a new Slicer using ListObjet as data source
  18842. </summary>
  18843. <param name="table">ListObject object</param>
  18844. <param name="index">The index of ListColumn in ListObject.ListColumns</param>
  18845. <param name="destCellName">The cell in the upper-left corner of the Slicer range.</param>
  18846. <returns>The new add Slicer index</returns>
  18847. </member>
  18848. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Tables.ListObject,Aspose.Cells.Tables.ListColumn,System.String)">
  18849. <summary>
  18850. Add a new Slicer using ListObjet as data source
  18851. </summary>
  18852. <param name="table">ListObject object</param>
  18853. <param name="listColumn">The ListColumn in ListObject.ListColumns</param>
  18854. <param name="destCellName">The cell in the upper-left corner of the Slicer range.</param>
  18855. <returns>The new add Slicer index</returns>
  18856. </member>
  18857. <member name="M:Aspose.Cells.Slicers.SlicerCollection.Add(Aspose.Cells.Tables.ListObject,Aspose.Cells.Tables.ListColumn,System.Int32,System.Int32)">
  18858. <summary>
  18859. Add a new Slicer using ListObjet as data source
  18860. </summary>
  18861. <param name="table">ListObject object</param>
  18862. <param name="listColumn">The ListColumn in ListObject.ListColumns</param>
  18863. <param name="row">Row index of the cell in the upper-left corner of the Slicer range.</param>
  18864. <param name="column">Column index of the cell in the upper-left corner of the Slicer range.</param>
  18865. <returns>The new add Slicer index</returns>
  18866. </member>
  18867. <member name="P:Aspose.Cells.Slicers.SlicerCollection.Item(System.Int32)">
  18868. <summary>
  18869. Gets the Slicer by index.
  18870. </summary>
  18871. </member>
  18872. <member name="P:Aspose.Cells.Slicers.SlicerCollection.Item(System.String)">
  18873. <summary>
  18874. Gets the Slicer by slicer's name.
  18875. </summary>
  18876. </member>
  18877. <member name="T:Aspose.Cells.ISmartMarkerCallBack">
  18878. <summary>
  18879. Represents callback interface of processing smartmarker.
  18880. </summary>
  18881. </member>
  18882. <member name="M:Aspose.Cells.ISmartMarkerCallBack.Process(System.Int32,System.Int32,System.Int32,System.String,System.String)">
  18883. <summary>
  18884. Callback for processing a smart marker.
  18885. </summary>
  18886. <param name="sheetIndex">The sheet index.</param>
  18887. <param name="rowIndex">The row index.</param>
  18888. <param name="colIndex">The column index.</param>
  18889. <param name="tableName">The table name of smartmarker.</param>
  18890. <param name="columnName">The table name of smartmarker.</param>
  18891. </member>
  18892. <member name="T:Aspose.Cells.NumberCategoryType">
  18893. <summary>
  18894. Represents category type of cell's number formatting.
  18895. </summary>
  18896. </member>
  18897. <member name="F:Aspose.Cells.NumberCategoryType.General">
  18898. <summary>
  18899. General
  18900. </summary>
  18901. </member>
  18902. <member name="F:Aspose.Cells.NumberCategoryType.Text">
  18903. <summary>
  18904. Text
  18905. </summary>
  18906. </member>
  18907. <member name="F:Aspose.Cells.NumberCategoryType.Number">
  18908. <summary>
  18909. Number
  18910. </summary>
  18911. </member>
  18912. <member name="F:Aspose.Cells.NumberCategoryType.Date">
  18913. <summary>
  18914. Date or Date and Time
  18915. </summary>
  18916. </member>
  18917. <member name="F:Aspose.Cells.NumberCategoryType.Time">
  18918. <summary>
  18919. Time
  18920. </summary>
  18921. </member>
  18922. <member name="F:Aspose.Cells.NumberCategoryType.Fraction">
  18923. <summary>
  18924. Fraction
  18925. </summary>
  18926. </member>
  18927. <member name="F:Aspose.Cells.NumberCategoryType.Scientific">
  18928. <summary>
  18929. Scientific
  18930. </summary>
  18931. </member>
  18932. <member name="T:Aspose.Cells.TextCapsType">
  18933. <summary>
  18934. This type specifies the cap types of the text.
  18935. </summary>
  18936. </member>
  18937. <member name="F:Aspose.Cells.TextCapsType.None">
  18938. <summary>
  18939. None caps
  18940. </summary>
  18941. </member>
  18942. <member name="F:Aspose.Cells.TextCapsType.All">
  18943. <summary>
  18944. Apply all caps on the text.
  18945. </summary>
  18946. </member>
  18947. <member name="F:Aspose.Cells.TextCapsType.Small">
  18948. <summary>
  18949. Apply small caps to the text.
  18950. </summary>
  18951. </member>
  18952. <member name="T:Aspose.Cells.TextStrikeType">
  18953. <summary>
  18954. This type specifies the strike type.
  18955. </summary>
  18956. </member>
  18957. <member name="F:Aspose.Cells.TextStrikeType.Single">
  18958. <summary>
  18959. A single strikethrough applied on the text
  18960. </summary>
  18961. </member>
  18962. <member name="F:Aspose.Cells.TextStrikeType.Double">
  18963. <summary>
  18964. A double strikethrough applied on the text
  18965. </summary>
  18966. </member>
  18967. <member name="F:Aspose.Cells.TextStrikeType.None">
  18968. <summary>
  18969. No strike is applied to the text
  18970. </summary>
  18971. </member>
  18972. <member name="T:Aspose.Cells.Tables.ListObject">
  18973. <summary>
  18974. Represents a list object on a worksheet.
  18975. The ListObject object is a member of the ListObjects collection.
  18976. The ListObjects collection contains all the list objects on a worksheet.
  18977. </summary>
  18978. <example>
  18979. <code>
  18980. [C#]
  18981. Workbook workbook = new Workbook();
  18982. Cells cells = workbook.Worksheets[0].Cells;
  18983. for (int i = 0; i &lt;5; i++)
  18984. {
  18985. cells[0,i].PutValue(CellsHelper.ColumnIndexToName(i));
  18986. }
  18987. for (int row = 1; row &lt;10; row++)
  18988. {
  18989. for (int column = 0; column &lt;5; column++)
  18990. {
  18991. cells[row, column].PutValue(row * column);
  18992. }
  18993. }
  18994. ListObjectCollection tables = workbook.Worksheets[0].ListObjects;
  18995. int index = tables.Add(0, 0, 9, 4, true);
  18996. ListObject table = tables[0];
  18997. table.ShowTotals = true;
  18998. table.ListColumns[4].TotalsCalculation = Aspose.Cells.TotalsCalculation.Sum;
  18999. workbook.Save(@"C:\Book1.xlsx");
  19000. [Visual Basic]
  19001. Dim workbook As Workbook = New Workbook()
  19002. Dim cells As Cells = workbook.Worksheets(0).Cells
  19003. For i As Int32 = 0 To 4
  19004. cells(0, i).PutValue(CellsHelper.ColumnIndexToName(i))
  19005. Next
  19006. For row As Int32 = 1 To 9
  19007. For column As Int32 = 0 To 4
  19008. cells(row, column).PutValue(row * column)
  19009. Next
  19010. Next
  19011. Dim tables As ListObjectCollection = workbook.Worksheets(0).ListObjects
  19012. Dim index As Int32 = tables.Add(0, 0, 9, 4, True)
  19013. Dim table As ListObject = tables(0)
  19014. table.ShowTotals = True
  19015. table.ListColumns(4).TotalsCalculation = Aspose.Cells.TotalsCalculation.Sum
  19016. workbook.Save("C:\Book1.xlsx")
  19017. </code>
  19018. </example>
  19019. </member>
  19020. <member name="M:Aspose.Cells.Tables.ListObject.Resize(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  19021. <summary>
  19022. Resize the range of the list object.
  19023. </summary>
  19024. <param name="startRow">The start row index of the new range.</param>
  19025. <param name="startColumn">The start column index of the new range.</param>
  19026. <param name="endRow">The end row index of the new range.</param>
  19027. <param name="endColumn">The end column index of the new range.</param>
  19028. <param name="hasHeaders">Whether the ListObject has headers.</param>
  19029. </member>
  19030. <member name="M:Aspose.Cells.Tables.ListObject.PutCellValue(System.Int32,System.Int32,System.Object)">
  19031. <summary>
  19032. Put the value to the cell.
  19033. </summary>
  19034. <param name="rowOffset">The row offset.</param>
  19035. <param name="columnOffset">The column offset.</param>
  19036. <param name="value">The cell value.</param>
  19037. </member>
  19038. <member name="M:Aspose.Cells.Tables.ListObject.UpdateColumnName">
  19039. <summary>
  19040. Updates all list columns' name from the worksheet.
  19041. </summary>
  19042. <remarks>
  19043. The value of the cells in the header row of the table must be same as the name of the ListColumn;
  19044. Cell.PutValue do not auto modify the name of the ListColumn for performance.
  19045. </remarks>
  19046. </member>
  19047. <member name="M:Aspose.Cells.Tables.ListObject.ApplyStyleToRange">
  19048. <summary>
  19049. Apply the table style to the range.
  19050. </summary>
  19051. </member>
  19052. <member name="M:Aspose.Cells.Tables.ListObject.ConvertToRange">
  19053. <summary>
  19054. Convert the table to range.
  19055. </summary>
  19056. </member>
  19057. <member name="M:Aspose.Cells.Tables.ListObject.ConvertToRange(Aspose.Cells.Tables.TableToRangeOptions)">
  19058. <summary>
  19059. Convert the table to range.
  19060. </summary>
  19061. <param name="options">the options when converting table to range.</param>
  19062. </member>
  19063. <member name="P:Aspose.Cells.Tables.ListObject.StartRow">
  19064. <summary>
  19065. Gets the start row of the range.
  19066. </summary>
  19067. </member>
  19068. <member name="P:Aspose.Cells.Tables.ListObject.StartColumn">
  19069. <summary>
  19070. Gets the start column of the range.
  19071. </summary>
  19072. </member>
  19073. <member name="P:Aspose.Cells.Tables.ListObject.EndRow">
  19074. <summary>
  19075. Gets the end row of the range.
  19076. </summary>
  19077. </member>
  19078. <member name="P:Aspose.Cells.Tables.ListObject.EndColumn">
  19079. <summary>
  19080. Gets the end column of the range.
  19081. </summary>
  19082. </member>
  19083. <member name="P:Aspose.Cells.Tables.ListObject.ListColumns">
  19084. <summary>
  19085. Gets ListColumns of the ListObject.
  19086. </summary>
  19087. </member>
  19088. <member name="P:Aspose.Cells.Tables.ListObject.ShowHeaderRow">
  19089. <summary>
  19090. Gets and sets whether this ListObject show header row.
  19091. </summary>
  19092. </member>
  19093. <member name="P:Aspose.Cells.Tables.ListObject.ShowTotals">
  19094. <summary>
  19095. Gets and sets whether this ListObject show total row.
  19096. </summary>
  19097. </member>
  19098. <member name="P:Aspose.Cells.Tables.ListObject.DataRange">
  19099. <summary>
  19100. Gets the data range of the ListObject.
  19101. </summary>
  19102. </member>
  19103. <member name="P:Aspose.Cells.Tables.ListObject.QueryTable">
  19104. <summary>
  19105. Gets the linked QueryTable.
  19106. </summary>
  19107. </member>
  19108. <member name="P:Aspose.Cells.Tables.ListObject.DataSourceType">
  19109. <summary>
  19110. Gets the data source type of the table.
  19111. </summary>
  19112. </member>
  19113. <member name="P:Aspose.Cells.Tables.ListObject.AutoFilter">
  19114. <summary>
  19115. Gets auto filter.
  19116. </summary>
  19117. </member>
  19118. <member name="P:Aspose.Cells.Tables.ListObject.DisplayName">
  19119. <summary>
  19120. Gets and sets the display name.
  19121. </summary>
  19122. </member>
  19123. <member name="P:Aspose.Cells.Tables.ListObject.Comment">
  19124. <summary>
  19125. Gets and sets the comment of the table.
  19126. </summary>
  19127. </member>
  19128. <member name="P:Aspose.Cells.Tables.ListObject.ShowTableStyleFirstColumn">
  19129. <summary>
  19130. Indicates whether the first column in the table should have the style applied.
  19131. </summary>
  19132. </member>
  19133. <member name="P:Aspose.Cells.Tables.ListObject.ShowTableStyleLastColumn">
  19134. <summary>
  19135. Indicates whether the last column in the table should have the style applied.
  19136. </summary>
  19137. </member>
  19138. <member name="P:Aspose.Cells.Tables.ListObject.ShowTableStyleRowStripes">
  19139. <summary>
  19140. Indicates whether row stripe formatting is applied.
  19141. </summary>
  19142. </member>
  19143. <member name="P:Aspose.Cells.Tables.ListObject.ShowTableStyleColumnStripes">
  19144. <summary>
  19145. Indicates whether column stripe formatting is applied.
  19146. </summary>
  19147. </member>
  19148. <member name="P:Aspose.Cells.Tables.ListObject.TableStyleType">
  19149. <summary>
  19150. Gets and the built-in table style.
  19151. </summary>
  19152. </member>
  19153. <member name="P:Aspose.Cells.Tables.ListObject.TableStyleName">
  19154. <summary>
  19155. Gets and sets the table style name.
  19156. </summary>
  19157. </member>
  19158. <member name="P:Aspose.Cells.Tables.ListObject.XmlMap">
  19159. <summary>
  19160. Gets an <see cref="P:Aspose.Cells.Tables.ListObject.XmlMap" /> used for this list.
  19161. </summary>
  19162. </member>
  19163. <member name="P:Aspose.Cells.Tables.ListObject.AlternativeText">
  19164. <summary>
  19165. Gets and sets the alternative text.
  19166. </summary>
  19167. </member>
  19168. <member name="P:Aspose.Cells.Tables.ListObject.AlternativeDescription">
  19169. <summary>
  19170. Gets and sets the alternative description.
  19171. </summary>
  19172. </member>
  19173. <member name="T:Aspose.Cells.UpdateLinksType">
  19174. <summary>
  19175. Represents how to update links to other workbooks when the workbook is opened.
  19176. </summary>
  19177. </member>
  19178. <member name="F:Aspose.Cells.UpdateLinksType.UserSet">
  19179. <summary>
  19180. Prompt user to update.
  19181. </summary>
  19182. </member>
  19183. <member name="F:Aspose.Cells.UpdateLinksType.Never">
  19184. <summary>
  19185. Do not update, and do not prompt user.
  19186. </summary>
  19187. </member>
  19188. <member name="F:Aspose.Cells.UpdateLinksType.Always">
  19189. <summary>
  19190. Always update.
  19191. </summary>
  19192. </member>
  19193. <member name="T:Aspose.Cells.Validation">
  19194. <summary>
  19195. Represents data validation.settings.
  19196. </summary>
  19197. <example>
  19198. <code>
  19199. [C#]
  19200. Workbook workbook = new Workbook();
  19201. ValidationCollection validations = workbook.Worksheets[0].Validations;
  19202. Validation validation = validations[validations.Add()];
  19203. validation.Type = Aspose.Cells.ValidationType.WholeNumber;
  19204. validation.Operator = OperatorType.Between;
  19205. validation.Formula1 = "3";
  19206. validation.Formula2 = "1234";
  19207. CellArea area;
  19208. area.StartRow = 0;
  19209. area.EndRow = 1;
  19210. area.StartColumn = 0;
  19211. area.EndColumn = 1;
  19212. validation.AddArea(area);
  19213. [Visual Basic]
  19214. Dim workbook as Workbook = new Workbook()
  19215. Dim validations as ValidationCollection = workbook.Worksheets(0).Validations
  19216. Dim validation as Validation = validations(validations.Add())
  19217. validation.Type = ValidationType.WholeNumber
  19218. validation.Operator = OperatorType.Between
  19219. validation.Formula1 = "3"
  19220. validation.Formula2 = "1234"
  19221. Dim area as CellArea
  19222. area.StartRow = 0
  19223. area.EndRow = 1
  19224. area.StartColumn = 0
  19225. area.EndColumn = 1
  19226. validation.AddArea(area)
  19227. </code>
  19228. </example>
  19229. </member>
  19230. <member name="M:Aspose.Cells.Validation.GetFormula1(System.Boolean,System.Boolean)">
  19231. <summary>
  19232. Gets the value or expression associated with this validation.
  19233. </summary>
  19234. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  19235. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  19236. <returns>The value or expression associated with this validation.</returns>
  19237. </member>
  19238. <member name="M:Aspose.Cells.Validation.GetFormula2(System.Boolean,System.Boolean)">
  19239. <summary>
  19240. Gets the value or expression associated with this validation.
  19241. </summary>
  19242. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  19243. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  19244. <returns>The value or expression associated with this validation.</returns>
  19245. </member>
  19246. <member name="M:Aspose.Cells.Validation.GetFormula1(System.Boolean,System.Boolean,System.Int32,System.Int32)">
  19247. <summary>
  19248. Gets the value or expression associated with this validation for specific cell.
  19249. </summary>
  19250. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  19251. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  19252. <param name="row">The row index.</param>
  19253. <param name="column">The column index.</param>
  19254. <returns>The value or expression associated with this validation.</returns>
  19255. </member>
  19256. <member name="M:Aspose.Cells.Validation.GetFormula2(System.Boolean,System.Boolean,System.Int32,System.Int32)">
  19257. <summary>
  19258. Gets the value or expression associated with this validation for specific cell.
  19259. </summary>
  19260. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  19261. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  19262. <param name="row">The row index.</param>
  19263. <param name="column">The column index.</param>
  19264. <returns>The value or expression associated with this validation.</returns>
  19265. </member>
  19266. <member name="M:Aspose.Cells.Validation.SetFormula1(System.String,System.Boolean,System.Boolean)">
  19267. <summary>
  19268. Sets the value or expression associated with this validation.
  19269. </summary>
  19270. <param name="formula">The value or expression associated with this format condition.</param>
  19271. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  19272. <param name="isLocal">Whether the formula is locale formatted.</param>
  19273. </member>
  19274. <member name="M:Aspose.Cells.Validation.SetFormula2(System.String,System.Boolean,System.Boolean)">
  19275. <summary>
  19276. Sets the value or expression associated with this validation.
  19277. </summary>
  19278. <param name="formula">The value or expression associated with this format condition.</param>
  19279. <param name="isR1C1">Whether the formula is R1C1 formula.</param>
  19280. <param name="isLocal">Whether the formula is locale formatted.</param>
  19281. </member>
  19282. <member name="M:Aspose.Cells.Validation.GetListValue(System.Int32,System.Int32)">
  19283. <summary>
  19284. Get the value for list of the validation for the specified cell.
  19285. </summary>
  19286. <param name="row">The row index.</param>
  19287. <param name="column">The column index.</param>
  19288. <returns>The value to produce the list of this validation for the specified cell.
  19289. If the list references to a range, then the returned value will be a ReferredArea object;
  19290. Otherwise the returned value may be null, object[], or simple object.</returns>
  19291. <remarks>Only for validation whose type is List and has been applied to given cell,
  19292. otherwise null will be returned.</remarks>
  19293. </member>
  19294. <member name="M:Aspose.Cells.Validation.AddArea(Aspose.Cells.CellArea)">
  19295. <summary>
  19296. Applies the validation to the area.
  19297. </summary>
  19298. <param name="cellArea">The area.</param>
  19299. <remarks>
  19300. It is equivalent to use <see cref="M:Aspose.Cells.Validation.AddArea(Aspose.Cells.CellArea,System.Boolean,System.Boolean)" />
  19301. with checking intersection and edge.
  19302. </remarks>
  19303. </member>
  19304. <member name="M:Aspose.Cells.Validation.AddArea(Aspose.Cells.CellArea,System.Boolean,System.Boolean)">
  19305. <summary>
  19306. Applies the validation to the area.
  19307. </summary>
  19308. <param name="cellArea">The area.</param>
  19309. <param name="checkIntersection">Whether check the intersection of given area with existing validations' areas.
  19310. If one validation has been applied in given area(or part of it),
  19311. then the existing validation should be removed at first from given area.
  19312. Otherwise corruption may be caused for the generated Validations.
  19313. If user is sure that the added area does not intersect with any existing area,
  19314. this parameter can be set as false for performance consideration.</param>
  19315. <param name="checkEdge">Whether check the edge of this validation's applied areas.
  19316. Validation's internal settings depend on the top-left one of its applied ranges,
  19317. so if given area will become the new top-left one of the applied ranges,
  19318. the internal settings should be changed and rebuilt, otherwise unexpected result may be caused.
  19319. If user is sure that the added area is not the top-left one,
  19320. this parameter can be set as false for performance consideration.</param>
  19321. <remarks>
  19322. In this method, we will remove all old validations in given area.
  19323. For the top-left one of Validation's applied ranges, firstly its StartRow is smallest,
  19324. secondly its StartColumn is the smallest one of those areas who have the same smallest StartRow.
  19325. </remarks>
  19326. </member>
  19327. <member name="M:Aspose.Cells.Validation.AddAreas(Aspose.Cells.CellArea[],System.Boolean,System.Boolean)">
  19328. <summary>
  19329. Applies the validation to given areas.
  19330. </summary>
  19331. <param name="areas">The areas.</param>
  19332. <param name="checkIntersection">Whether check the intersection of given area with existing validations' areas.
  19333. If one validation has been applied in given area(or part of it),
  19334. then the existing validation should be removed at first from given area.
  19335. Otherwise corruption may be caused for the generated Validations.
  19336. If user is sure that all the added areas do not intersect with any existing area,
  19337. this parameter can be set as false for performance consideration.</param>
  19338. <param name="checkEdge">Whether check the edge of this validation's applied areas.
  19339. Validation's internal settings depend on the top-left one of its applied ranges,
  19340. so if one of given areas will become the new top-left one of the applied ranges,
  19341. the internal settings should be changed and rebuilt, otherwise unexpected result may be caused.
  19342. If user is sure that no one of those added areas is the top-left,
  19343. this parameter can be set as false for performance consideration.</param>
  19344. <remarks>
  19345. In this method, we will remove all old validations in given area.
  19346. For the top-left one of Validation's applied ranges, firstly its StartRow is smallest,
  19347. secondly its StartColumn is the smallest one of those areas who have the same smallest StartRow.
  19348. </remarks>
  19349. </member>
  19350. <member name="M:Aspose.Cells.Validation.RemoveArea(Aspose.Cells.CellArea)">
  19351. <summary>
  19352. Remove the validation settings in the range.
  19353. </summary>
  19354. <param name="cellArea">the areas where this validation settings should be removed.</param>
  19355. </member>
  19356. <member name="M:Aspose.Cells.Validation.RemoveAreas(Aspose.Cells.CellArea[])">
  19357. <summary>
  19358. Removes this validation from given areas.
  19359. </summary>
  19360. <param name="areas">the areas where this validation settings should be removed.</param>
  19361. </member>
  19362. <member name="M:Aspose.Cells.Validation.RemoveACell(System.Int32,System.Int32)">
  19363. <summary>
  19364. Remove the validation settings in the cell.
  19365. </summary>
  19366. <param name="row">The row index.</param>
  19367. <param name="column"> The column index.</param>
  19368. </member>
  19369. <member name="M:Aspose.Cells.Validation.Copy(Aspose.Cells.Validation,Aspose.Cells.CopyOptions)">
  19370. <summary>
  19371. Copy validation.
  19372. </summary>
  19373. <param name="source">The source validation.</param>
  19374. <param name="copyOption">The copy option.</param>
  19375. </member>
  19376. <member name="P:Aspose.Cells.Validation.Operator">
  19377. <summary>
  19378. Represents the operator for the data validation.
  19379. </summary>
  19380. </member>
  19381. <member name="P:Aspose.Cells.Validation.AlertStyle">
  19382. <summary>
  19383. Represents the validation alert style.
  19384. </summary>
  19385. </member>
  19386. <member name="P:Aspose.Cells.Validation.Type">
  19387. <summary>
  19388. Represents the data validation type.
  19389. </summary>
  19390. </member>
  19391. <member name="P:Aspose.Cells.Validation.InputMessage">
  19392. <summary>
  19393. Represents the data validation input message.
  19394. </summary>
  19395. </member>
  19396. <member name="P:Aspose.Cells.Validation.InputTitle">
  19397. <summary>
  19398. Represents the title of the data-validation input dialog box.
  19399. </summary>
  19400. </member>
  19401. <member name="P:Aspose.Cells.Validation.ErrorMessage">
  19402. <summary>
  19403. Represents the data validation error message.
  19404. </summary>
  19405. </member>
  19406. <member name="P:Aspose.Cells.Validation.ErrorTitle">
  19407. <summary>
  19408. Represents the title of the data-validation error dialog box.
  19409. </summary>
  19410. </member>
  19411. <member name="P:Aspose.Cells.Validation.ShowInput">
  19412. <summary>
  19413. Indicates whether the data validation input message will be displayed whenever the user selects a cell in the data validation range.
  19414. </summary>
  19415. </member>
  19416. <member name="P:Aspose.Cells.Validation.ShowError">
  19417. <summary>
  19418. Indicates whether the data validation error message will be displayed whenever the user enters invalid data.
  19419. </summary>
  19420. </member>
  19421. <member name="P:Aspose.Cells.Validation.IgnoreBlank">
  19422. <summary>
  19423. Indicates whether blank values are permitted by the range data validation.
  19424. </summary>
  19425. </member>
  19426. <member name="P:Aspose.Cells.Validation.Formula1">
  19427. <summary>
  19428. Represents the value or expression associated with the data validation.
  19429. </summary>
  19430. </member>
  19431. <member name="P:Aspose.Cells.Validation.Formula2">
  19432. <summary>
  19433. Represents the value or expression associated with the data validation.
  19434. </summary>
  19435. </member>
  19436. <member name="P:Aspose.Cells.Validation.Value1">
  19437. <summary>
  19438. Represents the first value associated with the data validation.
  19439. </summary>
  19440. </member>
  19441. <member name="P:Aspose.Cells.Validation.Value2">
  19442. <summary>
  19443. Represents the second value associated with the data validation.
  19444. </summary>
  19445. </member>
  19446. <member name="P:Aspose.Cells.Validation.InCellDropDown">
  19447. <summary>
  19448. Indicates whether data validation displays a drop-down list that contains acceptable values.
  19449. </summary>
  19450. </member>
  19451. <member name="P:Aspose.Cells.Validation.Areas">
  19452. <summary>
  19453. Gets all <see cref="T:Aspose.Cells.CellArea" /> which contain the data validation settings.
  19454. </summary>
  19455. </member>
  19456. <member name="T:Aspose.Cells.Vba.VbaModule">
  19457. <summary>
  19458. Represents module that is contained in VBA project.
  19459. </summary>
  19460. </member>
  19461. <member name="P:Aspose.Cells.Vba.VbaModule.Name">
  19462. <summary>
  19463. Gets and sets the name of Module.
  19464. </summary>
  19465. </member>
  19466. <member name="P:Aspose.Cells.Vba.VbaModule.Type">
  19467. <summary>
  19468. Gets the type of module.
  19469. </summary>
  19470. </member>
  19471. <member name="P:Aspose.Cells.Vba.VbaModule.Codes">
  19472. <summary>
  19473. Gets and sets the codes of module.
  19474. </summary>
  19475. </member>
  19476. <member name="T:Aspose.Cells.Vba.VbaModuleCollection">
  19477. <summary>
  19478. Represents the list of <see cref="T:Aspose.Cells.Vba.VbaModule" /></summary>
  19479. </member>
  19480. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.AddDesignerStorage(System.String,System.Byte[])">
  19481. <summary>
  19482. </summary>
  19483. <param name="name">
  19484. </param>
  19485. <param name="data">
  19486. </param>
  19487. </member>
  19488. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.GetDesignerStorage(System.String)">
  19489. <summary>
  19490. Represents the data of Designer.
  19491. </summary>
  19492. <remarks>
  19493. We do not support to parse them. Just only for copying.
  19494. </remarks>
  19495. </member>
  19496. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.Add(Aspose.Cells.Worksheet)">
  19497. <summary>
  19498. Adds module for a worksheet.
  19499. </summary>
  19500. <param name="sheet">The worksheet</param>
  19501. <returns>
  19502. </returns>
  19503. </member>
  19504. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.Add(Aspose.Cells.Vba.VbaModuleType,System.String)">
  19505. <summary>
  19506. Adds module.
  19507. </summary>
  19508. <param name="type">The type of module.</param>
  19509. <param name="name">The name of module.</param>
  19510. <returns>
  19511. </returns>
  19512. </member>
  19513. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.Remove(Aspose.Cells.Worksheet)">
  19514. <summary>
  19515. Removes module for a worksheet.
  19516. </summary>
  19517. <param name="sheet">The worksheet</param>
  19518. <returns>
  19519. </returns>
  19520. </member>
  19521. <member name="M:Aspose.Cells.Vba.VbaModuleCollection.Remove(System.String)">
  19522. <summary>
  19523. Remove the module by the name
  19524. </summary>
  19525. <param name="name">
  19526. </param>
  19527. </member>
  19528. <member name="P:Aspose.Cells.Vba.VbaModuleCollection.Item(System.Int32)">
  19529. <summary>
  19530. Gets <see cref="T:Aspose.Cells.Vba.VbaModule" /> in the list by the index.
  19531. </summary>
  19532. <param name="index">The index.</param>
  19533. <returns>
  19534. </returns>
  19535. </member>
  19536. <member name="P:Aspose.Cells.Vba.VbaModuleCollection.Item(System.String)">
  19537. <summary>
  19538. Gets <see cref="T:Aspose.Cells.Vba.VbaModule" /> in the list by the name.
  19539. </summary>
  19540. <param name="name">The name of module.</param>
  19541. <returns>
  19542. </returns>
  19543. </member>
  19544. <member name="T:Aspose.Cells.Vba.VbaModuleType">
  19545. <summary>
  19546. Represents the type of VBA module.
  19547. </summary>
  19548. </member>
  19549. <member name="F:Aspose.Cells.Vba.VbaModuleType.Procedural">
  19550. <summary>
  19551. Represents a procedural module.
  19552. </summary>
  19553. </member>
  19554. <member name="F:Aspose.Cells.Vba.VbaModuleType.Document">
  19555. <summary>
  19556. Represents a document module.
  19557. </summary>
  19558. </member>
  19559. <member name="F:Aspose.Cells.Vba.VbaModuleType.Class">
  19560. <summary>
  19561. Represents a class module.
  19562. </summary>
  19563. </member>
  19564. <member name="F:Aspose.Cells.Vba.VbaModuleType.Designer">
  19565. <summary>
  19566. Represents a designer module.
  19567. </summary>
  19568. </member>
  19569. <member name="T:Aspose.Cells.Vba.VbaProject">
  19570. <summary>
  19571. Represents the VBA project.
  19572. </summary>
  19573. </member>
  19574. <member name="M:Aspose.Cells.Vba.VbaProject.Sign(Aspose.Cells.DigitalSignatures.DigitalSignature)">
  19575. <summary>
  19576. Sign this VBA project by a DigitalSignature
  19577. </summary>
  19578. <param name="digitalSignature">DigitalSignature</param>
  19579. </member>
  19580. <member name="M:Aspose.Cells.Vba.VbaProject.Protect(System.Boolean,System.String)">
  19581. <summary>
  19582. Protects or unprotects this VBA project.
  19583. </summary>
  19584. <param name="islockedForViewing">indicates whether locks project for viewing.</param>
  19585. <param name="password">
  19586. If the value is null, unprotects this VBA project, otherwise projects the this VBA project.
  19587. </param>
  19588. <remarks>
  19589. If islockedForViewing is true, the password could not be null.
  19590. </remarks>
  19591. </member>
  19592. <member name="M:Aspose.Cells.Vba.VbaProject.Copy(Aspose.Cells.Vba.VbaProject)">
  19593. <summary>
  19594. Copy VBA project from other file.
  19595. </summary>
  19596. <param name="source">
  19597. </param>
  19598. </member>
  19599. <member name="P:Aspose.Cells.Vba.VbaProject.IsValidSigned">
  19600. <summary>
  19601. Indicates whether the signature of VBA project is valid or not.
  19602. </summary>
  19603. </member>
  19604. <member name="P:Aspose.Cells.Vba.VbaProject.CertRawData">
  19605. <summary>
  19606. Gets certificate raw data if this VBA project is signed.
  19607. </summary>
  19608. </member>
  19609. <member name="P:Aspose.Cells.Vba.VbaProject.Name">
  19610. <summary>
  19611. Gets and sets the name of the VBA project.
  19612. </summary>
  19613. </member>
  19614. <member name="P:Aspose.Cells.Vba.VbaProject.IsSigned">
  19615. <summary>
  19616. Indicates whether VBAcode is signed or not.
  19617. </summary>
  19618. </member>
  19619. <member name="P:Aspose.Cells.Vba.VbaProject.IsProtected">
  19620. <summary>
  19621. Indicates whether this VBA project is protected.
  19622. </summary>
  19623. </member>
  19624. <member name="P:Aspose.Cells.Vba.VbaProject.IslockedForViewing">
  19625. <summary>
  19626. Indicates whether this VBA project is locked for viewing.
  19627. </summary>
  19628. </member>
  19629. <member name="P:Aspose.Cells.Vba.VbaProject.Modules">
  19630. <summary>
  19631. Gets all <see cref="T:Aspose.Cells.Vba.VbaModule" /> objects.
  19632. </summary>
  19633. </member>
  19634. <member name="P:Aspose.Cells.Vba.VbaProject.References">
  19635. <summary>
  19636. Gets all references of VBA project.
  19637. </summary>
  19638. </member>
  19639. <member name="T:Aspose.Cells.Vba.VbaProjectReference">
  19640. <summary>
  19641. Represents the reference of VBA project.
  19642. </summary>
  19643. </member>
  19644. <member name="M:Aspose.Cells.Vba.VbaProjectReference.Copy(Aspose.Cells.Vba.VbaProjectReference)">
  19645. <summary>
  19646. </summary>
  19647. <param name="source">
  19648. </param>
  19649. </member>
  19650. <member name="P:Aspose.Cells.Vba.VbaProjectReference.Type">
  19651. <summary>
  19652. Gets the type of this reference.
  19653. </summary>
  19654. </member>
  19655. <member name="P:Aspose.Cells.Vba.VbaProjectReference.Name">
  19656. <summary>
  19657. Gets and sets the name of the reference.
  19658. </summary>
  19659. </member>
  19660. <member name="P:Aspose.Cells.Vba.VbaProjectReference.Libid">
  19661. <summary>
  19662. Gets and sets the Libid of the reference.
  19663. </summary>
  19664. </member>
  19665. <member name="P:Aspose.Cells.Vba.VbaProjectReference.Twiddledlibid">
  19666. <summary>
  19667. Gets and sets the twiddled Libid of the reference.
  19668. </summary>
  19669. <remarks>
  19670. Only for control reference.
  19671. </remarks>
  19672. </member>
  19673. <member name="P:Aspose.Cells.Vba.VbaProjectReference.ExtendedLibid">
  19674. <summary>
  19675. Gets and sets the extended Libid of the reference.
  19676. </summary>
  19677. <remarks>
  19678. Only for control reference.
  19679. </remarks>
  19680. </member>
  19681. <member name="P:Aspose.Cells.Vba.VbaProjectReference.RelativeLibid">
  19682. <summary>
  19683. Gets and sets the referenced VBA project's identifier with an relative path.
  19684. </summary>
  19685. <remarks>
  19686. Only for project reference.
  19687. </remarks>
  19688. </member>
  19689. <member name="T:Aspose.Cells.Vba.VbaProjectReferenceCollection">
  19690. <summary>
  19691. Represents all references of VBA project.
  19692. </summary>
  19693. </member>
  19694. <member name="M:Aspose.Cells.Vba.VbaProjectReferenceCollection.AddRegisteredReference(System.String,System.String)">
  19695. <summary>
  19696. Add a reference to an Automation type library.
  19697. </summary>
  19698. <param name="name">The name of reference.</param>
  19699. <param name="libid">The identifier of an Automation type library.</param>
  19700. <returns>
  19701. </returns>
  19702. </member>
  19703. <member name="M:Aspose.Cells.Vba.VbaProjectReferenceCollection.AddControlRefrernce(System.String,System.String,System.String,System.String)">
  19704. <summary>
  19705. Add a reference to a twiddled type library and its extended type library.
  19706. </summary>
  19707. <param name="name">The name of reference.</param>
  19708. <param name="libid">The identifier of an Automation type library.</param>
  19709. <param name="twiddledlibid">The identifier of a twiddled type library</param>
  19710. <param name="extendedLibid">The identifier of an extended type library</param>
  19711. <returns>
  19712. </returns>
  19713. </member>
  19714. <member name="M:Aspose.Cells.Vba.VbaProjectReferenceCollection.AddProjectRefrernce(System.String,System.String,System.String)">
  19715. <summary>
  19716. Adds a reference to an external VBA project.
  19717. </summary>
  19718. <param name="name">The name of reference.</param>
  19719. <param name="absoluteLibid">The referenced VBA project's identifier with an absolute path.</param>
  19720. <param name="relativeLibid">The referenced VBA project's identifier with an relative path.</param>
  19721. <returns>
  19722. </returns>
  19723. </member>
  19724. <member name="M:Aspose.Cells.Vba.VbaProjectReferenceCollection.Copy(Aspose.Cells.Vba.VbaProjectReferenceCollection)">
  19725. <summary>
  19726. Copies references from other VBA project.
  19727. </summary>
  19728. <param name="source">The source references.</param>
  19729. </member>
  19730. <member name="P:Aspose.Cells.Vba.VbaProjectReferenceCollection.Item(System.Int32)">
  19731. <summary>
  19732. Get the reference in the list by the index.
  19733. </summary>
  19734. <param name="i">The index.</param>
  19735. <returns>
  19736. </returns>
  19737. </member>
  19738. <member name="T:Aspose.Cells.Vba.VbaProjectReferenceType">
  19739. <summary>
  19740. Represents the type of VBA project reference.
  19741. </summary>
  19742. </member>
  19743. <member name="F:Aspose.Cells.Vba.VbaProjectReferenceType.Registered">
  19744. <summary>
  19745. Specifies a reference to an Automation type library.
  19746. </summary>
  19747. </member>
  19748. <member name="F:Aspose.Cells.Vba.VbaProjectReferenceType.Control">
  19749. <summary>
  19750. Specifies a reference to a twiddled type library and its extended type library.
  19751. </summary>
  19752. </member>
  19753. <member name="F:Aspose.Cells.Vba.VbaProjectReferenceType.Project">
  19754. <summary>
  19755. Specifies a reference to an external VBA project.
  19756. </summary>
  19757. </member>
  19758. <member name="T:Aspose.Cells.WarningInfo">
  19759. <summary>
  19760. Warning info
  19761. </summary>
  19762. </member>
  19763. <member name="P:Aspose.Cells.WarningInfo.WarningType">
  19764. <summary>
  19765. Get warning type.
  19766. </summary>
  19767. </member>
  19768. <member name="P:Aspose.Cells.WarningInfo.Description">
  19769. <summary>
  19770. Get description of warning info.
  19771. </summary>
  19772. </member>
  19773. <member name="P:Aspose.Cells.WarningInfo.ErrorObject">
  19774. <summary>
  19775. The error object.
  19776. </summary>
  19777. </member>
  19778. <member name="P:Aspose.Cells.WarningInfo.CorrectedObject">
  19779. <summary>
  19780. Gets and sets the corrected object.
  19781. </summary>
  19782. </member>
  19783. <member name="T:Aspose.Cells.WarningType">
  19784. <summary>
  19785. WaringType
  19786. </summary>
  19787. </member>
  19788. <member name="F:Aspose.Cells.WarningType.FontSubstitution">
  19789. <summary>
  19790. Font substitution warning type
  19791. when a font has not been found, this warning type can be get.
  19792. </summary>
  19793. </member>
  19794. <member name="F:Aspose.Cells.WarningType.DuplicateDefinedName">
  19795. <summary>
  19796. Duplicate defined name is found in the file.
  19797. </summary>
  19798. </member>
  19799. <member name="F:Aspose.Cells.WarningType.UnsupportedFileFormat">
  19800. <summary>
  19801. Unsupported file format.
  19802. </summary>
  19803. </member>
  19804. <member name="F:Aspose.Cells.WarningType.InvalidTextOfDefinedName">
  19805. <summary>
  19806. Invalid text of the defined name.
  19807. </summary>
  19808. </member>
  19809. <member name="F:Aspose.Cells.WarningType.InvalidFontName">
  19810. <summary>
  19811. Invalid the font name.
  19812. </summary>
  19813. </member>
  19814. <member name="F:Aspose.Cells.WarningType.InvalidAutoFilterRange">
  19815. <summary>
  19816. Invalid autofilter range.
  19817. </summary>
  19818. </member>
  19819. <member name="T:Aspose.Cells.WriteProtection">
  19820. <summary>
  19821. Specifies write protection settings for a workbook.
  19822. </summary>
  19823. </member>
  19824. <member name="M:Aspose.Cells.WriteProtection.ValidatePassword(System.String)">
  19825. <summary>
  19826. Returns true if the specified password is the same as the write-protection password the file was protected with.
  19827. </summary>
  19828. <param name="password">The specified password.</param>
  19829. <returns>
  19830. </returns>
  19831. </member>
  19832. <member name="P:Aspose.Cells.WriteProtection.Author">
  19833. <summary>
  19834. Gets and sets the author.
  19835. </summary>
  19836. </member>
  19837. <member name="P:Aspose.Cells.WriteProtection.RecommendReadOnly">
  19838. <summary>
  19839. Indicates if the Read Only Recommended option is selected.
  19840. </summary>
  19841. </member>
  19842. <member name="P:Aspose.Cells.WriteProtection.IsWriteProtected">
  19843. <summary>
  19844. Indicates whether this workbook is write protected.
  19845. </summary>
  19846. </member>
  19847. <member name="P:Aspose.Cells.WriteProtection.Password">
  19848. <summary>
  19849. Sets the protected password to modify the file.
  19850. </summary>
  19851. </member>
  19852. <member name="T:Aspose.Cells.ICustomParser">
  19853. <summary>
  19854. Allows users to add their custom value parser for parsing string values to other proper cell value object.
  19855. </summary>
  19856. </member>
  19857. <member name="M:Aspose.Cells.ICustomParser.ParseObject(System.String)">
  19858. <summary>
  19859. Parses given string to proper value object.
  19860. </summary>
  19861. <param name="value">The string value to be parsed</param>
  19862. <returns>
  19863. Parsed value object from given string. If given string cannot be parsed to proper value object, returns null.
  19864. </returns>
  19865. </member>
  19866. <member name="M:Aspose.Cells.ICustomParser.GetFormat">
  19867. <summary>
  19868. Gets the formatting pattern corresponding to the parsed value by last invocation of <see cref="M:Aspose.Cells.ICustomParser.ParseObject(System.String)" />.
  19869. </summary>
  19870. <remarks>
  19871. The returned formatting pattern may be used to format corresponding cell(set to Style.Custom for the cell).
  19872. </remarks>
  19873. </member>
  19874. <member name="T:Aspose.Cells.HtmlCrossType">
  19875. <summary>
  19876. Represents five types of html cross string.
  19877. </summary>
  19878. </member>
  19879. <member name="F:Aspose.Cells.HtmlCrossType.Default">
  19880. <summary>
  19881. Display like MS Excel,depends on the next cell.
  19882. If the next cell is null,the string will cross,or it will be truncated
  19883. </summary>
  19884. </member>
  19885. <member name="F:Aspose.Cells.HtmlCrossType.MSExport">
  19886. <summary>
  19887. Display the string like MS Excel exporting html.
  19888. </summary>
  19889. </member>
  19890. <member name="F:Aspose.Cells.HtmlCrossType.Cross">
  19891. <summary>
  19892. Display HTML cross string, this performance for creating large html files will be more than ten times faster than setting the value to Default or FitToCell.
  19893. </summary>
  19894. </member>
  19895. <member name="F:Aspose.Cells.HtmlCrossType.CrossHideRight">
  19896. <summary>
  19897. Display HTML cross string and hide the right string when the texts overlap.
  19898. </summary>
  19899. </member>
  19900. <member name="F:Aspose.Cells.HtmlCrossType.FitToCell">
  19901. <summary>
  19902. Only displaying the string within the width of cell.
  19903. </summary>
  19904. </member>
  19905. <member name="T:Aspose.Cells.Rendering.ColorDepth">
  19906. <summary>
  19907. Enumerates Bit Depth Type for tiff image.
  19908. </summary>
  19909. </member>
  19910. <member name="F:Aspose.Cells.Rendering.ColorDepth.Default">
  19911. <summary>
  19912. Default value, not set value.
  19913. </summary>
  19914. </member>
  19915. <member name="F:Aspose.Cells.Rendering.ColorDepth.Format1bpp">
  19916. <summary>
  19917. 1 bit per pixel
  19918. </summary>
  19919. </member>
  19920. <member name="F:Aspose.Cells.Rendering.ColorDepth.Format4bpp">
  19921. <summary>
  19922. 84 bits per pixel
  19923. </summary>
  19924. </member>
  19925. <member name="F:Aspose.Cells.Rendering.ColorDepth.Format8bpp">
  19926. <summary>
  19927. 8 bits per pixel
  19928. </summary>
  19929. </member>
  19930. <member name="F:Aspose.Cells.Rendering.ColorDepth.Format24bpp">
  19931. <summary>
  19932. 24 bits per pixel
  19933. </summary>
  19934. </member>
  19935. <member name="F:Aspose.Cells.Rendering.ColorDepth.Format32bpp">
  19936. <summary>
  19937. 32 bits per pixel
  19938. </summary>
  19939. </member>
  19940. <member name="T:Aspose.Cells.Rendering.DrawObject">
  19941. <summary>
  19942. DrawObject will be initialized and returned when rendering.
  19943. </summary>
  19944. </member>
  19945. <member name="P:Aspose.Cells.Rendering.DrawObject.Cell">
  19946. <summary>
  19947. Indicates the Cell object when rendering.
  19948. All properties of cell can be accessed.
  19949. </summary>
  19950. </member>
  19951. <member name="P:Aspose.Cells.Rendering.DrawObject.Shape">
  19952. <summary>
  19953. Indicates the Shape object when rendering.
  19954. All properties of shape can be accessed.
  19955. </summary>
  19956. </member>
  19957. <member name="P:Aspose.Cells.Rendering.DrawObject.ImageBytes">
  19958. <summary>
  19959. Indicates image bytes of rendered Chart, Shape when rendering.
  19960. </summary>
  19961. </member>
  19962. <member name="P:Aspose.Cells.Rendering.DrawObject.Type">
  19963. <summary>
  19964. Indicates the type of DrawObject.
  19965. </summary>
  19966. </member>
  19967. <member name="P:Aspose.Cells.Rendering.DrawObject.CurrentPage">
  19968. <summary>
  19969. Indicates the page index of DrawObject.
  19970. Page index is based on zero.
  19971. One Sheet contains several pages when rendering.
  19972. </summary>
  19973. </member>
  19974. <member name="P:Aspose.Cells.Rendering.DrawObject.TotalPages">
  19975. <summary>
  19976. Indicates total pages in current rendering.
  19977. </summary>
  19978. </member>
  19979. <member name="P:Aspose.Cells.Rendering.DrawObject.SheetIndex">
  19980. <summary>
  19981. Indicates current sheet index of DrawObject.
  19982. </summary>
  19983. </member>
  19984. <member name="T:Aspose.Cells.Rendering.DrawObjectEnum">
  19985. <summary>
  19986. Indicate Cell or Image of DrawObject.
  19987. </summary>
  19988. </member>
  19989. <member name="F:Aspose.Cells.Rendering.DrawObjectEnum.Image">
  19990. <summary>
  19991. Indicate DrawObject is an Image
  19992. </summary>
  19993. </member>
  19994. <member name="F:Aspose.Cells.Rendering.DrawObjectEnum.Cell">
  19995. <summary>
  19996. indicate DrawObject is an Cell
  19997. </summary>
  19998. </member>
  19999. <member name="T:Aspose.Cells.Rendering.DrawObjectEventHandler">
  20000. <summary>
  20001. Interface to get DrawObject and Bound when rendering.
  20002. </summary>
  20003. </member>
  20004. <member name="M:Aspose.Cells.Rendering.DrawObjectEventHandler.Draw(Aspose.Cells.Rendering.DrawObject,System.Single,System.Single,System.Single,System.Single)">
  20005. <summary>
  20006. Implements this interface to get DrawObject and Bound when rendering.
  20007. </summary>
  20008. <param name="drawObject"> DrawObject will be initialized and returned when rendering</param>
  20009. <param name="x">Left of DrawObject</param>
  20010. <param name="y">Top of DrawObject</param>
  20011. <param name="width">Width of DrawObject</param>
  20012. <param name="height">Height of DrawObject</param>
  20013. </member>
  20014. <member name="T:Aspose.Cells.GridlineType">
  20015. <summary>
  20016. Enumerates grid line Type.
  20017. </summary>
  20018. </member>
  20019. <member name="F:Aspose.Cells.GridlineType.Dotted">
  20020. <summary>
  20021. Represents dotted line.
  20022. </summary>
  20023. </member>
  20024. <member name="F:Aspose.Cells.GridlineType.Hair">
  20025. <summary>
  20026. Represents hair line.
  20027. </summary>
  20028. </member>
  20029. <member name="T:Aspose.Cells.Rendering.ImageOrPrintOptions">
  20030. <summary>
  20031. Allows to specify options when rendering worksheet to images, printing worksheet or rendering chart to image.
  20032. </summary>
  20033. <example>
  20034. <code>
  20035. [C#]
  20036. //Set Image Or Print Options
  20037. ImageOrPrintOptions options = new ImageOrPrintOptions();
  20038. //set Horizontal resolution
  20039. options.HorizontalResolution = 200;
  20040. //set Vertica; Resolution
  20041. options.VerticalResolution = 300;
  20042. //Instantiate Workbook
  20043. Workbook book = new Workbook(@"c:\test.xls");
  20044. //Save chart as Image using ImageOrPrint Options
  20045. Bitmap chartObject = book.Worksheets[0].Charts[0].ToImage(options);
  20046. [VB.NET]
  20047. 'Set Image Or Print Options
  20048. Dim options As New ImageOrPrintOptions()
  20049. 'set Horizontal resolution
  20050. options.HorizontalResolution = 200
  20051. 'set Vertica; Resolution
  20052. options.VerticalResolution = 300
  20053. 'Instantiate Workbook
  20054. Dim book As New Workbook("c:\test.xls")
  20055. 'Save chart as Image using ImageOrPrint Options
  20056. Dim chartObject As Bitmap = book.Worksheets(0).Charts(0).ToImage(options)
  20057. </code>
  20058. </example>
  20059. </member>
  20060. <member name="M:Aspose.Cells.Rendering.ImageOrPrintOptions.SetDesiredSize(System.Int32,System.Int32)">
  20061. <summary>
  20062. Sets desired width and height of image.
  20063. </summary>
  20064. <param name="desiredWidth">desired width in pixels</param>
  20065. <param name="desiredHeight">desired height in pixels</param>
  20066. </member>
  20067. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.SaveFormat">
  20068. <summary>
  20069. Gets or sets the output file format type
  20070. Support Tiff/XPS
  20071. </summary>
  20072. </member>
  20073. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.CustomPrintPageEventHandler">
  20074. <summary>
  20075. Client can special output to printer when print each page using this EventHandler
  20076. </summary>
  20077. </member>
  20078. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.CustomQueryPageSettingsEventHandler">
  20079. <summary>
  20080. Client can control page setting of printer when print each page using this EventHandler
  20081. </summary>
  20082. </member>
  20083. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PrintWithStatusDialog">
  20084. <summary>
  20085. If PrintWithStatusDialog = true , there will be a dialog that shows current print status.
  20086. else no such dialog will show.
  20087. </summary>
  20088. </member>
  20089. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.HorizontalResolution">
  20090. <summary>
  20091. Gets or sets the horizontal resolution for generated images, in dots per inch.
  20092. Applies generating image method except Emf format images.
  20093. </summary>
  20094. <remarks>
  20095. The default value is 96.
  20096. </remarks>
  20097. </member>
  20098. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.VerticalResolution">
  20099. <summary>
  20100. Gets or sets the vertical resolution for generated images, in dots per inch.
  20101. Applies generating image method except Emf format image.
  20102. </summary>
  20103. <remarks>
  20104. The default value is 96.
  20105. </remarks>
  20106. </member>
  20107. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.TiffCompression">
  20108. <summary>
  20109. Gets or sets the type of compression to apply only when saving pages to the <c>Tiff</c> format.
  20110. </summary>
  20111. <remarks>
  20112. Has effect only when saving to TIFF.
  20113. The default value is Lzw.
  20114. </remarks>
  20115. </member>
  20116. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.TiffColorDepth">
  20117. <summary>
  20118. Gets or sets bit depth to apply only when saving pages to the <c>Tiff</c> format.
  20119. </summary>
  20120. <remarks>
  20121. Has effect only when saving to TIFF.
  20122. If TiffCompression is set to CCITT3, CCITT4, this will not take effect, the bit depth of the generated tiff image will be always 1.
  20123. </remarks>
  20124. </member>
  20125. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PrintingPage">
  20126. <summary>
  20127. Indicates which pages will not be printed.
  20128. </summary>
  20129. </member>
  20130. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.Quality">
  20131. <summary>
  20132. Gets or sets a value determining the quality of the generated images
  20133. to apply only when saving pages to the <c>Jpeg</c> format. The default value is 100
  20134. </summary>
  20135. <remarks>
  20136. Has effect only when saving to JPEG.
  20137. The value must be between 0 and 100.
  20138. The default value is 100.
  20139. </remarks>
  20140. </member>
  20141. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.ImageFormat">
  20142. <summary>
  20143. Gets or sets the format of the generated images.
  20144. Don't apply the method that returns a <c>Bitmap</c> object.
  20145. </summary>
  20146. <remarks>NOTE: This member is now obsolete. Instead,
  20147. please use ImageOrPrintOptions.ImageType property.
  20148. This property will be removed 12 months later since April. 2018.
  20149. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  20150. </member>
  20151. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.ImageType">
  20152. <summary>
  20153. Gets or sets the format of the generated images.
  20154. Don't apply the method that returns a <c>Bitmap</c> object.
  20155. </summary>
  20156. <remarks>
  20157. The default value is ImageFormat.Bmp.
  20158. Don't apply the method that returns a <c>Bitmap</c> object.
  20159. </remarks>
  20160. </member>
  20161. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.IsCellAutoFit">
  20162. <summary>
  20163. Indicates whether the width and height of the cells is automatically fitted by cell value.
  20164. The default value is false.
  20165. </summary>
  20166. </member>
  20167. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.IsImageFitToPage">
  20168. <summary>
  20169. When set the value to true, the page only include the cells that have data.
  20170. The default value is false.
  20171. </summary>
  20172. </member>
  20173. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.OnePagePerSheet">
  20174. <summary>
  20175. If OnePagePerSheet is true , all content of one sheet will output to only one page in result.
  20176. The paper size of pagesetup will be invalid, and the other settings of pagesetup
  20177. will still take effect.
  20178. </summary>
  20179. </member>
  20180. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.AllColumnsInOnePagePerSheet">
  20181. <summary>
  20182. If AllColumnsInOnePagePerSheet is true , all column content of one sheet will output to only one page in result.
  20183. The width of paper size of pagesetup will be invalid, and the other settings of pagesetup
  20184. will still take effect.
  20185. </summary>
  20186. </member>
  20187. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.DrawObjectEventHandler">
  20188. <summary>
  20189. Implements this interface to get DrawObject and Bound when rendering.
  20190. </summary>
  20191. </member>
  20192. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.ChartImageType">
  20193. <summary>
  20194. Indicate the chart imagetype when converting.
  20195. </summary>
  20196. </member>
  20197. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.EmbededImageNameInSvg">
  20198. <summary>
  20199. Indicate the filename of embedded image in svg.
  20200. This should be full path with directory like "c:\\xpsEmbedded"
  20201. </summary>
  20202. </member>
  20203. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.SVGFitToViewPort">
  20204. <summary>
  20205. if this property is true, the generated svg will fit to view port.
  20206. </summary>
  20207. </member>
  20208. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.OnlyArea">
  20209. <summary>
  20210. If this property is true , one Area will be output, and no scale will take effect.
  20211. </summary>
  20212. </member>
  20213. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.TextRenderingHint">
  20214. <summary>
  20215. Specifies the quality of text rendering.
  20216. The default value is TextRenderingHint.SystemDefault
  20217. </summary>
  20218. </member>
  20219. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.SmoothingMode">
  20220. <summary>
  20221. Specifies whether smoothing (antialiasing) is applied to lines and curves and the edges of filled areas.
  20222. The default value is SmoothingMode.None
  20223. </summary>
  20224. </member>
  20225. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.Transparent">
  20226. <summary>
  20227. Indicates if the background of generated image should be transparent.
  20228. </summary>
  20229. <remarks>
  20230. The default value is false. That means the background of the generated images is white.
  20231. </remarks>
  20232. </member>
  20233. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PixelFormat">
  20234. <summary>
  20235. Gets or sets the pixel format for the generated images.
  20236. </summary>
  20237. <remarks>
  20238. The default value is PixelFormat.Format32bppArgb.
  20239. </remarks>
  20240. </member>
  20241. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.WarningCallback">
  20242. <summary>
  20243. Gets or sets warning callback.
  20244. </summary>
  20245. </member>
  20246. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PageSavingCallback">
  20247. <summary>
  20248. Control/Indicate progress of page saving process.
  20249. </summary>
  20250. </member>
  20251. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.IsFontSubstitutionCharGranularity">
  20252. <summary>
  20253. Indicates whether only substitute the font of character when the cell font is not compatibility for it.
  20254. </summary>
  20255. <remarks>
  20256. Default is false. We will try default font of Workbook and PdfSaveOption/system for cell font first.
  20257. </remarks>
  20258. </member>
  20259. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PageIndex">
  20260. <summary>
  20261. Gets or sets the 0-based index of the first page to save.
  20262. </summary>
  20263. <remarks>
  20264. Default is 0.
  20265. </remarks>
  20266. </member>
  20267. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.PageCount">
  20268. <summary>
  20269. Gets or sets the number of pages to save.
  20270. </summary>
  20271. <remarks>
  20272. Default is System.Int32.MaxValue which means all pages will be rendered..
  20273. </remarks>
  20274. </member>
  20275. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.DefaultFont">
  20276. <summary>
  20277. When characters in the Excel are unicode and not be set with correct font in cell style,
  20278. They may appear as block in pdf,image.
  20279. Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
  20280. If this property is not set, Aspose.Cells will use system default font to show these unicode characters.
  20281. </summary>
  20282. </member>
  20283. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.CheckWorkbookDefaultFont">
  20284. <summary>
  20285. When characters in the Excel are unicode and not be set with correct font in cell style,
  20286. They may appear as block in pdf,image.
  20287. Set this to true to try to use workbook's default font to show these characters first.
  20288. </summary>
  20289. <remarks>
  20290. Default is true.
  20291. </remarks>
  20292. </member>
  20293. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.OutputBlankPageWhenNothingToPrint">
  20294. <summary>
  20295. Indicates whether to output a blank page when there is nothing to print.
  20296. </summary>
  20297. <remarks>
  20298. Default is false.
  20299. </remarks>
  20300. </member>
  20301. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.GridlineType">
  20302. <summary>
  20303. Gets or sets gridline type.
  20304. </summary>
  20305. <remarks>
  20306. Default is Dotted type.
  20307. </remarks>
  20308. </member>
  20309. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.TextCrossType">
  20310. <summary>
  20311. Gets or sets displaying text type when the text width is larger than cell width.
  20312. </summary>
  20313. </member>
  20314. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.EmfType">
  20315. <summary>
  20316. Gets or sets an EmfType that specifies the format of the Metafile..
  20317. <remarks>The default value is EmfPlusDual.</remarks></summary>
  20318. </member>
  20319. <member name="P:Aspose.Cells.Rendering.ImageOrPrintOptions.DefaultEditLanguage">
  20320. <summary>
  20321. Gets or sets default edit language.
  20322. </summary>
  20323. <remarks>
  20324. It may display/render different layouts for text paragraph when different edit languages is set.
  20325. Default is <see cref="!:DefaultEditLanguage.Auto" />.
  20326. </remarks>
  20327. </member>
  20328. <member name="T:Aspose.Cells.Rendering.IPageSavingCallback">
  20329. <summary>
  20330. Control/Indicate progress of page saving process.
  20331. </summary>
  20332. </member>
  20333. <member name="M:Aspose.Cells.Rendering.IPageSavingCallback.PageStartSaving(Aspose.Cells.Rendering.PageStartSavingArgs)">
  20334. <summary>
  20335. Control/Indicate a page starts to be output.
  20336. </summary>
  20337. <param name="args">Info for a page starts saving process.</param>
  20338. </member>
  20339. <member name="M:Aspose.Cells.Rendering.IPageSavingCallback.PageEndSaving(Aspose.Cells.Rendering.PageEndSavingArgs)">
  20340. <summary>
  20341. Control/Indicate a page ends to be output.
  20342. </summary>
  20343. <param name="args">Info for a page ends saving process.</param>
  20344. </member>
  20345. <member name="T:Aspose.Cells.Rendering.PageEndSavingArgs">
  20346. <summary>
  20347. Info for a page ends saving process.
  20348. </summary>
  20349. </member>
  20350. <member name="T:Aspose.Cells.Rendering.PageSavingArgs">
  20351. <summary>
  20352. Info for a page saving process.
  20353. </summary>
  20354. </member>
  20355. <member name="P:Aspose.Cells.Rendering.PageSavingArgs.PageIndex">
  20356. <summary>
  20357. Current page index, zero based.
  20358. </summary>
  20359. </member>
  20360. <member name="P:Aspose.Cells.Rendering.PageSavingArgs.PageCount">
  20361. <summary>
  20362. Total page count.
  20363. </summary>
  20364. </member>
  20365. <member name="P:Aspose.Cells.Rendering.PageEndSavingArgs.HasMorePages">
  20366. <summary>
  20367. Gets or sets a value indicating whether having more pages to be output.
  20368. The default value is true.
  20369. </summary>
  20370. </member>
  20371. <member name="T:Aspose.Cells.Rendering.PageStartSavingArgs">
  20372. <summary>
  20373. Info for a page starts saving process.
  20374. </summary>
  20375. </member>
  20376. <member name="P:Aspose.Cells.Rendering.PageStartSavingArgs.IsToOutput">
  20377. <summary>
  20378. Gets or sets a value indicating whether the page should be output.
  20379. The default value is true.
  20380. </summary>
  20381. </member>
  20382. <member name="T:Aspose.Cells.PrintingPageType">
  20383. <summary>
  20384. Indicates which pages will not be printed.
  20385. </summary>
  20386. </member>
  20387. <member name="F:Aspose.Cells.PrintingPageType.Default">
  20388. <summary>
  20389. Prints all pages.
  20390. </summary>
  20391. </member>
  20392. <member name="F:Aspose.Cells.PrintingPageType.IgnoreBlank">
  20393. <summary>
  20394. Don't print the pages which the cells are blank.
  20395. </summary>
  20396. </member>
  20397. <member name="F:Aspose.Cells.PrintingPageType.IgnoreStyle">
  20398. <summary>
  20399. Don't print the pages which cells only contain styles.
  20400. </summary>
  20401. </member>
  20402. <member name="T:Aspose.Cells.TextCrossType">
  20403. <summary>
  20404. Enumerates displaying text type when the text width is larger than cell width.
  20405. </summary>
  20406. </member>
  20407. <member name="F:Aspose.Cells.TextCrossType.Default">
  20408. <summary>
  20409. Display text like in Microsoft Excel.
  20410. </summary>
  20411. </member>
  20412. <member name="F:Aspose.Cells.TextCrossType.CrossKeep">
  20413. <summary>
  20414. Display all the text by crossing other cells and keep text of crossed cells.
  20415. </summary>
  20416. </member>
  20417. <member name="F:Aspose.Cells.TextCrossType.CrossOverride">
  20418. <summary>
  20419. Display all the text by crossing other cells and override text of crossed cells.
  20420. </summary>
  20421. </member>
  20422. <member name="F:Aspose.Cells.TextCrossType.StrictInCell">
  20423. <summary>
  20424. Only display the text within the width of cell.
  20425. </summary>
  20426. </member>
  20427. <member name="T:Aspose.Cells.Rendering.TiffCompression">
  20428. <summary>
  20429. Specifies what type of compression to apply when saving images into TIFF format file.
  20430. </summary>
  20431. </member>
  20432. <member name="F:Aspose.Cells.Rendering.TiffCompression.CompressionNone">
  20433. <summary>
  20434. Specifies no compression.
  20435. </summary>
  20436. </member>
  20437. <member name="F:Aspose.Cells.Rendering.TiffCompression.CompressionRle">
  20438. <summary>
  20439. Specifies the RLE compression scheme.
  20440. </summary>
  20441. </member>
  20442. <member name="F:Aspose.Cells.Rendering.TiffCompression.CompressionLZW">
  20443. <summary>
  20444. Specifies the LZW compression scheme.
  20445. </summary>
  20446. </member>
  20447. <member name="F:Aspose.Cells.Rendering.TiffCompression.CompressionCCITT3">
  20448. <summary>
  20449. Specifies the CCITT3 compression scheme.
  20450. </summary>
  20451. </member>
  20452. <member name="F:Aspose.Cells.Rendering.TiffCompression.CompressionCCITT4">
  20453. <summary>
  20454. Specifies the CCITT4 compression scheme.
  20455. </summary>
  20456. </member>
  20457. <member name="T:Aspose.Cells.Rendering.SheetPrintingPreview">
  20458. <summary>
  20459. Worksheet printing preview.
  20460. </summary>
  20461. </member>
  20462. <member name="M:Aspose.Cells.Rendering.SheetPrintingPreview.#ctor(Aspose.Cells.Worksheet,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  20463. <summary>
  20464. The construct of SheetPrintingPreview
  20465. </summary>
  20466. <param name="sheet">Indicate which spreadsheet to be printed.</param>
  20467. <param name="options">ImageOrPrintOptions contains some property of output</param>
  20468. </member>
  20469. <member name="P:Aspose.Cells.Rendering.SheetPrintingPreview.EvaluatedPageCount">
  20470. <summary>
  20471. Evaluate the total page count of this worksheet
  20472. </summary>
  20473. </member>
  20474. <member name="T:Aspose.Cells.Rendering.SheetRender">
  20475. <summary>
  20476. Represents a worksheet render which can render worksheet to various images such as (BMP, PNG, JPEG, TIFF..)
  20477. The constructor of this class , must be used after modification of pagesetup, cell style.
  20478. </summary>
  20479. </member>
  20480. <member name="M:Aspose.Cells.Rendering.SheetRender.#ctor(Aspose.Cells.Worksheet,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  20481. <summary>
  20482. the construct of SheetRender, need worksheet and ImageOrPrintOptions as params
  20483. </summary>
  20484. <param name="worksheet">Indicate which spreadsheet to be rendered.</param>
  20485. <param name="options">ImageOrPrintOptions contains some property of output image</param>
  20486. </member>
  20487. <member name="M:Aspose.Cells.Rendering.SheetRender.GetPageSize(System.Int32)">
  20488. <summary>
  20489. Get page size of output image. The size unit is in pixel.
  20490. </summary>
  20491. <param name="pageIndex">The page index is based on zero.</param>
  20492. <returns>
  20493. </returns>
  20494. </member>
  20495. <member name="M:Aspose.Cells.Rendering.SheetRender.ToImage(System.Int32,System.Drawing.Graphics,System.Single,System.Single,System.Single,System.Single)">
  20496. <summary>
  20497. Render certain page to a Graphics
  20498. </summary>
  20499. <param name="pageIndex">indicate which page is to be converted</param>
  20500. <param name="g">The object where to render to.</param>
  20501. <param name="x">The X coordinate (in pixels) of the top left corner of the rendered page.</param>
  20502. <param name="y">The Y coordinate (in pixels) of the top left corner of the rendered page.</param>
  20503. <param name="width">The maximum width (in pixels) that can be occupied by the rendered page.</param>
  20504. <param name="height">The maximum height (in pixels) that can be occupied by the rendered page.</param>
  20505. </member>
  20506. <member name="M:Aspose.Cells.Rendering.SheetRender.ToImage(System.Int32,System.Drawing.Graphics,System.Single,System.Single)">
  20507. <summary>
  20508. Render certain page to a Graphics
  20509. </summary>
  20510. <param name="pageIndex">indicate which page is to be converted</param>
  20511. <param name="g">The object where to render to.</param>
  20512. <param name="x">The X coordinate (in pixels) of the top left corner of the rendered page.</param>
  20513. <param name="y">The Y coordinate (in pixels) of the top left corner of the rendered page.</param>
  20514. </member>
  20515. <member name="M:Aspose.Cells.Rendering.SheetRender.ToImage(System.Int32,System.String)">
  20516. <summary>
  20517. Render certain page to a file.
  20518. </summary>
  20519. <param name="pageIndex">indicate which page is to be converted</param>
  20520. <param name="fileName">filename of the output image</param>
  20521. </member>
  20522. <member name="M:Aspose.Cells.Rendering.SheetRender.ToImage(System.Int32,System.IO.Stream)">
  20523. <summary>
  20524. Render certain page to a stream.
  20525. </summary>
  20526. <param name="pageIndex">indicate which page is to be converted</param>
  20527. <param name="stream">the stream of the output image</param>
  20528. </member>
  20529. <member name="M:Aspose.Cells.Rendering.SheetRender.ToImage(System.Int32)">
  20530. <summary>
  20531. Render certain page to a Bitmap object.
  20532. </summary>
  20533. <param name="pageIndex">indicate which page is to be converted</param>
  20534. <returns>the bitmap object of the page</returns>
  20535. </member>
  20536. <member name="M:Aspose.Cells.Rendering.SheetRender.ToTiff(System.IO.Stream)">
  20537. <summary>
  20538. Render whole worksheet as Tiff Image to stream.
  20539. </summary>
  20540. <param name="stream">the stream of the output image</param>
  20541. </member>
  20542. <member name="M:Aspose.Cells.Rendering.SheetRender.ToTiff(System.String)">
  20543. <summary>
  20544. Render whole worksheet as Tiff Image to a file.
  20545. </summary>
  20546. <param name="filename">the filename of the output image</param>
  20547. </member>
  20548. <member name="M:Aspose.Cells.Rendering.SheetRender.ToPrinter(System.String)">
  20549. <summary>
  20550. Render worksheet to Printer
  20551. </summary>
  20552. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20553. </member>
  20554. <member name="M:Aspose.Cells.Rendering.SheetRender.ToPrinter(System.String,System.Int32,System.Int32)">
  20555. <summary>
  20556. Render worksheet to Printer
  20557. </summary>
  20558. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20559. <param name="PrintPageIndex">the 0-based index of the first page to print, it must be in Range [0, SheetRender.PageCount-1]</param>
  20560. <param name="PrintPageCount">the number of pages to print, it must be greater than zero</param>
  20561. </member>
  20562. <member name="M:Aspose.Cells.Rendering.SheetRender.ToPrinter(System.String,System.String)">
  20563. <summary>
  20564. Render worksheet to Printer
  20565. </summary>
  20566. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20567. <param name="DocumentName">set the print job name </param>
  20568. </member>
  20569. <member name="M:Aspose.Cells.Rendering.SheetRender.ToPrinter(System.Drawing.Printing.PrinterSettings)">
  20570. <summary>
  20571. Render worksheet to Printer
  20572. </summary>
  20573. <param name="PrinterSettings"> the settings of printer, e.g. PrinterName, Duplex</param>
  20574. </member>
  20575. <member name="M:Aspose.Cells.Rendering.SheetRender.CustomPrint(System.Boolean,System.Drawing.Printing.PrintPageEventArgs)">
  20576. <summary>
  20577. Client can control page setting of printer when print each page using this function.
  20578. </summary>
  20579. <param name="nextPageAfterPrint">If true , printer will go to next page after print current page</param>
  20580. <param name="printPageEventArgs">System.Drawing.Printing.PrintPageEventArgs</param>
  20581. <returns>Indirect next page index, based on zero</returns>
  20582. </member>
  20583. <member name="P:Aspose.Cells.Rendering.SheetRender.PageCount">
  20584. <summary>
  20585. Indicate the total page count of current worksheet
  20586. </summary>
  20587. </member>
  20588. <member name="P:Aspose.Cells.Rendering.SheetRender.PageScale">
  20589. <summary>
  20590. Gets calculated page scale of the sheet.
  20591. </summary>
  20592. <returns>
  20593. </returns>
  20594. </member>
  20595. <member name="T:Aspose.Cells.Rendering.WorkbookPrintingPreview">
  20596. <summary>
  20597. Workbook printing preview.
  20598. </summary>
  20599. </member>
  20600. <member name="M:Aspose.Cells.Rendering.WorkbookPrintingPreview.#ctor(Aspose.Cells.Workbook,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  20601. <summary>
  20602. The construct of WorkbookPrintingPreview
  20603. </summary>
  20604. <param name="workbook">Indicate which workbook to be printed.</param>
  20605. <param name="options">ImageOrPrintOptions contains some property of output</param>
  20606. </member>
  20607. <member name="P:Aspose.Cells.Rendering.WorkbookPrintingPreview.EvaluatedPageCount">
  20608. <summary>
  20609. Evaluate the total page count of this workbook
  20610. </summary>
  20611. </member>
  20612. <member name="T:Aspose.Cells.Rendering.WorkbookRender">
  20613. <summary>
  20614. Represents a Workbook render.
  20615. The constructor of this class , must be used after modification of pagesetup, cell style.
  20616. </summary>
  20617. <remarks>
  20618. </remarks>
  20619. </member>
  20620. <member name="M:Aspose.Cells.Rendering.WorkbookRender.#ctor(Aspose.Cells.Workbook,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  20621. <summary>
  20622. The construct of WorkbookRender
  20623. </summary>
  20624. <param name="workbook">Indicate which workbook to be rendered.</param>
  20625. <param name="options">ImageOrPrintOptions contains some property of output image</param>
  20626. </member>
  20627. <member name="M:Aspose.Cells.Rendering.WorkbookRender.GetPageSize(System.Int32)">
  20628. <summary>
  20629. Get page size of output image. The size unit is in pixel.
  20630. </summary>
  20631. <param name="pageIndex">The page index is based on zero.</param>
  20632. <returns>
  20633. </returns>
  20634. </member>
  20635. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToImage(System.IO.Stream)">
  20636. <summary>
  20637. Render whole workbook as Tiff Image to stream.
  20638. </summary>
  20639. <param name="stream">the stream of the output image</param>
  20640. </member>
  20641. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToImage(System.String)">
  20642. <summary>
  20643. Render whole workbook as Tiff Image to a file.
  20644. </summary>
  20645. <param name="filename">the filename of the output image</param>
  20646. </member>
  20647. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToImage(System.Int32,System.String)">
  20648. <summary>
  20649. Render certain page to a file.
  20650. </summary>
  20651. <param name="pageIndex">indicate which page is to be converted</param>
  20652. <param name="fileName">filename of the output image</param>
  20653. </member>
  20654. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToImage(System.Int32,System.IO.Stream)">
  20655. <summary>
  20656. Render certain page to a stream.
  20657. </summary>
  20658. <param name="pageIndex">indicate which page is to be converted</param>
  20659. <param name="stream">the stream of the output image</param>
  20660. </member>
  20661. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToImage(System.Int32)">
  20662. <summary>
  20663. Render certain page to a Bitmap object.
  20664. </summary>
  20665. <param name="pageIndex">indicate which page is to be converted</param>
  20666. <returns>the bitmap object of the page</returns>
  20667. </member>
  20668. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToPrinter(System.String)">
  20669. <summary>
  20670. Render workbook to Printer
  20671. </summary>
  20672. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20673. </member>
  20674. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToPrinter(System.String,System.Int32,System.Int32)">
  20675. <summary>
  20676. Render workbook to Printer
  20677. </summary>
  20678. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20679. <param name="PrintPageIndex">the 0-based index of the first page to print, it must be in Range [0, WorkbookRender.PageCount-1]</param>
  20680. <param name="PrintPageCount">the number of pages to print, it must be greater than zero</param>
  20681. </member>
  20682. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToPrinter(System.String,System.String)">
  20683. <summary>
  20684. Render workbook to Printer
  20685. </summary>
  20686. <param name="PrinterName">the name of the printer , for example: "Microsoft Office Document Image Writer"</param>
  20687. <param name="DocumentName">set the print job name </param>
  20688. </member>
  20689. <member name="M:Aspose.Cells.Rendering.WorkbookRender.ToPrinter(System.Drawing.Printing.PrinterSettings)">
  20690. <summary>
  20691. Render workbook to Printer
  20692. </summary>
  20693. <param name="PrinterSettings"> the settings of printer, e.g. PrinterName, Duplex</param>
  20694. </member>
  20695. <member name="M:Aspose.Cells.Rendering.WorkbookRender.CustomPrint(System.Boolean,System.Drawing.Printing.PrintPageEventArgs)">
  20696. <summary>
  20697. Client can control page setting of printer when print each page using this function.
  20698. </summary>
  20699. <param name="nextPageAfterPrint">If true , printer will go to next page after print current page</param>
  20700. <param name="printPageEventArgs">System.Drawing.Printing.PrintPageEventArgs</param>
  20701. <returns>Indirect next page index, based on zero</returns>
  20702. </member>
  20703. <member name="P:Aspose.Cells.Rendering.WorkbookRender.PageCount">
  20704. <summary>
  20705. Indicate the total page count of workbook
  20706. </summary>
  20707. </member>
  20708. <member name="T:Aspose.Cells.InsertOptions">
  20709. <summary>
  20710. Represents the options of inserting.
  20711. </summary>
  20712. </member>
  20713. <member name="P:Aspose.Cells.InsertOptions.CopyFormatType">
  20714. <summary>
  20715. </summary>
  20716. </member>
  20717. <member name="P:Aspose.Cells.InsertOptions.UpdateReference">
  20718. <summary>
  20719. Indicates if references in other worksheets will be updated.
  20720. </summary>
  20721. </member>
  20722. <member name="T:Aspose.Cells.Drawing.MsoFillFormatHelper">
  20723. <summary>
  20724. Represents fill formatting for a shape.
  20725. </summary>
  20726. </member>
  20727. <member name="M:Aspose.Cells.Drawing.MsoFillFormatHelper.SetOneColorGradient(System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  20728. <summary>
  20729. Sets the specified fill to a one-color gradient.
  20730. </summary>
  20731. <param name="color">One gradient color.</param>
  20732. <param name="degree">The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light).</param>
  20733. <param name="style">Gradient shading style.</param>
  20734. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  20735. </member>
  20736. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.ForeColor">
  20737. <summary>
  20738. Gets and sets the fill fore color.
  20739. </summary>
  20740. </member>
  20741. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.ForeColorTransparency">
  20742. <summary>
  20743. Returns or sets the degree of fore color of the specified fill as a value from 0.0 (opaque) through 1.0 (clear).
  20744. </summary>
  20745. </member>
  20746. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.BackColor">
  20747. <summary>
  20748. Gets and sets the file back color.
  20749. </summary>
  20750. </member>
  20751. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.ImageData">
  20752. <summary>
  20753. Gets and sets the Texture and Picture fill data.
  20754. </summary>
  20755. </member>
  20756. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.Texture">
  20757. <summary>
  20758. Gets the texture fill type.
  20759. </summary>
  20760. </member>
  20761. <member name="P:Aspose.Cells.Drawing.MsoFillFormatHelper.IsVisible">
  20762. <summary>
  20763. Indicates whether there is fill.
  20764. </summary>
  20765. </member>
  20766. <member name="T:Aspose.Cells.ParameterType">
  20767. <summary>
  20768. Represents all parameters' type or return value type of function.
  20769. </summary>
  20770. </member>
  20771. <member name="F:Aspose.Cells.ParameterType.Reference">
  20772. <summary>
  20773. </summary>
  20774. </member>
  20775. <member name="F:Aspose.Cells.ParameterType.Value">
  20776. <summary>
  20777. </summary>
  20778. </member>
  20779. <member name="F:Aspose.Cells.ParameterType.Array">
  20780. <summary>
  20781. </summary>
  20782. </member>
  20783. <member name="T:Aspose.Cells.ImportTableOptions">
  20784. <summary>
  20785. Represents the options of importing data into cells.
  20786. </summary>
  20787. </member>
  20788. <member name="M:Aspose.Cells.ImportTableOptions.#ctor">
  20789. <summary>
  20790. Creates the default importing options.
  20791. </summary>
  20792. </member>
  20793. <member name="P:Aspose.Cells.ImportTableOptions.ConvertGridStyle">
  20794. <summary>
  20795. Indicates whether apply the style of the grid view to cells.
  20796. </summary>
  20797. </member>
  20798. <member name="P:Aspose.Cells.ImportTableOptions.ConvertNumericData">
  20799. <summary>
  20800. Gets or sets a value that indicates whether the string value should be converted to numeric or date value.
  20801. </summary>
  20802. </member>
  20803. <member name="P:Aspose.Cells.ImportTableOptions.InsertRows">
  20804. <summary>
  20805. Indicates whether new rows should be added for importing data records.
  20806. </summary>
  20807. </member>
  20808. <member name="P:Aspose.Cells.ImportTableOptions.ShiftFirstRowDown">
  20809. <summary>
  20810. Indicates whether shifting the first row down when inserting rows.
  20811. </summary>
  20812. </member>
  20813. <member name="P:Aspose.Cells.ImportTableOptions.IsFieldNameShown">
  20814. <summary>
  20815. Indicates whether field name should be imported.
  20816. </summary>
  20817. </member>
  20818. <member name="P:Aspose.Cells.ImportTableOptions.DateFormat">
  20819. <summary>
  20820. Gets or sets date format string for cells with imported datetime values.
  20821. </summary>
  20822. </member>
  20823. <member name="P:Aspose.Cells.ImportTableOptions.NumberFormats">
  20824. <summary>
  20825. Gets or sets the number formats
  20826. </summary>
  20827. </member>
  20828. <member name="P:Aspose.Cells.ImportTableOptions.IsFormulas">
  20829. <summary>
  20830. Indicates whether the data are formulas.
  20831. </summary>
  20832. </member>
  20833. <member name="P:Aspose.Cells.ImportTableOptions.TotalRows">
  20834. <summary>
  20835. Gets or sets total row count to import from data source. -1 means all rows of given data source.
  20836. </summary>
  20837. </member>
  20838. <member name="P:Aspose.Cells.ImportTableOptions.TotalColumns">
  20839. <summary>
  20840. Gets or sets total column count to import from data source. -1 means all rows of given data source.
  20841. </summary>
  20842. </member>
  20843. <member name="P:Aspose.Cells.ImportTableOptions.ColumnIndexes">
  20844. <summary>
  20845. Gets or sets the columns(0-based) to import from data source. null means all columns should be imported.
  20846. </summary>
  20847. </member>
  20848. <member name="P:Aspose.Cells.ImportTableOptions.DefaultValues">
  20849. <summary>
  20850. Default value for the value in the table is null.
  20851. </summary>
  20852. </member>
  20853. <member name="P:Aspose.Cells.ImportTableOptions.IsHtmlString">
  20854. <summary>
  20855. Indicates whether the value contains html tags.
  20856. </summary>
  20857. </member>
  20858. <member name="P:Aspose.Cells.ImportTableOptions.CheckMergedCells">
  20859. <summary>
  20860. Indicates whether checking merged cells.
  20861. </summary>
  20862. </member>
  20863. <member name="T:Aspose.Cells.Charts.ErrorBarDisplayType">
  20864. <summary>
  20865. Represents error bar display type.
  20866. </summary>
  20867. </member>
  20868. <member name="F:Aspose.Cells.Charts.ErrorBarDisplayType.Both">
  20869. <summary>
  20870. Both
  20871. </summary>
  20872. </member>
  20873. <member name="F:Aspose.Cells.Charts.ErrorBarDisplayType.Minus">
  20874. <summary>
  20875. Minus
  20876. </summary>
  20877. </member>
  20878. <member name="F:Aspose.Cells.Charts.ErrorBarDisplayType.None">
  20879. <summary>
  20880. None
  20881. </summary>
  20882. </member>
  20883. <member name="F:Aspose.Cells.Charts.ErrorBarDisplayType.Plus">
  20884. <summary>
  20885. Plus
  20886. </summary>
  20887. </member>
  20888. <member name="T:Aspose.Cells.Drawing.FormatSetType">
  20889. <summary>
  20890. Fill format set type.
  20891. </summary>
  20892. </member>
  20893. <member name="F:Aspose.Cells.Drawing.FormatSetType.None">
  20894. <summary>
  20895. No Fill format.
  20896. </summary>
  20897. </member>
  20898. <member name="F:Aspose.Cells.Drawing.FormatSetType.IsGradientSet">
  20899. <summary>
  20900. Gradient fill format.
  20901. </summary>
  20902. </member>
  20903. <member name="F:Aspose.Cells.Drawing.FormatSetType.IsTextureSet">
  20904. <summary>
  20905. Texture fill format.
  20906. </summary>
  20907. </member>
  20908. <member name="F:Aspose.Cells.Drawing.FormatSetType.IsPatternSet">
  20909. <summary>
  20910. Pattern fill format.
  20911. </summary>
  20912. </member>
  20913. <member name="T:Aspose.Cells.Drawing.GradientStopCollection">
  20914. <summary>
  20915. Represents the gradient stop collection.
  20916. </summary>
  20917. </member>
  20918. <member name="M:Aspose.Cells.Drawing.GradientStopCollection.Add(System.Double,Aspose.Cells.CellsColor,System.Int32)">
  20919. <summary>
  20920. Add a gradient stop.
  20921. </summary>
  20922. <param name="position">The position of the stop,in unit of percentage.</param>
  20923. <param name="color">The color of the stop.</param>
  20924. <param name="alpha">The alpha of the color.</param>
  20925. </member>
  20926. <member name="M:Aspose.Cells.Drawing.GradientStopCollection.Add(System.Double,System.Drawing.Color,System.Int32)">
  20927. <summary>
  20928. Add a gradient stop.
  20929. </summary>
  20930. <param name="position">The position of the stop,in unit of percentage.</param>
  20931. <param name="color">The color of the stop.</param>
  20932. <param name="alpha">The alpha of the color.</param>
  20933. </member>
  20934. <member name="P:Aspose.Cells.Drawing.GradientStopCollection.Item(System.Int32)">
  20935. <summary>
  20936. Gets the gradient stop by the index.
  20937. </summary>
  20938. <param name="index">The index.</param>
  20939. <returns>The gradient stop.</returns>
  20940. </member>
  20941. <member name="T:Aspose.Cells.Charts.LabelPositionType">
  20942. <summary>
  20943. Represents data label position type.
  20944. </summary>
  20945. </member>
  20946. <member name="F:Aspose.Cells.Charts.LabelPositionType.Center">
  20947. <summary>
  20948. Applies only to bar, 2d/3d pie charts
  20949. </summary>
  20950. </member>
  20951. <member name="F:Aspose.Cells.Charts.LabelPositionType.InsideBase">
  20952. <summary>
  20953. Applies only to bar, 2d/3d pie charts
  20954. </summary>
  20955. </member>
  20956. <member name="F:Aspose.Cells.Charts.LabelPositionType.InsideEnd">
  20957. <summary>
  20958. Applies only to bar charts
  20959. </summary>
  20960. </member>
  20961. <member name="F:Aspose.Cells.Charts.LabelPositionType.OutsideEnd">
  20962. <summary>
  20963. Applies only to bar, 2d/3d pie charts
  20964. </summary>
  20965. </member>
  20966. <member name="F:Aspose.Cells.Charts.LabelPositionType.Above">
  20967. <summary>
  20968. Applies only to line charts
  20969. </summary>
  20970. </member>
  20971. <member name="F:Aspose.Cells.Charts.LabelPositionType.Below">
  20972. <summary>
  20973. Applies only to line charts
  20974. </summary>
  20975. </member>
  20976. <member name="F:Aspose.Cells.Charts.LabelPositionType.Left">
  20977. <summary>
  20978. Applies only to line charts
  20979. </summary>
  20980. </member>
  20981. <member name="F:Aspose.Cells.Charts.LabelPositionType.Right">
  20982. <summary>
  20983. Applies only to line charts
  20984. </summary>
  20985. </member>
  20986. <member name="F:Aspose.Cells.Charts.LabelPositionType.BestFit">
  20987. <summary>
  20988. Applies only to 2d/3d pie charts
  20989. </summary>
  20990. </member>
  20991. <member name="F:Aspose.Cells.Charts.LabelPositionType.Moved">
  20992. <summary>
  20993. User moved the data labels, Only for reading chart from template file.
  20994. </summary>
  20995. </member>
  20996. <member name="T:Aspose.Cells.Drawing.MirrorType">
  20997. <summary>
  20998. Represents mirror type of texture fill
  20999. </summary>
  21000. </member>
  21001. <member name="F:Aspose.Cells.Drawing.MirrorType.None">
  21002. <summary>
  21003. None
  21004. </summary>
  21005. </member>
  21006. <member name="F:Aspose.Cells.Drawing.MirrorType.Horizonal">
  21007. <summary>
  21008. Horizonal
  21009. </summary>
  21010. </member>
  21011. <member name="F:Aspose.Cells.Drawing.MirrorType.Vertical">
  21012. <summary>
  21013. Vertical
  21014. </summary>
  21015. </member>
  21016. <member name="F:Aspose.Cells.Drawing.MirrorType.Both">
  21017. <summary>
  21018. Both
  21019. </summary>
  21020. </member>
  21021. <member name="T:Aspose.Cells.Drawing.PicFormatOption">
  21022. <summary>
  21023. Represents picture format option
  21024. </summary>
  21025. </member>
  21026. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Type">
  21027. <summary>
  21028. Gets or sets the picture fill type.
  21029. </summary>
  21030. </member>
  21031. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Scale">
  21032. <summary>
  21033. Gets or sets how many the picture stack and scale with.
  21034. </summary>
  21035. </member>
  21036. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Left">
  21037. <summary>
  21038. Gets or sets the left offset for stretching picture.
  21039. </summary>
  21040. </member>
  21041. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Top">
  21042. <summary>
  21043. Gets or sets the top offset for stretching picture.
  21044. </summary>
  21045. </member>
  21046. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Bottom">
  21047. <summary>
  21048. Gets or sets the bottom offset for stretching picture.
  21049. </summary>
  21050. </member>
  21051. <member name="P:Aspose.Cells.Drawing.PicFormatOption.Right">
  21052. <summary>
  21053. Gets or sets the right offset for stretching picture.
  21054. </summary>
  21055. </member>
  21056. <member name="T:Aspose.Cells.Drawing.TilePicOption">
  21057. <summary>
  21058. Represents tile picture as texture.
  21059. </summary>
  21060. </member>
  21061. <member name="P:Aspose.Cells.Drawing.TilePicOption.OffsetX">
  21062. <summary>
  21063. Gets or sets the X offset for tiling picture.
  21064. </summary>
  21065. </member>
  21066. <member name="P:Aspose.Cells.Drawing.TilePicOption.OffsetY">
  21067. <summary>
  21068. Gets or sets the Y offset for tiling picture.
  21069. </summary>
  21070. </member>
  21071. <member name="P:Aspose.Cells.Drawing.TilePicOption.ScaleX">
  21072. <summary>
  21073. Gets or sets the X scale for tiling picture.
  21074. </summary>
  21075. </member>
  21076. <member name="P:Aspose.Cells.Drawing.TilePicOption.ScaleY">
  21077. <summary>
  21078. Gets or sets the Y scale for tiling picture.
  21079. </summary>
  21080. </member>
  21081. <member name="P:Aspose.Cells.Drawing.TilePicOption.MirrorType">
  21082. <summary>
  21083. Gets or sets the mirror type for tiling.
  21084. </summary>
  21085. </member>
  21086. <member name="P:Aspose.Cells.Drawing.TilePicOption.AlignmentType">
  21087. <summary>
  21088. Gets or sets the alignment for tiling.
  21089. </summary>
  21090. </member>
  21091. <member name="T:Aspose.Cells.Drawing.ShapePath">
  21092. <summary>
  21093. Represents a creation path consisting of a series of moves, lines and curves that when combined will form a geometric shape.
  21094. </summary>
  21095. </member>
  21096. <member name="M:Aspose.Cells.Drawing.ShapePath.#ctor">
  21097. <summary>
  21098. Initializes a new instance of the <see cref="T:Aspose.Cells.Drawing.ShapePath" /> class.
  21099. </summary>
  21100. </member>
  21101. <member name="P:Aspose.Cells.Drawing.ShapePath.PathSegementList">
  21102. <summary>
  21103. Gets <see cref="T:Aspose.Cells.Drawing.ShapeSegmentPathCollection" /> list
  21104. </summary>
  21105. </member>
  21106. <member name="T:Aspose.Cells.Drawing.ShapePathCollection">
  21107. <summary>
  21108. Represents path collection information in NotPrimitive autoshape
  21109. </summary>
  21110. </member>
  21111. <member name="M:Aspose.Cells.Drawing.ShapePathCollection.Add">
  21112. <summary>
  21113. Add a creation path.
  21114. </summary>
  21115. <returns>Returns <see cref="T:Aspose.Cells.Drawing.ShapePath" /> object.</returns>
  21116. </member>
  21117. <member name="P:Aspose.Cells.Drawing.ShapePathCollection.Count">
  21118. <summary>
  21119. Gets the count of paths
  21120. </summary>
  21121. </member>
  21122. <member name="P:Aspose.Cells.Drawing.ShapePathCollection.Item(System.Int32)">
  21123. <summary>
  21124. Gets a creation path.
  21125. </summary>
  21126. <param name="index">The index.</param>
  21127. <returns>Returns <see cref="T:Aspose.Cells.Drawing.ShapePath" /> object.</returns>
  21128. </member>
  21129. <member name="T:Aspose.Cells.Drawing.ShapeSegmentPath">
  21130. <summary>
  21131. Represents a segment path in a path of the freeform.
  21132. </summary>
  21133. </member>
  21134. <member name="P:Aspose.Cells.Drawing.ShapeSegmentPath.Type">
  21135. <summary>
  21136. Gets the path segment type
  21137. </summary>
  21138. </member>
  21139. <member name="P:Aspose.Cells.Drawing.ShapeSegmentPath.Points">
  21140. <summary>
  21141. Gets the points in path segment
  21142. </summary>
  21143. </member>
  21144. <member name="T:Aspose.Cells.Drawing.ShapePathType">
  21145. <summary>
  21146. Represents path segment type.
  21147. </summary>
  21148. </member>
  21149. <member name="F:Aspose.Cells.Drawing.ShapePathType.LineTo">
  21150. <summary>
  21151. Straight line segment
  21152. </summary>
  21153. </member>
  21154. <member name="F:Aspose.Cells.Drawing.ShapePathType.CubicBezierCurveTo">
  21155. <summary>
  21156. Cubic Bezier curve
  21157. </summary>
  21158. </member>
  21159. <member name="F:Aspose.Cells.Drawing.ShapePathType.MoveTo">
  21160. <summary>
  21161. Start a new path
  21162. </summary>
  21163. </member>
  21164. <member name="F:Aspose.Cells.Drawing.ShapePathType.Close">
  21165. <summary>
  21166. If the starting POINT and the end POINT are not the same, a single
  21167. straight line is drawn to connect the starting POINT and ending POINT of the path.
  21168. </summary>
  21169. </member>
  21170. <member name="F:Aspose.Cells.Drawing.ShapePathType.End">
  21171. <summary>
  21172. The end of the current path
  21173. </summary>
  21174. </member>
  21175. <member name="F:Aspose.Cells.Drawing.ShapePathType.Escape">
  21176. <summary>
  21177. Escape
  21178. </summary>
  21179. </member>
  21180. <member name="F:Aspose.Cells.Drawing.ShapePathType.ArcTo">
  21181. <summary>
  21182. An arc
  21183. </summary>
  21184. </member>
  21185. <member name="F:Aspose.Cells.Drawing.ShapePathType.Unknown">
  21186. <summary>
  21187. Unknown
  21188. </summary>
  21189. </member>
  21190. <member name="T:Aspose.Cells.ErrorCheckOptionCollection">
  21191. <summary>
  21192. Represents all error check option.
  21193. </summary>
  21194. </member>
  21195. <member name="M:Aspose.Cells.ErrorCheckOptionCollection.Add">
  21196. <summary>
  21197. Add an error check option.
  21198. </summary>
  21199. <returns>
  21200. </returns>
  21201. </member>
  21202. <member name="P:Aspose.Cells.ErrorCheckOptionCollection.Item(System.Int32)">
  21203. <summary>
  21204. Gets <see cref="T:Aspose.Cells.ErrorCheckOption" /> object by the given index.
  21205. </summary>
  21206. <param name="index">The index</param>
  21207. <returns>Return <see cref="T:Aspose.Cells.ErrorCheckOption" /> object </returns>
  21208. </member>
  21209. <member name="T:Aspose.Cells.ErrorCheckOption">
  21210. <summary>
  21211. Error check setting applied on certain ranges.
  21212. </summary>
  21213. <example>
  21214. <code>
  21215. [C#]
  21216. Workbook workbook = new Workbook();
  21217. ErrorCheckOptionCollection opts = workbook.Worksheets[0].ErrorCheckOptions;
  21218. int optionIdx = opts.Add();
  21219. ErrorCheckOption opt = opts[optionIdx];
  21220. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistFormula, false);
  21221. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistRange, false);
  21222. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextDate, false);
  21223. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextNumber, false);
  21224. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.Validation, false);
  21225. opt.AddRange(CellArea.CreateCellArea("A1", "B10"));
  21226. workbook.Save(@"D:\Filetemp\Book1.xlsx");
  21227. [Visual Basic]
  21228. Dim workbook As Workbook = New Workbook()
  21229. Dim opts As ErrorCheckOptionCollection = workbook.Worksheets(0).ErrorCheckOptions
  21230. Dim optionIdx As Integer = opts.Add()
  21231. Dim opt As ErrorCheckOption = opts(optionIdx)
  21232. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistFormula, False)
  21233. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.InconsistRange, False)
  21234. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextDate, False)
  21235. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.TextNumber, False)
  21236. opt.SetErrorCheck(Aspose.Cells.ErrorCheckType.Validation, False)
  21237. opt.AddRange(CellArea.CreateCellArea("A1", "B10"))
  21238. workbook.Save("D:\Filetemp\Book1.xlsx")
  21239. </code>
  21240. </example>
  21241. </member>
  21242. <member name="M:Aspose.Cells.ErrorCheckOption.IsErrorCheck(Aspose.Cells.ErrorCheckType)">
  21243. <summary>
  21244. Checks whether given error type will be checked.
  21245. </summary>
  21246. <param name="errorCheckType">error type can be checked</param>
  21247. <returns>return true if given error type will be checked(green triangle will be shown for cell if the check failed).</returns>
  21248. </member>
  21249. <member name="M:Aspose.Cells.ErrorCheckOption.SetErrorCheck(Aspose.Cells.ErrorCheckType,System.Boolean)">
  21250. <summary>
  21251. Sets whether given error type will be checked.
  21252. </summary>
  21253. <param name="errorCheckType">error type can be checked.</param>
  21254. <param name="isCheck">true if given error type needs to be checked(green triangle will be shown for cell if the check failed).</param>
  21255. </member>
  21256. <member name="M:Aspose.Cells.ErrorCheckOption.GetCountOfRange">
  21257. <summary>
  21258. Gets the count of ranges that influenced by this setting.
  21259. </summary>
  21260. <returns>the count of ranges that influenced by this setting.</returns>
  21261. </member>
  21262. <member name="M:Aspose.Cells.ErrorCheckOption.AddRange(Aspose.Cells.CellArea)">
  21263. <summary>
  21264. Adds one influenced range by this setting.
  21265. </summary>
  21266. <param name="ca">the range to be added.</param>
  21267. <returns>the index of the added range in the range list of this setting.</returns>
  21268. </member>
  21269. <member name="M:Aspose.Cells.ErrorCheckOption.GetRange(System.Int32)">
  21270. <summary>
  21271. Gets the influenced range of this setting by given index.
  21272. </summary>
  21273. <param name="index">the index of range</param>
  21274. <returns>return influenced range at given index.</returns>
  21275. </member>
  21276. <member name="M:Aspose.Cells.ErrorCheckOption.RemoveRange(System.Int32)">
  21277. <summary>
  21278. Removes one range by given index.
  21279. </summary>
  21280. <param name="index">the index of the range to be removed.</param>
  21281. </member>
  21282. <member name="T:Aspose.Cells.ErrorCheckType">
  21283. <summary>
  21284. Represents all error check type.
  21285. </summary>
  21286. </member>
  21287. <member name="F:Aspose.Cells.ErrorCheckType.Calc">
  21288. <summary>
  21289. check for calculation errors
  21290. </summary>
  21291. </member>
  21292. <member name="F:Aspose.Cells.ErrorCheckType.EmptyCellRef">
  21293. <summary>
  21294. check for references to empty cells
  21295. </summary>
  21296. </member>
  21297. <member name="F:Aspose.Cells.ErrorCheckType.TextNumber">
  21298. <summary>
  21299. check the format of numeric values
  21300. </summary>
  21301. </member>
  21302. <member name="F:Aspose.Cells.ErrorCheckType.InconsistRange">
  21303. <summary>
  21304. check formulas with references to less than the entirety
  21305. of a range containing continuous data
  21306. </summary>
  21307. </member>
  21308. <member name="F:Aspose.Cells.ErrorCheckType.InconsistFormula">
  21309. <summary>
  21310. check formulas that are inconsistent with formulas in neighboring cells.
  21311. </summary>
  21312. </member>
  21313. <member name="F:Aspose.Cells.ErrorCheckType.TextDate">
  21314. <summary>
  21315. check the format of date/time values
  21316. </summary>
  21317. </member>
  21318. <member name="F:Aspose.Cells.ErrorCheckType.UnproctedFormula">
  21319. <summary>
  21320. check for unprotected formulas
  21321. </summary>
  21322. </member>
  21323. <member name="F:Aspose.Cells.ErrorCheckType.Validation">
  21324. <summary>
  21325. whether to perform data validation
  21326. </summary>
  21327. </member>
  21328. <member name="F:Aspose.Cells.ErrorCheckType.CalculatedColumn">
  21329. <summary>
  21330. Ignore errors when cells contain a value different from a calculated column formula.
  21331. </summary>
  21332. </member>
  21333. <member name="T:Aspose.Cells.InterruptMonitor">
  21334. <summary>
  21335. Represents all operator about the interrupt.
  21336. </summary>
  21337. </member>
  21338. <member name="M:Aspose.Cells.InterruptMonitor.Interrupt">
  21339. <summary>
  21340. Interrupt the current operator.
  21341. </summary>
  21342. </member>
  21343. <member name="T:Aspose.Cells.License">
  21344. <summary>
  21345. Provides methods to license the component.
  21346. </summary>
  21347. <example>
  21348. In this example, an attempt will be made to find a license file named MyLicense.lic
  21349. in the folder that contains
  21350. the component, in the folder that contains the calling assembly,
  21351. in the folder of the entry assembly and then in the embedded resources of the calling assembly.
  21352. <code>
  21353. [C#]
  21354. License license = new License();
  21355. license.SetLicense("MyLicense.lic");
  21356. [Visual Basic]
  21357. Dim license As license = New license
  21358. License.SetLicense("MyLicense.lic")
  21359. </code></example>
  21360. </member>
  21361. <member name="M:Aspose.Cells.License.#ctor">
  21362. <summary>
  21363. Initializes a new instance of this class.
  21364. </summary>
  21365. <example>
  21366. In this example, an attempt will be made to find a license file named MyLicense.lic
  21367. in the folder that contains
  21368. the component, in the folder that contains the calling assembly,
  21369. in the folder of the entry assembly and then in the embedded resources of the calling assembly.
  21370. <code>
  21371. [C#]
  21372. License license = new License();
  21373. license.SetLicense("MyLicense.lic");
  21374. [Visual Basic]
  21375. Dim license As license = New license
  21376. License.SetLicense("MyLicense.lic")
  21377. </code></example>
  21378. </member>
  21379. <member name="M:Aspose.Cells.License.SetLicense(System.String)">
  21380. <summary>
  21381. Licenses the component.
  21382. </summary>
  21383. <remarks>
  21384. <p>Tries to find the license in the following locations:</p>
  21385. <p>1. Explicit path.</p>
  21386. <p>2. The folder that contains the Aspose component assembly.</p>
  21387. <p>3. The folder that contains the client's calling assembly.</p>
  21388. <p>4. The folder that contains the entry (startup) assembly.</p>
  21389. <p>5. An embedded resource in the client's calling assembly.</p>
  21390. <p>
  21391. <b>Note:</b>On the .NET Compact Framework, tries to find the license only in these locations:</p>
  21392. <p>1. Explicit path.</p>
  21393. <p>2. An embedded resource in the client's calling assembly.</p>
  21394. </remarks>
  21395. <example>
  21396. In this example, an attempt will be made to find a license file named MyLicense.lic
  21397. in the folder that contains
  21398. the component, in the folder that contains the calling assembly,
  21399. in the folder of the entry assembly and then in the embedded resources of the calling assembly.
  21400. <code>
  21401. [C#]
  21402. License license = new License();
  21403. license.SetLicense("MyLicense.lic");
  21404. [Visual Basic]
  21405. Dim license As License = New License
  21406. license.SetLicense("MyLicense.lic")
  21407. </code><param name="licenseName">Can be a full or short file name or name of an embedded resource.
  21408. Use an empty string to switch to evaluation mode.</param></example>
  21409. </member>
  21410. <member name="M:Aspose.Cells.License.SetLicense(System.IO.Stream)">
  21411. <summary>
  21412. Licenses the component.
  21413. </summary>
  21414. <param name="stream">A stream that contains the license.</param>
  21415. <remarks>
  21416. <p>Use this method to load a license from a stream.</p>
  21417. </remarks>
  21418. <example>
  21419. <code>
  21420. [C#]
  21421. License license = new License();
  21422. license.SetLicense(myStream);
  21423. [Visual Basic]
  21424. Dim license as License = new License
  21425. license.SetLicense(myStream)
  21426. </code>
  21427. </example>
  21428. </member>
  21429. <member name="T:Aspose.Cells.LoadFormat">
  21430. <summary>
  21431. Represents the load file format.
  21432. </summary>
  21433. </member>
  21434. <member name="F:Aspose.Cells.LoadFormat.Auto">
  21435. <summary>
  21436. Represents recognizing the format automatically.
  21437. </summary>
  21438. </member>
  21439. <member name="F:Aspose.Cells.LoadFormat.CSV">
  21440. <summary>
  21441. Represents a CSV file.
  21442. </summary>
  21443. </member>
  21444. <member name="F:Aspose.Cells.LoadFormat.Xlsx">
  21445. <summary>
  21446. Represents Office Open XML spreadsheetML workbook or template, with or without macros.
  21447. </summary>
  21448. </member>
  21449. <member name="F:Aspose.Cells.LoadFormat.TSV">
  21450. <summary>
  21451. Represents a TSV(tab-separated values file) file.
  21452. </summary>
  21453. </member>
  21454. <member name="F:Aspose.Cells.LoadFormat.TabDelimited">
  21455. <summary>
  21456. Represents a tab delimited text file, same with <see cref="F:Aspose.Cells.LoadFormat.TSV" />.
  21457. </summary>
  21458. </member>
  21459. <member name="F:Aspose.Cells.LoadFormat.Html">
  21460. <summary>
  21461. Represents a html file.
  21462. </summary>
  21463. </member>
  21464. <member name="F:Aspose.Cells.LoadFormat.MHtml">
  21465. <summary>
  21466. Represents a mhtml file.
  21467. </summary>
  21468. </member>
  21469. <member name="F:Aspose.Cells.LoadFormat.ODS">
  21470. <summary>
  21471. Represents a ods file.
  21472. </summary>
  21473. </member>
  21474. <member name="F:Aspose.Cells.LoadFormat.Excel97To2003">
  21475. <summary>
  21476. Represents an Excel97-2003 xls file.
  21477. </summary>
  21478. </member>
  21479. <member name="F:Aspose.Cells.LoadFormat.SpreadsheetML">
  21480. <summary>
  21481. Represents an Excel 2003 xml file.
  21482. </summary>
  21483. </member>
  21484. <member name="F:Aspose.Cells.LoadFormat.Xlsb">
  21485. <summary>
  21486. Represents an xlsb file.
  21487. </summary>
  21488. </member>
  21489. <member name="F:Aspose.Cells.LoadFormat.Numbers">
  21490. <summary>
  21491. Represents a numbers file.
  21492. </summary>
  21493. </member>
  21494. <member name="F:Aspose.Cells.LoadFormat.FODS">
  21495. <summary>
  21496. Represents the flat ods file.
  21497. </summary>
  21498. </member>
  21499. <member name="F:Aspose.Cells.LoadFormat.SXC">
  21500. <summary>
  21501. Represents StarOffice Calc Spreadsheet (.sxc) file format.
  21502. </summary>
  21503. </member>
  21504. <member name="F:Aspose.Cells.LoadFormat.Unknown">
  21505. <summary>
  21506. Represents unrecognized format, cannot be loaded.
  21507. </summary>
  21508. </member>
  21509. <member name="T:Aspose.Cells.TxtLoadOptions">
  21510. <summary>
  21511. Represents the options for loading text file.
  21512. </summary>
  21513. </member>
  21514. <member name="M:Aspose.Cells.TxtLoadOptions.#ctor">
  21515. <summary>
  21516. Creates the options for loading text file.
  21517. </summary>
  21518. <remarks>The default load file type is CSV .</remarks>
  21519. </member>
  21520. <member name="M:Aspose.Cells.TxtLoadOptions.#ctor(Aspose.Cells.LoadFormat)">
  21521. <summary>
  21522. Creates the options for loading text file.
  21523. </summary>
  21524. <param name="loadFormat">The loading format</param>
  21525. </member>
  21526. <member name="P:Aspose.Cells.TxtLoadOptions.Separator">
  21527. <summary>
  21528. Gets and sets character separator of text file.
  21529. </summary>
  21530. </member>
  21531. <member name="P:Aspose.Cells.TxtLoadOptions.SeparatorString">
  21532. <summary>
  21533. Gets and sets the a string value as separator.
  21534. </summary>
  21535. </member>
  21536. <member name="P:Aspose.Cells.TxtLoadOptions.IsMultiEncoded">
  21537. <summary>
  21538. True means that the file contains several encoding.
  21539. </summary>
  21540. </member>
  21541. <member name="P:Aspose.Cells.TxtLoadOptions.PreferredParsers">
  21542. <summary>
  21543. Gets and sets preferred value parsers for loading text file.
  21544. </summary>
  21545. <remarks>
  21546. parsers[0] is the parser will be used for the first column in text template file,
  21547. parsers[1] is the parser will be used for the second column, ...etc.
  21548. The last one(parsers[parsers.length-1]) will be used for all other columns start from parsers.length-1.
  21549. If one item is null, the corresponding column will be parsed by the default parser of Aspose.Cells.
  21550. </remarks>
  21551. </member>
  21552. <member name="P:Aspose.Cells.TxtLoadOptions.HasFormula">
  21553. <summary>
  21554. Indicates whether the text is formula if it starts with "=".
  21555. </summary>
  21556. </member>
  21557. <member name="P:Aspose.Cells.TxtLoadOptions.HasTextQualifier">
  21558. <summary>
  21559. Whether there is text qualifier for cell value. Default is true.
  21560. </summary>
  21561. </member>
  21562. <member name="P:Aspose.Cells.TxtLoadOptions.TextQualifier">
  21563. <summary>
  21564. Specifies the text qualifier for cell values. Default qualifier is '"'.
  21565. </summary>
  21566. <remarks>When setting this property, <see cref="P:Aspose.Cells.TxtLoadOptions.HasTextQualifier" /> will become true automatically.</remarks>
  21567. </member>
  21568. <member name="P:Aspose.Cells.TxtLoadOptions.TreatConsecutiveDelimitersAsOne">
  21569. <summary>
  21570. Whether consecutive delimiters should be treated as one.
  21571. </summary>
  21572. </member>
  21573. <member name="T:Aspose.Cells.Pivot.PivotConditionFormatScopeType">
  21574. <summary>
  21575. Represents PivotTable condition formatting scope type.
  21576. </summary>
  21577. </member>
  21578. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatScopeType.Data">
  21579. <summary>
  21580. Indicates that conditional formatting is applied to the selected data fields.
  21581. </summary>
  21582. </member>
  21583. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatScopeType.Field">
  21584. <summary>
  21585. Indicates that conditional formatting is applied to the selected PivotTable field intersections.
  21586. </summary>
  21587. </member>
  21588. <member name="F:Aspose.Cells.Pivot.PivotConditionFormatScopeType.Selection">
  21589. <summary>
  21590. Indicates that conditional formatting is applied to the selected cells.
  21591. </summary>
  21592. </member>
  21593. <member name="T:Aspose.Cells.Pivot.PivotFilter">
  21594. <summary>
  21595. Represents a PivotFilter in PivotFilter Collection.
  21596. </summary>
  21597. </member>
  21598. <member name="P:Aspose.Cells.Pivot.PivotFilter.AutoFilter">
  21599. <summary>
  21600. Gets the autofilter of the pivot filter.
  21601. </summary>
  21602. </member>
  21603. <member name="P:Aspose.Cells.Pivot.PivotFilter.FilterType">
  21604. <summary>
  21605. Gets the autofilter type of the pivot filter.
  21606. </summary>
  21607. </member>
  21608. <member name="P:Aspose.Cells.Pivot.PivotFilter.FieldIndex">
  21609. <summary>
  21610. Gets the field index of the pivot filter.
  21611. </summary>
  21612. </member>
  21613. <member name="P:Aspose.Cells.Pivot.PivotFilter.Value1">
  21614. <summary>
  21615. Gets the string value1 of the label pivot filter.
  21616. </summary>
  21617. </member>
  21618. <member name="P:Aspose.Cells.Pivot.PivotFilter.Value2">
  21619. <summary>
  21620. Gets the string value2 of the label pivot filter.
  21621. </summary>
  21622. </member>
  21623. <member name="P:Aspose.Cells.Pivot.PivotFilter.MeasureFldIndex">
  21624. <summary>
  21625. Gets the measure field index of the pivot filter.
  21626. </summary>
  21627. </member>
  21628. <member name="P:Aspose.Cells.Pivot.PivotFilter.MemberPropertyFieldIndex">
  21629. <summary>
  21630. Gets the member property field index of the pivot filter.
  21631. </summary>
  21632. </member>
  21633. <member name="P:Aspose.Cells.Pivot.PivotFilter.Name">
  21634. <summary>
  21635. Gets the name of the pivot filter.
  21636. </summary>
  21637. </member>
  21638. <member name="P:Aspose.Cells.Pivot.PivotFilter.EvaluationOrder">
  21639. <summary>
  21640. Gets the Evaluation Order of the pivot filter.
  21641. </summary>
  21642. </member>
  21643. <member name="T:Aspose.Cells.Pivot.PivotFilterCollection">
  21644. <summary>
  21645. Represents a collection of all the PivotFilter objects
  21646. </summary>
  21647. </member>
  21648. <member name="M:Aspose.Cells.Pivot.PivotFilterCollection.Add(System.Int32,Aspose.Cells.Pivot.PivotFilterType)">
  21649. <summary>
  21650. Adds a PivotFilter Object to the specific type
  21651. </summary>
  21652. <param name="fieldIndex">the PivotField index </param>
  21653. <param name="type">the PivotFilter type </param>
  21654. <returns>the index of the PivotFilter Object in this PivotFilterCollection.</returns>
  21655. </member>
  21656. <member name="M:Aspose.Cells.Pivot.PivotFilterCollection.ClearFilter(System.Int32)">
  21657. <summary>
  21658. Clear PivotFilter from the specific PivotField
  21659. </summary>
  21660. <param name="fieldIndex">the PivotField index </param>
  21661. </member>
  21662. <member name="P:Aspose.Cells.Pivot.PivotFilterCollection.Item(System.Int32)">
  21663. <summary>
  21664. Gets the pivotfilter object at the specific index.
  21665. </summary>
  21666. </member>
  21667. <member name="T:Aspose.Cells.Pivot.PivotFilterType">
  21668. <summary>
  21669. Represents PivotTable Filter type.
  21670. </summary>
  21671. </member>
  21672. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionBeginsWith">
  21673. <summary>
  21674. Indicates the "begins with" filter for field captions.
  21675. </summary>
  21676. </member>
  21677. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionBetween">
  21678. <summary>
  21679. Indicates the "is between" filter for field captions.
  21680. </summary>
  21681. </member>
  21682. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionContains">
  21683. <summary>
  21684. Indicates the "contains" filter for field captions.
  21685. </summary>
  21686. </member>
  21687. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionEndsWith">
  21688. <summary>
  21689. Indicates the "ends with" filter for field captions.
  21690. </summary>
  21691. </member>
  21692. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionEqual">
  21693. <summary>
  21694. Indicates the "equal" filter for field captions.
  21695. </summary>
  21696. </member>
  21697. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionGreaterThan">
  21698. <summary>
  21699. Indicates the "is greater than" filter for field captions.
  21700. </summary>
  21701. </member>
  21702. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionGreaterThanOrEqual">
  21703. <summary>
  21704. Indicates the "is greater than or equal to" filter for field captions.
  21705. </summary>
  21706. </member>
  21707. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionLessThan">
  21708. <summary>
  21709. Indicates the "is less than" filter for field captions.
  21710. </summary>
  21711. </member>
  21712. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionLessThanOrEqual">
  21713. <summary>
  21714. Indicates the "is less than or equal to" filter for field captions.
  21715. </summary>
  21716. </member>
  21717. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionNotBeginsWith">
  21718. <summary>
  21719. Indicates the "does not begin with" filter for field captions.
  21720. </summary>
  21721. </member>
  21722. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionNotBetween">
  21723. <summary>
  21724. Indicates the "is not between" filter for field captions.
  21725. </summary>
  21726. </member>
  21727. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionNotContains">
  21728. <summary>
  21729. Indicates the "does not contain" filter for field captions.
  21730. </summary>
  21731. </member>
  21732. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionNotEndsWith">
  21733. <summary>
  21734. Indicates the "does not end with" filter for field captions.
  21735. </summary>
  21736. </member>
  21737. <member name="F:Aspose.Cells.Pivot.PivotFilterType.CaptionNotEqual">
  21738. <summary>
  21739. Indicates the "not equal" filter for field captions.
  21740. </summary>
  21741. </member>
  21742. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Count">
  21743. <summary>
  21744. Indicates the "count" filter.
  21745. </summary>
  21746. </member>
  21747. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateBetween">
  21748. <summary>
  21749. Indicates the "between" filter for date values.
  21750. </summary>
  21751. </member>
  21752. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateEqual">
  21753. <summary>
  21754. Indicates the "equals" filter for date values.
  21755. </summary>
  21756. </member>
  21757. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateNewerThan">
  21758. <summary>
  21759. Indicates the "newer than" filter for date values.
  21760. </summary>
  21761. </member>
  21762. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateNewerThanOrEqual">
  21763. <summary>
  21764. Indicates the "newer than or equal to" filter for date values.
  21765. </summary>
  21766. </member>
  21767. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateNotBetween">
  21768. <summary>
  21769. Indicates the "not between" filter for date values.
  21770. </summary>
  21771. </member>
  21772. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateNotEqual">
  21773. <summary>
  21774. Indicates the "does not equal" filter for date values.
  21775. </summary>
  21776. </member>
  21777. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateOlderThan">
  21778. <summary>
  21779. Indicates the "older than" filter for date values.
  21780. </summary>
  21781. </member>
  21782. <member name="F:Aspose.Cells.Pivot.PivotFilterType.DateOlderThanOrEqual">
  21783. <summary>
  21784. Indicates the "older than or equal to" filter for date values.
  21785. </summary>
  21786. </member>
  21787. <member name="F:Aspose.Cells.Pivot.PivotFilterType.LastMonth">
  21788. <summary>
  21789. Indicates the "last month" filter for date values.
  21790. </summary>
  21791. </member>
  21792. <member name="F:Aspose.Cells.Pivot.PivotFilterType.LastQuarter">
  21793. <summary>
  21794. Indicates the "last quarter" filter for date values.
  21795. </summary>
  21796. </member>
  21797. <member name="F:Aspose.Cells.Pivot.PivotFilterType.LastWeek">
  21798. <summary>
  21799. Indicates the "last week" filter for date values.
  21800. </summary>
  21801. </member>
  21802. <member name="F:Aspose.Cells.Pivot.PivotFilterType.LastYear">
  21803. <summary>
  21804. Indicates the "last year" filter for date values.
  21805. </summary>
  21806. </member>
  21807. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M1">
  21808. <summary>
  21809. Indicates the "January" filter for date values.
  21810. </summary>
  21811. </member>
  21812. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M2">
  21813. <summary>
  21814. Indicates the "February" filter for date values.
  21815. </summary>
  21816. </member>
  21817. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M3">
  21818. <summary>
  21819. Indicates the "March" filter for date values.
  21820. </summary>
  21821. </member>
  21822. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M4">
  21823. <summary>
  21824. Indicates the "April" filter for date values.
  21825. </summary>
  21826. </member>
  21827. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M5">
  21828. <summary>
  21829. Indicates the "May" filter for date values.
  21830. </summary>
  21831. </member>
  21832. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M6">
  21833. <summary>
  21834. Indicates the "June" filter for date values.
  21835. </summary>
  21836. </member>
  21837. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M7">
  21838. <summary>
  21839. Indicates the "July" filter for date values.
  21840. </summary>
  21841. </member>
  21842. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M8">
  21843. <summary>
  21844. Indicates the "August" filter for date values.
  21845. </summary>
  21846. </member>
  21847. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M9">
  21848. <summary>
  21849. Indicates the "September" filter for date values.
  21850. </summary>
  21851. </member>
  21852. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M10">
  21853. <summary>
  21854. Indicates the "October" filter for date values.
  21855. </summary>
  21856. </member>
  21857. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M11">
  21858. <summary>
  21859. Indicates the "November" filter for date values.
  21860. </summary>
  21861. </member>
  21862. <member name="F:Aspose.Cells.Pivot.PivotFilterType.M12">
  21863. <summary>
  21864. Indicates the "December" filter for date values.
  21865. </summary>
  21866. </member>
  21867. <member name="F:Aspose.Cells.Pivot.PivotFilterType.NextMonth">
  21868. <summary>
  21869. Indicates the "next month" filter for date values.
  21870. </summary>
  21871. </member>
  21872. <member name="F:Aspose.Cells.Pivot.PivotFilterType.NextQuarter">
  21873. <summary>
  21874. Indicates the "next quarter" for date values.
  21875. </summary>
  21876. </member>
  21877. <member name="F:Aspose.Cells.Pivot.PivotFilterType.NextWeek">
  21878. <summary>
  21879. Indicates the "next week" for date values.
  21880. </summary>
  21881. </member>
  21882. <member name="F:Aspose.Cells.Pivot.PivotFilterType.NextYear">
  21883. <summary>
  21884. Indicates the "next year" filter for date values.
  21885. </summary>
  21886. </member>
  21887. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Percent">
  21888. <summary>
  21889. Indicates the "percent" filter for numeric values.
  21890. </summary>
  21891. </member>
  21892. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Q1">
  21893. <summary>
  21894. Indicates the "first quarter" filter for date values.
  21895. </summary>
  21896. </member>
  21897. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Q2">
  21898. <summary>
  21899. Indicates the "second quarter" filter for date values.
  21900. </summary>
  21901. </member>
  21902. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Q3">
  21903. <summary>
  21904. Indicates the "third quarter" filter for date values.
  21905. </summary>
  21906. </member>
  21907. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Q4">
  21908. <summary>
  21909. Indicates the "fourth quarter" filter for date values.
  21910. </summary>
  21911. </member>
  21912. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Sum">
  21913. <summary>
  21914. Indicates the "sum" filter for numeric values.
  21915. </summary>
  21916. </member>
  21917. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ThisMonth">
  21918. <summary>
  21919. Indicates the "this month" filter for date values.
  21920. </summary>
  21921. </member>
  21922. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ThisQuarter">
  21923. <summary>
  21924. Indicates the "this quarter" filter for date values.
  21925. </summary>
  21926. </member>
  21927. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ThisWeek">
  21928. <summary>
  21929. Indicates the "this week" filter for date values.
  21930. </summary>
  21931. </member>
  21932. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ThisYear">
  21933. <summary>
  21934. Indicate the "this year" filter for date values.
  21935. </summary>
  21936. </member>
  21937. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Today">
  21938. <summary>
  21939. Indicates the "today" filter for date values.
  21940. </summary>
  21941. </member>
  21942. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Tomorrow">
  21943. <summary>
  21944. Indicates the "tomorrow" filter for date values.
  21945. </summary>
  21946. </member>
  21947. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Unknown">
  21948. <summary>
  21949. Indicates the PivotTable filter is unknown to the application.
  21950. </summary>
  21951. </member>
  21952. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueBetween">
  21953. <summary>
  21954. Indicates the "Value between" filter for text and numeric values.
  21955. </summary>
  21956. </member>
  21957. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueEqual">
  21958. <summary>
  21959. Indicates the "value equal" filter for text and numeric values.
  21960. </summary>
  21961. </member>
  21962. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueGreaterThan">
  21963. <summary>
  21964. Indicates the "value greater than" filter for text and numeric values.
  21965. </summary>
  21966. </member>
  21967. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueGreaterThanOrEqual">
  21968. <summary>
  21969. Indicates the "value greater than or equal to" filter for text and numeric values.
  21970. </summary>
  21971. </member>
  21972. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueLessThan">
  21973. <summary>
  21974. Indicates the "value less than" filter for text and numeric values.
  21975. </summary>
  21976. </member>
  21977. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueLessThanOrEqual">
  21978. <summary>
  21979. Indicates the "value less than or equal to" filter for text and numeric values.
  21980. </summary>
  21981. </member>
  21982. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueNotBetween">
  21983. <summary>
  21984. Indicates the "value not between" filter for text and numeric values.
  21985. </summary>
  21986. </member>
  21987. <member name="F:Aspose.Cells.Pivot.PivotFilterType.ValueNotEqual">
  21988. <summary>
  21989. Indicates the "value not equal" filter for text and numeric values.
  21990. </summary>
  21991. </member>
  21992. <member name="F:Aspose.Cells.Pivot.PivotFilterType.YearToDate">
  21993. <summary>
  21994. Indicates the "year-to-date" filter for date values.
  21995. </summary>
  21996. </member>
  21997. <member name="F:Aspose.Cells.Pivot.PivotFilterType.Yesterday">
  21998. <summary>
  21999. Indicates the "yesterday" filter for date values.
  22000. </summary>
  22001. </member>
  22002. <member name="T:Aspose.Cells.Pivot.PivotFormatCondition">
  22003. <summary>
  22004. Represents a PivotTable Format Condition in PivotFormatCondition Collection.
  22005. </summary>
  22006. </member>
  22007. <member name="P:Aspose.Cells.Pivot.PivotFormatCondition.ScopeType">
  22008. <summary>
  22009. Get and set scope type for the pivot table condition format .
  22010. </summary>
  22011. </member>
  22012. <member name="P:Aspose.Cells.Pivot.PivotFormatCondition.RuleType">
  22013. <summary>
  22014. Get and set rule type for the pivot table condition format .
  22015. </summary>
  22016. </member>
  22017. <member name="P:Aspose.Cells.Pivot.PivotFormatCondition.FormatConditions">
  22018. <summary>
  22019. Get formatconditions for the pivot table condition format .
  22020. </summary>
  22021. </member>
  22022. <member name="T:Aspose.Cells.Pivot.PivotFormatConditionCollection">
  22023. <summary>
  22024. Represents PivotTable Format Conditions.
  22025. </summary>
  22026. </member>
  22027. <member name="M:Aspose.Cells.Pivot.PivotFormatConditionCollection.Add">
  22028. <summary>
  22029. Adds a pivot FormatCondition to the collection.
  22030. </summary>
  22031. <returns>pivot FormatCondition object index.</returns>
  22032. <remarks>not supported</remarks>
  22033. </member>
  22034. <member name="P:Aspose.Cells.Pivot.PivotFormatConditionCollection.Item(System.Int32)">
  22035. <summary>
  22036. Gets the pivot FormatCondition object at the specific index.
  22037. </summary>
  22038. <returns>pivot FormatCondition object.</returns>
  22039. </member>
  22040. <member name="T:Aspose.Cells.Pivot.PivotMissingItemLimitType">
  22041. <summary>
  22042. Represents number of items to retain per field.
  22043. </summary>
  22044. </member>
  22045. <member name="F:Aspose.Cells.Pivot.PivotMissingItemLimitType.Automatic">
  22046. <summary>
  22047. The default number of unique items per PivotField allowed.
  22048. </summary>
  22049. </member>
  22050. <member name="F:Aspose.Cells.Pivot.PivotMissingItemLimitType.Max">
  22051. <summary>
  22052. The maximum number of unique items per PivotField allowed (&gt;32,500).
  22053. </summary>
  22054. </member>
  22055. <member name="F:Aspose.Cells.Pivot.PivotMissingItemLimitType.None">
  22056. <summary>
  22057. No unique items per PivotField allowed.
  22058. </summary>
  22059. </member>
  22060. <member name="T:Aspose.Cells.DifSaveOptions">
  22061. <summary>
  22062. Represents the options of saving dif file.
  22063. </summary>
  22064. </member>
  22065. <member name="M:Aspose.Cells.DifSaveOptions.#ctor">
  22066. <summary>
  22067. Creates the options for saving DIF file.
  22068. </summary>
  22069. </member>
  22070. <member name="T:Aspose.Cells.ImageSaveOptions">
  22071. <summary>
  22072. Represents image save options
  22073. </summary>
  22074. </member>
  22075. <member name="M:Aspose.Cells.ImageSaveOptions.#ctor">
  22076. <summary>
  22077. Creates the options for saving image file.
  22078. </summary>
  22079. </member>
  22080. <member name="M:Aspose.Cells.ImageSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  22081. <summary>
  22082. Creates the options for saving image file.
  22083. </summary>
  22084. <param name="saveFormat">The file format.
  22085. It must be tiff or svg.</param>
  22086. </member>
  22087. <member name="P:Aspose.Cells.ImageSaveOptions.ImageOrPrintOptions">
  22088. <summary>
  22089. Additional image creation options
  22090. </summary>
  22091. </member>
  22092. <member name="T:Aspose.Cells.SvgSaveOptions">
  22093. <summary>
  22094. Represents Svg save options
  22095. </summary>
  22096. </member>
  22097. <member name="M:Aspose.Cells.SvgSaveOptions.#ctor">
  22098. <summary>
  22099. Creates the options for saving svg file.
  22100. </summary>
  22101. </member>
  22102. <member name="M:Aspose.Cells.SvgSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  22103. <summary>
  22104. Creates the options for saving svg file.
  22105. </summary>
  22106. <param name="saveFormat">The file format.
  22107. It must be svg.</param>
  22108. </member>
  22109. <member name="P:Aspose.Cells.SvgSaveOptions.SheetIndex">
  22110. <summary>
  22111. Gets and sets which worksheet should be exported.
  22112. If the value is -1, the active worksheet will be exported.
  22113. </summary>
  22114. </member>
  22115. <member name="T:Aspose.Cells.SortOnType">
  22116. <summary>
  22117. Sorted value type.
  22118. </summary>
  22119. </member>
  22120. <member name="F:Aspose.Cells.SortOnType.Value">
  22121. <summary>
  22122. Sorts by cells' value.
  22123. </summary>
  22124. </member>
  22125. <member name="F:Aspose.Cells.SortOnType.CellColor">
  22126. <summary>
  22127. Sorts by cells' color.
  22128. </summary>
  22129. </member>
  22130. <member name="F:Aspose.Cells.SortOnType.FontColor">
  22131. <summary>
  22132. Sorts by cells' font color.
  22133. </summary>
  22134. </member>
  22135. <member name="F:Aspose.Cells.SortOnType.Icon">
  22136. <summary>
  22137. Sorts by conditional icon.
  22138. </summary>
  22139. </member>
  22140. <member name="T:Aspose.Cells.WorkbookDesigner">
  22141. <summary>
  22142. Encapsulates the object that represents a designer spreadsheet.
  22143. </summary>
  22144. <example>
  22145. <code>
  22146. [C#]
  22147. //Create a connection object, specify the provider info and set the data source.
  22148. OleDbConnection con = new OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=d:\\test\\Northwind.mdb");
  22149. //Open the connection object.
  22150. con.Open();
  22151. //Create a command object and specify the SQL query.
  22152. OleDbCommand cmd = new OleDbCommand("Select * from [Order Details]", con);
  22153. //Create a data adapter object.
  22154. OleDbDataAdapter da = new OleDbDataAdapter();
  22155. //Specify the command.
  22156. da.SelectCommand = cmd;
  22157. //Create a dataset object.
  22158. DataSet ds = new DataSet();
  22159. //Fill the dataset with the table records.
  22160. da.Fill(ds, "Order Details");
  22161. //Create a datatable with respect to dataset table.
  22162. DataTable dt = ds.Tables["Order Details"];
  22163. //Create WorkbookDesigner object.
  22164. WorkbookDesigner wd = new WorkbookDesigner();
  22165. //Open the template file (which contains smart markers).
  22166. wd.Open("D:\\test\\SmartMarker_Designer.xls");
  22167. //Set the datatable as the data source.
  22168. wd.SetDataSource(dt);
  22169. //Process the smart markers to fill the data into the worksheets.
  22170. wd.Process(true);
  22171. //Save the excel file.
  22172. wd.Workbook.Save("D:\\test\\outSmartMarker_Designer.xls");
  22173. [Visual Basic]
  22174. 'Create a connection object, specify the provider info and set the data source.
  22175. Dim con As OleDbConnection = New OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=d:\test\Northwind.mdb")
  22176. 'Open the connection object.
  22177. con.Open()
  22178. 'Create a command object and specify the SQL query.
  22179. Dim cmd As OleDbCommand = New OleDbCommand("Select * from [Order Details]", con)
  22180. 'Create a data adapter object.
  22181. Dim da As OleDbDataAdapter = New OleDbDataAdapter()
  22182. 'Specify the command.
  22183. da.SelectCommand = cmd
  22184. 'Create a dataset object.
  22185. Dim ds As DataSet = New DataSet()
  22186. 'Fill the dataset with the table records.
  22187. da.Fill(ds, "Order Details")
  22188. 'Create a datatable with respect to dataset table.
  22189. Dim dt As DataTable = ds.Tables("Order Details")
  22190. 'Create WorkbookDesigner object.
  22191. Dim wd As WorkbookDesigner = New WorkbookDesigner()
  22192. 'Open the template file (which contains smart markers).
  22193. wd.Open("D:\test\SmartMarker_Designer.xls")
  22194. 'Set the datatable as the data source.
  22195. wd.SetDataSource(dt)
  22196. 'Process the smart markers to fill the data into the worksheets.
  22197. wd.Process(True)
  22198. 'Save the excel file.
  22199. wd.Workbook.Save("D:\test\outSmartMarker_Designer.xls")
  22200. </code>
  22201. </example>
  22202. </member>
  22203. <member name="M:Aspose.Cells.WorkbookDesigner.#ctor">
  22204. <summary>
  22205. Initializes a new instance of the <see cref="T:Aspose.Cells.WorkbookDesigner" /> class.
  22206. </summary>
  22207. </member>
  22208. <member name="M:Aspose.Cells.WorkbookDesigner.#ctor(Aspose.Cells.Workbook)">
  22209. <summary>
  22210. Initializes a new instance of the <see cref="T:Aspose.Cells.WorkbookDesigner" /> class.
  22211. </summary>
  22212. <param name="workbook">
  22213. The template workbook file.
  22214. </param>
  22215. </member>
  22216. <member name="M:Aspose.Cells.WorkbookDesigner.ClearDataSource">
  22217. <summary>
  22218. Clears all data sources.
  22219. </summary>
  22220. </member>
  22221. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.Data.DataSet)">
  22222. <summary>
  22223. Sets data source of a DataSet object.
  22224. </summary>
  22225. <param name="dataSet">DataSet object</param>
  22226. </member>
  22227. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.Data.DataTable)">
  22228. <summary>
  22229. Sets data source of a DataTable object.
  22230. </summary>
  22231. <param name="dataTable">DataTable object</param>
  22232. </member>
  22233. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.String,Aspose.Cells.ICellsDataTable)">
  22234. <summary>
  22235. Sets data source of a <see cref="T:Aspose.Cells.ICellsDataTable" /> object.
  22236. </summary>
  22237. <param name="name">The name of the table.</param>
  22238. <param name="dataTable">DataTable object</param>
  22239. </member>
  22240. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.String,System.Data.DataView)">
  22241. <summary>
  22242. Sets data source of a DataView object and binds it to a data source name.
  22243. </summary>
  22244. <param name="dataSourceName">Data source name.</param>
  22245. <param name="dataView">DataView object.</param>
  22246. </member>
  22247. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.Data.DataView)">
  22248. <summary>
  22249. Sets data source of a DataView object.
  22250. </summary>
  22251. <param name="dataView">DataView object</param>
  22252. </member>
  22253. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.String,System.Data.IDataReader,System.Int32)">
  22254. <summary>
  22255. Sets data source of a IDataReader object.
  22256. </summary>
  22257. <param name="name">The data source map name.</param>
  22258. <param name="dataReader">IDataReader object</param>
  22259. <param name="rowCount">The number of the data rows.
  22260. If the smart marker does not contains "noadd",
  22261. we have to insert rows by the row count for performance issue and dynamic repeated formulas.
  22262. -1 means the param is useless.
  22263. </param>
  22264. </member>
  22265. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.String,System.Object)">
  22266. <summary>
  22267. Sets data binding to a variable.
  22268. </summary>
  22269. <param name="variable">Variable name created using smart marker.</param>
  22270. <param name="data">Source data.</param>
  22271. </member>
  22272. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.String,System.Object[])">
  22273. <summary>
  22274. Sets data array binding to a variable.
  22275. </summary>
  22276. <param name="variable">Variable name created using smart marker.</param>
  22277. <param name="dataArray">Source data array.</param>
  22278. </member>
  22279. <member name="M:Aspose.Cells.WorkbookDesigner.Process">
  22280. <summary>
  22281. Processes the smart markers and populates the data source values.
  22282. </summary>
  22283. </member>
  22284. <member name="M:Aspose.Cells.WorkbookDesigner.Process(System.Boolean)">
  22285. <summary>
  22286. Processes the smart markers and populates the data source values.
  22287. </summary>
  22288. <param name="isPreserved">True if the unrecognized smart marker is preserved.</param>
  22289. </member>
  22290. <member name="M:Aspose.Cells.WorkbookDesigner.Process(System.Int32,System.Boolean)">
  22291. <summary>
  22292. Processes the smart markers and populates the data source values.
  22293. </summary>
  22294. <param name="sheetIndex">Worksheet index.</param>
  22295. <param name="isPreserved">True if the unrecognized smart marker is preserved.</param>
  22296. <remarks>This method works on worksheet level.</remarks>
  22297. </member>
  22298. <member name="M:Aspose.Cells.WorkbookDesigner.GetSmartMarkers">
  22299. <summary>
  22300. Returns a collection of smart markers in a spreadsheet.
  22301. </summary>
  22302. <returns>A collection of smart markers</returns>
  22303. <remarks>A string array is created on every call. The array is sorted and duplicated values are removed.</remarks>
  22304. </member>
  22305. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.Data.OleDb.OleDbConnection)">
  22306. <summary>
  22307. Sets data source of a OleDbConnection object.
  22308. </summary>
  22309. <param name="connection">OleDbConnection object</param>
  22310. </member>
  22311. <member name="M:Aspose.Cells.WorkbookDesigner.SetDataSource(System.Data.SqlClient.SqlConnection)">
  22312. <summary>
  22313. Sets data source of a SqlConnection object.
  22314. </summary>
  22315. <param name="connection">SqlConnection object</param>
  22316. </member>
  22317. <member name="P:Aspose.Cells.WorkbookDesigner.Workbook">
  22318. <summary>
  22319. Gets and sets the <see cref="P:Aspose.Cells.WorkbookDesigner.Workbook" /> object.
  22320. </summary>
  22321. </member>
  22322. <member name="P:Aspose.Cells.WorkbookDesigner.RepeatFormulasWithSubtotal">
  22323. <summary>
  22324. Indicates whether repeating formulas with subtotal row.
  22325. </summary>
  22326. </member>
  22327. <member name="P:Aspose.Cells.WorkbookDesigner.UpdateEmptyStringAsNull">
  22328. <summary>
  22329. If TRUE, Null will be inserted if the value is "";
  22330. </summary>
  22331. </member>
  22332. <member name="P:Aspose.Cells.WorkbookDesigner.UpdateReference">
  22333. <summary>
  22334. Indicates if references in other worksheets will be updated.
  22335. </summary>
  22336. </member>
  22337. <member name="P:Aspose.Cells.WorkbookDesigner.CalculateFormula">
  22338. <summary>
  22339. Indicates whether formulas should be calculated.
  22340. </summary>
  22341. </member>
  22342. <member name="P:Aspose.Cells.WorkbookDesigner.CallBack">
  22343. <summary>
  22344. Gets and sets callback interface of processing smartmarker.
  22345. </summary>
  22346. </member>
  22347. <member name="T:Aspose.Cells.ConditionalFormattingValueCollection">
  22348. <summary>
  22349. Describes a collection of CFValueObject.
  22350. Use only for icon sets.
  22351. </summary>
  22352. </member>
  22353. <member name="M:Aspose.Cells.ConditionalFormattingValueCollection.Add(Aspose.Cells.FormatConditionValueType,System.String)">
  22354. <summary>
  22355. Adds <see cref="T:Aspose.Cells.ConditionalFormattingValue" /> object.
  22356. </summary>
  22357. <param name="type">The value type.</param>
  22358. <param name="value">The value.</param>
  22359. <returns>Returns the index of new object in the list.</returns>
  22360. </member>
  22361. <member name="P:Aspose.Cells.ConditionalFormattingValueCollection.Item(System.Int32)">
  22362. <summary>
  22363. Get the CFValueObject element at the specified index.
  22364. </summary>
  22365. <param name="index">The zero based index of the element.</param>
  22366. <returns>The element at the specified index.</returns>
  22367. </member>
  22368. <member name="T:Aspose.Cells.FormatConditionValueType">
  22369. <summary>
  22370. Condition value type.
  22371. </summary>
  22372. </member>
  22373. <member name="F:Aspose.Cells.FormatConditionValueType.Formula">
  22374. <summary>
  22375. The minimum/ midpoint / maximum value for the
  22376. gradient is determined by a formula.
  22377. </summary>
  22378. </member>
  22379. <member name="F:Aspose.Cells.FormatConditionValueType.Max">
  22380. <summary>
  22381. Indicates that the maximum value in the range shall be
  22382. used as the maximum value for the gradient.
  22383. </summary>
  22384. </member>
  22385. <member name="F:Aspose.Cells.FormatConditionValueType.Min">
  22386. <summary>
  22387. Indicates that the minimum value in the range shall be
  22388. used as the minimum value for the gradient.
  22389. </summary>
  22390. </member>
  22391. <member name="F:Aspose.Cells.FormatConditionValueType.Number">
  22392. <summary>
  22393. Indicates that the minimum / midpoint / maximum
  22394. value for the gradient is specified by a constant
  22395. numeric value.
  22396. </summary>
  22397. </member>
  22398. <member name="F:Aspose.Cells.FormatConditionValueType.Percent">
  22399. <summary>
  22400. Value indicates a percentage between the minimum
  22401. and maximum values in the range shall be used as the
  22402. minimum / midpoint / maximum value for the gradient.
  22403. </summary>
  22404. </member>
  22405. <member name="F:Aspose.Cells.FormatConditionValueType.Percentile">
  22406. <summary>
  22407. Value indicates a percentile ranking in the range shall
  22408. be used as the minimum / midpoint / maximum value
  22409. for the gradient.
  22410. </summary>
  22411. </member>
  22412. <member name="F:Aspose.Cells.FormatConditionValueType.AutomaticMax">
  22413. <summary>
  22414. Indicates that the Automatic maximum value in the range shall be
  22415. used as the Automatic maximum value for the gradient.
  22416. </summary>
  22417. </member>
  22418. <member name="F:Aspose.Cells.FormatConditionValueType.AutomaticMin">
  22419. <summary>
  22420. Indicates that the Automatic minimum value in the range shall be
  22421. used as the Automatic minimum value for the gradient.
  22422. </summary>
  22423. </member>
  22424. <member name="T:Aspose.Cells.IconSetType">
  22425. <summary>
  22426. Icon set type for conditional formatting.
  22427. The threshold values for triggering the different icons within a set are
  22428. configurable, and the icon order is reversible.
  22429. </summary>
  22430. </member>
  22431. <member name="F:Aspose.Cells.IconSetType.Arrows3">
  22432. <summary>
  22433. 3 arrows icon set.
  22434. </summary>
  22435. </member>
  22436. <member name="F:Aspose.Cells.IconSetType.ArrowsGray3">
  22437. <summary>
  22438. 3 gray arrows icon set.
  22439. </summary>
  22440. </member>
  22441. <member name="F:Aspose.Cells.IconSetType.Flags3">
  22442. <summary>
  22443. 3 flags icon set.
  22444. </summary>
  22445. </member>
  22446. <member name="F:Aspose.Cells.IconSetType.Signs3">
  22447. <summary>
  22448. 3 signs icon set.
  22449. </summary>
  22450. </member>
  22451. <member name="F:Aspose.Cells.IconSetType.Symbols3">
  22452. <summary>
  22453. 3 symbols icon set (circled).
  22454. </summary>
  22455. </member>
  22456. <member name="F:Aspose.Cells.IconSetType.Symbols32">
  22457. <summary>
  22458. 3 Symbols icon set (uncircled).
  22459. </summary>
  22460. </member>
  22461. <member name="F:Aspose.Cells.IconSetType.TrafficLights31">
  22462. <summary>
  22463. 3 traffic lights icon set (unrimmed).
  22464. </summary>
  22465. </member>
  22466. <member name="F:Aspose.Cells.IconSetType.TrafficLights32">
  22467. <summary>
  22468. 3 traffic lights icon set with thick black border.
  22469. </summary>
  22470. </member>
  22471. <member name="F:Aspose.Cells.IconSetType.Arrows4">
  22472. <summary>
  22473. 4 arrows icon set.
  22474. </summary>
  22475. </member>
  22476. <member name="F:Aspose.Cells.IconSetType.ArrowsGray4">
  22477. <summary>
  22478. 4 gray arrows icon set.
  22479. </summary>
  22480. </member>
  22481. <member name="F:Aspose.Cells.IconSetType.Rating4">
  22482. <summary>
  22483. 4 ratings icon set.
  22484. </summary>
  22485. </member>
  22486. <member name="F:Aspose.Cells.IconSetType.RedToBlack4">
  22487. <summary>
  22488. 4 'red to black' icon set.
  22489. </summary>
  22490. </member>
  22491. <member name="F:Aspose.Cells.IconSetType.TrafficLights4">
  22492. <summary>
  22493. 4 traffic lights icon set.
  22494. </summary>
  22495. </member>
  22496. <member name="F:Aspose.Cells.IconSetType.Arrows5">
  22497. <summary>
  22498. 5 arrows icon set.
  22499. </summary>
  22500. </member>
  22501. <member name="F:Aspose.Cells.IconSetType.ArrowsGray5">
  22502. <summary>
  22503. 5 gray arrows icon set.
  22504. </summary>
  22505. </member>
  22506. <member name="F:Aspose.Cells.IconSetType.Quarters5">
  22507. <summary>
  22508. 5 quarters icon set.
  22509. </summary>
  22510. </member>
  22511. <member name="F:Aspose.Cells.IconSetType.Rating5">
  22512. <summary>
  22513. 5 rating icon set.
  22514. </summary>
  22515. </member>
  22516. <member name="F:Aspose.Cells.IconSetType.Stars3">
  22517. <summary>
  22518. 3 stars set
  22519. </summary>
  22520. </member>
  22521. <member name="F:Aspose.Cells.IconSetType.Boxes5">
  22522. <summary>
  22523. 5 boxes set
  22524. </summary>
  22525. </member>
  22526. <member name="F:Aspose.Cells.IconSetType.Triangles3">
  22527. <summary>
  22528. 3 triangles set
  22529. </summary>
  22530. </member>
  22531. <member name="F:Aspose.Cells.IconSetType.None">
  22532. <summary>
  22533. None
  22534. </summary>
  22535. </member>
  22536. <member name="F:Aspose.Cells.IconSetType.CustomSet">
  22537. <summary>
  22538. CustomSet.
  22539. This element is read-only.
  22540. </summary>
  22541. </member>
  22542. <member name="F:Aspose.Cells.IconSetType.Smilies3">
  22543. <summary>
  22544. 3 smilies.
  22545. Only for .ods.
  22546. </summary>
  22547. </member>
  22548. <member name="F:Aspose.Cells.IconSetType.ColorSmilies3">
  22549. <summary>
  22550. 3 color smilies.
  22551. Only for .ods.
  22552. </summary>
  22553. </member>
  22554. <member name="T:Aspose.Cells.TimePeriodType">
  22555. <summary>
  22556. Used in a FormatConditionType.TimePeriod conditional formatting rule.
  22557. These are dynamic time periods, which change based on
  22558. the date the conditional formatting is refreshed / applied.
  22559. </summary>
  22560. </member>
  22561. <member name="F:Aspose.Cells.TimePeriodType.Today">
  22562. <summary>
  22563. Today's date.
  22564. </summary>
  22565. </member>
  22566. <member name="F:Aspose.Cells.TimePeriodType.Yesterday">
  22567. <summary>
  22568. Yesterday's date.
  22569. </summary>
  22570. </member>
  22571. <member name="F:Aspose.Cells.TimePeriodType.Tomorrow">
  22572. <summary>
  22573. Tomorrow's date.
  22574. </summary>
  22575. </member>
  22576. <member name="F:Aspose.Cells.TimePeriodType.Last7Days">
  22577. <summary>
  22578. A date in the last seven days.
  22579. </summary>
  22580. </member>
  22581. <member name="F:Aspose.Cells.TimePeriodType.ThisMonth">
  22582. <summary>
  22583. A date occurring in this calendar month.
  22584. </summary>
  22585. </member>
  22586. <member name="F:Aspose.Cells.TimePeriodType.LastMonth">
  22587. <summary>
  22588. A date occurring in the last calendar month.
  22589. </summary>
  22590. </member>
  22591. <member name="F:Aspose.Cells.TimePeriodType.NextMonth">
  22592. <summary>
  22593. A date occurring in the next calendar month.
  22594. </summary>
  22595. </member>
  22596. <member name="F:Aspose.Cells.TimePeriodType.ThisWeek">
  22597. <summary>
  22598. A date occurring this week.
  22599. </summary>
  22600. </member>
  22601. <member name="F:Aspose.Cells.TimePeriodType.LastWeek">
  22602. <summary>
  22603. A date occurring last week.
  22604. </summary>
  22605. </member>
  22606. <member name="F:Aspose.Cells.TimePeriodType.NextWeek">
  22607. <summary>
  22608. A date occurring next week.
  22609. </summary>
  22610. </member>
  22611. <member name="F:Aspose.Cells.TimePeriodType.ThisYear">
  22612. <summary>
  22613. A date occurring this year.
  22614. Only for .ods.
  22615. </summary>
  22616. </member>
  22617. <member name="F:Aspose.Cells.TimePeriodType.LastYear">
  22618. <summary>
  22619. A date occurring last year.
  22620. Only for .ods.
  22621. </summary>
  22622. </member>
  22623. <member name="F:Aspose.Cells.TimePeriodType.NextYear">
  22624. <summary>
  22625. A date occurring next year.
  22626. Only for .ods.
  22627. </summary>
  22628. </member>
  22629. <member name="T:Aspose.Cells.Top10">
  22630. <summary>
  22631. Describe the Top10 conditional formatting rule.
  22632. This conditional formatting rule highlights cells whose
  22633. values fall in the top N or bottom N bracket, as specified.
  22634. </summary>
  22635. </member>
  22636. <member name="P:Aspose.Cells.Top10.IsPercent">
  22637. <summary>
  22638. Get or set the flag indicating whether a "top/bottom n" rule is a "top/bottom n percent" rule.
  22639. Default value is false.
  22640. </summary>
  22641. </member>
  22642. <member name="P:Aspose.Cells.Top10.IsBottom">
  22643. <summary>
  22644. Get or set the flag indicating whether a "top/bottom n" rule is a "bottom n" rule. '1' indicates 'bottom'.
  22645. Default value is false.
  22646. </summary>
  22647. </member>
  22648. <member name="P:Aspose.Cells.Top10.Rank">
  22649. <summary>
  22650. Get or set the value of "n" in a "top/bottom n" conditional formatting rule.
  22651. If IsPercent is true, the value must between 0 and 100.
  22652. Otherwise it must between 0 and 1000.
  22653. Default value is 10.
  22654. </summary>
  22655. </member>
  22656. <member name="T:Aspose.Cells.ContentDisposition">
  22657. <summary>
  22658. The content disposition type.
  22659. </summary>
  22660. </member>
  22661. <member name="F:Aspose.Cells.ContentDisposition.Inline">
  22662. <summary>
  22663. </summary>
  22664. </member>
  22665. <member name="F:Aspose.Cells.ContentDisposition.Attachment">
  22666. <summary>
  22667. </summary>
  22668. </member>
  22669. <member name="T:Aspose.Cells.DigitalSignatures.DigitalSignature">
  22670. <summary>
  22671. Signature in file.
  22672. </summary>
  22673. </member>
  22674. <member name="M:Aspose.Cells.DigitalSignatures.DigitalSignature.#ctor(System.Security.Cryptography.X509Certificates.X509Certificate2,System.String,System.DateTime)">
  22675. <summary>
  22676. Constructor of digitalSignature. Uses .Net implementation.
  22677. </summary>
  22678. <param name="certificate">Certificate object that was used to sign the document.</param>
  22679. <param name="comments">The purpose to signature.</param>
  22680. <param name="signTime">The time when the document was signed.</param>
  22681. </member>
  22682. <member name="M:Aspose.Cells.DigitalSignatures.DigitalSignature.#ctor(System.Byte[],System.String,System.String,System.DateTime)">
  22683. <summary>
  22684. Constructor of digitalSignature. Uses Bouncy Castle implementation.
  22685. </summary>
  22686. <param name="rawData">A byte array containing data from an X.509 certificate.</param>
  22687. <param name="password">The password required to access the X.509 certificate data.</param>
  22688. <param name="comments">The purpose to signature.</param>
  22689. <param name="signTime">The time when the document was signed.</param>
  22690. </member>
  22691. <member name="P:Aspose.Cells.DigitalSignatures.DigitalSignature.Certificate">
  22692. <summary>
  22693. Certificate object that was used to sign the document.
  22694. </summary>
  22695. </member>
  22696. <member name="P:Aspose.Cells.DigitalSignatures.DigitalSignature.Comments">
  22697. <summary>
  22698. The purpose to signature.
  22699. </summary>
  22700. </member>
  22701. <member name="P:Aspose.Cells.DigitalSignatures.DigitalSignature.SignTime">
  22702. <summary>
  22703. The time when the document was signed.
  22704. </summary>
  22705. </member>
  22706. <member name="P:Aspose.Cells.DigitalSignatures.DigitalSignature.IsValid">
  22707. <summary>
  22708. If this digital signature is valid and the document has not been tampered with,
  22709. this value will be true.
  22710. </summary>
  22711. </member>
  22712. <member name="P:Aspose.Cells.DigitalSignatures.DigitalSignature.XAdESType">
  22713. <summary>
  22714. XAdES type.
  22715. Default value is None(XAdES is off).
  22716. </summary>
  22717. </member>
  22718. <member name="T:Aspose.Cells.DigitalSignatures.DigitalSignatureCollection">
  22719. <summary>
  22720. Provides a collection of digital signatures attached to a document.
  22721. </summary>
  22722. <example>
  22723. The following example shows how to create digital signature
  22724. <code>
  22725. [C#]
  22726. internal void ValidateSignature()
  22727. {
  22728. Workbook wb = new Workbook(@"c:\newfile.xlsx");
  22729. //wb.IsDigitallySigned is true when the workbook is signed already.
  22730. System.Console.WriteLine(wb.IsDigitallySigned);
  22731. //get digitalSignature collection from workbook
  22732. DigitalSignatureCollection dsc = wb.GetDigitalSignature();
  22733. foreach (DigitalSignature ds in dsc)
  22734. {
  22735. System.Console.WriteLine(ds.Comments);
  22736. System.Console.WriteLine(ds.SignTime);
  22737. System.Console.WriteLine(ds.IsValid);
  22738. }
  22739. }
  22740. internal void SignSignature()
  22741. {
  22742. //dsc is signature collection contains one or more signature needed to sign
  22743. DigitalSignatureCollection dsc = new DigitalSignatureCollection();
  22744. //cert must contain private key, it can be contructed from cert file or windows certificate collection.
  22745. //123456 is password of cert
  22746. X509Certificate2 cert = new X509Certificate2("c:\\mykey2.pfx", "123456");
  22747. DigitalSignature ds = new DigitalSignature(cert, "test for sign", DateTime.Now);
  22748. dsc.Add(ds);
  22749. Workbook wb = new Workbook();
  22750. //wb.SetDigitalSignature sign all signatures in dsc
  22751. wb.SetDigitalSignature(dsc);
  22752. wb.Save(@"c:\newfile.xlsx");
  22753. }
  22754. [Visual Basic]
  22755. Sub ValidateSignature()
  22756. Dim workbook As Workbook = New Workbook("c:\newfile.xlsx")
  22757. 'Workbook.IsDigitallySigned is true when the workbook is signed already.
  22758. System.Console.WriteLine(workbook.IsDigitallySigned)
  22759. 'get digitalSignature collection from workbook
  22760. Dim dsc As DigitalSignatureCollection = workbook.GetDigitalSignature()
  22761. Dim ds As DigitalSignature
  22762. For Each ds In dsc
  22763. System.Console.WriteLine(ds.Comments)
  22764. System.Console.WriteLine(ds.SignTime)
  22765. System.Console.WriteLine(ds.IsValid)
  22766. Next
  22767. End Sub
  22768. Sub SignSignature()
  22769. 'dsc is signature collection contains one or more signature needed to sign
  22770. Dim dsc As DigitalSignatureCollection = New DigitalSignatureCollection()
  22771. 'cert must contain private key, it can be contructed from cert file or windows certificate collection.
  22772. Dim cert As X509Certificate2 = New X509Certificate2("c:\mykey2.pfx", "123456")
  22773. 'create a signature with certificate, sign purpose and sign time
  22774. Dim ds As DigitalSignature = New DigitalSignature(cert, "test for sign", DateTime.Now)
  22775. dsc.Add(ds)
  22776. Dim workbook As Workbook = New Workbook()
  22777. 'workbook.SetDigitalSignature sign all signatures in dsc
  22778. workbook.SetDigitalSignature(dsc)
  22779. workbook.Save("c:\newfile.xlsx")
  22780. End Sub
  22781. </code></example>
  22782. </member>
  22783. <member name="M:Aspose.Cells.DigitalSignatures.DigitalSignatureCollection.#ctor">
  22784. <summary>
  22785. The constructor of DigitalSignatureCollection.
  22786. </summary>
  22787. </member>
  22788. <member name="M:Aspose.Cells.DigitalSignatures.DigitalSignatureCollection.Add(Aspose.Cells.DigitalSignatures.DigitalSignature)">
  22789. <summary>
  22790. Add one signature to DigitalSignatureCollection.
  22791. </summary>
  22792. <param name="digitalSignature">Digital signature in collection.</param>
  22793. </member>
  22794. <member name="M:Aspose.Cells.DigitalSignatures.DigitalSignatureCollection.GetEnumerator">
  22795. <summary>
  22796. Get the enumerator for DigitalSignatureCollection,
  22797. this enumerator allows iteration over the collection
  22798. </summary>
  22799. <returns>The enumerator to iteration.</returns>
  22800. </member>
  22801. <member name="T:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions">
  22802. <summary>
  22803. Settings of pdf when converting excel to pdf, PDF/A does not allow security setting.
  22804. </summary>
  22805. </member>
  22806. <member name="M:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.#ctor">
  22807. <summary>
  22808. The constructor of PdfSecurityOptions
  22809. </summary>
  22810. </member>
  22811. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.UserPassword">
  22812. <summary>
  22813. Gets or sets the user password
  22814. </summary>
  22815. </member>
  22816. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.OwnerPassword">
  22817. <summary>
  22818. Gets or sets the owner password of the document
  22819. </summary>
  22820. </member>
  22821. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.PrintPermission">
  22822. <summary>
  22823. Permission to print pdf document
  22824. </summary>
  22825. </member>
  22826. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.ModifyDocumentPermission">
  22827. <summary>
  22828. Permission to modify pdf document
  22829. </summary>
  22830. </member>
  22831. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.ExtractContentPermissionObsolete">
  22832. <summary>
  22833. Permission to copy or extract content Obsoleted according to PDF reference.
  22834. </summary>
  22835. </member>
  22836. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.AnnotationsPermission">
  22837. <summary>
  22838. Permission to comment on the document.
  22839. </summary>
  22840. </member>
  22841. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.FillFormsPermission">
  22842. <summary>
  22843. Permission to fill the form fields.
  22844. </summary>
  22845. </member>
  22846. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.ExtractContentPermission">
  22847. <summary>
  22848. Permission to copy or extract content.
  22849. </summary>
  22850. </member>
  22851. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.AccessibilityExtractContent">
  22852. <summary>
  22853. Permission to copy or extract content (in support of accessibility to disabled users or for other purposes).
  22854. </summary>
  22855. </member>
  22856. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.AssembleDocumentPermission">
  22857. <summary>
  22858. Permission to insert, rotate, or delete pages and create bookmarks or thumbnail images even if ModifyDocumentPermission is not set.
  22859. </summary>
  22860. </member>
  22861. <member name="P:Aspose.Cells.Rendering.PdfSecurity.PdfSecurityOptions.FullQualityPrintPermission">
  22862. <summary>
  22863. Permission to print in high quality.
  22864. </summary>
  22865. </member>
  22866. <member name="T:Aspose.Cells.HeaderFooterCommandType">
  22867. <summary>
  22868. Represents the command type of header and footer.
  22869. </summary>
  22870. </member>
  22871. <member name="F:Aspose.Cells.HeaderFooterCommandType.Text">
  22872. <summary>
  22873. The text.
  22874. </summary>
  22875. </member>
  22876. <member name="F:Aspose.Cells.HeaderFooterCommandType.CurrentPage">
  22877. <summary>
  22878. Current page number
  22879. </summary>
  22880. </member>
  22881. <member name="F:Aspose.Cells.HeaderFooterCommandType.Pagecount">
  22882. <summary>
  22883. Page count
  22884. </summary>
  22885. </member>
  22886. <member name="F:Aspose.Cells.HeaderFooterCommandType.CurrentDate">
  22887. <summary>
  22888. Current date
  22889. </summary>
  22890. </member>
  22891. <member name="F:Aspose.Cells.HeaderFooterCommandType.CurrentTime">
  22892. <summary>
  22893. Current time
  22894. </summary>
  22895. </member>
  22896. <member name="F:Aspose.Cells.HeaderFooterCommandType.SheetName">
  22897. <summary>
  22898. Sheet name
  22899. </summary>
  22900. </member>
  22901. <member name="F:Aspose.Cells.HeaderFooterCommandType.FileName">
  22902. <summary>
  22903. File name without path
  22904. </summary>
  22905. </member>
  22906. <member name="F:Aspose.Cells.HeaderFooterCommandType.FilePath">
  22907. <summary>
  22908. File path without file name
  22909. </summary>
  22910. </member>
  22911. <member name="F:Aspose.Cells.HeaderFooterCommandType.Picture">
  22912. <summary>
  22913. Picture
  22914. </summary>
  22915. </member>
  22916. <member name="T:Aspose.Cells.DataSorterKey">
  22917. <summary>
  22918. Represents the key of the data sorter.
  22919. </summary>
  22920. </member>
  22921. <member name="P:Aspose.Cells.DataSorterKey.Order">
  22922. <summary>
  22923. Indicates the order of sorting.
  22924. </summary>
  22925. </member>
  22926. <member name="P:Aspose.Cells.DataSorterKey.Index">
  22927. <summary>
  22928. Gets the sorted column index(absolute position, column A is 0, B is 1, ...).
  22929. </summary>
  22930. </member>
  22931. <member name="P:Aspose.Cells.DataSorterKey.Type">
  22932. <summary>
  22933. Represents the type of sorting.
  22934. </summary>
  22935. </member>
  22936. <member name="P:Aspose.Cells.DataSorterKey.IconSetType">
  22937. <summary>
  22938. Represents the icon set type.
  22939. </summary>
  22940. <remarks>
  22941. Only effects when <see cref="T:Aspose.Cells.SortOnType" /> is SortOnType.Icon.
  22942. </remarks>
  22943. </member>
  22944. <member name="P:Aspose.Cells.DataSorterKey.IconId">
  22945. <summary>
  22946. Represents the id of the icon set type.
  22947. </summary>
  22948. <remarks>
  22949. Only effects when <see cref="T:Aspose.Cells.SortOnType" /> is SortOnType.Icon.
  22950. </remarks>
  22951. </member>
  22952. <member name="P:Aspose.Cells.DataSorterKey.Color">
  22953. <summary>
  22954. Gets the sorted color.
  22955. </summary>
  22956. <remarks>
  22957. Only effects when <see cref="T:Aspose.Cells.SortOnType" /> is SortOnType.CellColor or SortOnType.FontColor.
  22958. </remarks>
  22959. </member>
  22960. <member name="T:Aspose.Cells.Drawing.LightRigDirectionType">
  22961. <summary>
  22962. Represents the light rig direction type.
  22963. </summary>
  22964. </member>
  22965. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.Bottom">
  22966. <summary>
  22967. Bottom
  22968. </summary>
  22969. </member>
  22970. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.BottomLeft">
  22971. <summary>
  22972. Bottom left.
  22973. </summary>
  22974. </member>
  22975. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.BottomRight">
  22976. <summary>
  22977. Bottom Right.
  22978. </summary>
  22979. </member>
  22980. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.Left">
  22981. <summary>
  22982. Left.
  22983. </summary>
  22984. </member>
  22985. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.Right">
  22986. <summary>
  22987. Right.
  22988. </summary>
  22989. </member>
  22990. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.Top">
  22991. <summary>
  22992. Top.
  22993. </summary>
  22994. </member>
  22995. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.TopLeft">
  22996. <summary>
  22997. Top left.
  22998. </summary>
  22999. </member>
  23000. <member name="F:Aspose.Cells.Drawing.LightRigDirectionType.TopRight">
  23001. <summary>
  23002. Top Right.
  23003. </summary>
  23004. </member>
  23005. <member name="T:Aspose.Cells.Drawing.MsoArrowheadLength">
  23006. <summary>
  23007. Enumerates the line end width of the shape border line.
  23008. </summary>
  23009. </member>
  23010. <member name="F:Aspose.Cells.Drawing.MsoArrowheadLength.Short">
  23011. <summary>
  23012. Short line end length
  23013. </summary>
  23014. </member>
  23015. <member name="F:Aspose.Cells.Drawing.MsoArrowheadLength.Medium">
  23016. <summary>
  23017. Medium line end length
  23018. </summary>
  23019. </member>
  23020. <member name="F:Aspose.Cells.Drawing.MsoArrowheadLength.Long">
  23021. <summary>
  23022. Long line end length
  23023. </summary>
  23024. </member>
  23025. <member name="T:Aspose.Cells.Drawing.MsoArrowheadWidth">
  23026. <summary>
  23027. Enumerates the line end width of the shape border line.
  23028. </summary>
  23029. </member>
  23030. <member name="F:Aspose.Cells.Drawing.MsoArrowheadWidth.Narrow">
  23031. <summary>
  23032. Short line end width.
  23033. </summary>
  23034. </member>
  23035. <member name="F:Aspose.Cells.Drawing.MsoArrowheadWidth.Medium">
  23036. <summary>
  23037. Medium line end width.
  23038. </summary>
  23039. </member>
  23040. <member name="F:Aspose.Cells.Drawing.MsoArrowheadWidth.Wide">
  23041. <summary>
  23042. Wide line end width.
  23043. </summary>
  23044. </member>
  23045. <member name="T:Aspose.Cells.Drawing.TextOverflowType">
  23046. <summary>
  23047. Represents the way the text vertical or horizontal overflow.
  23048. </summary>
  23049. </member>
  23050. <member name="F:Aspose.Cells.Drawing.TextOverflowType.Clip">
  23051. <summary>
  23052. Pay attention to top and bottom barriers.
  23053. Provide no indication that there is text which is not visible.
  23054. </summary>
  23055. </member>
  23056. <member name="F:Aspose.Cells.Drawing.TextOverflowType.Ellipsis">
  23057. <summary>
  23058. Pay attention to top and bottom barriers.
  23059. Use an ellipsis to denote that there is text which is not visible.
  23060. Only for vertical overflow.
  23061. </summary>
  23062. </member>
  23063. <member name="F:Aspose.Cells.Drawing.TextOverflowType.Overflow">
  23064. <summary>
  23065. Overflow the text and pay no attention to top and bottom barriers.
  23066. </summary>
  23067. </member>
  23068. <member name="T:Aspose.Cells.FileFormatUtil">
  23069. <summary>
  23070. Provides utility methods for converting file format enums to strings or file extensions and back.
  23071. </summary>
  23072. </member>
  23073. <member name="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.IO.Stream)">
  23074. <summary>
  23075. Detects and returns the information about a format of an excel stored in a stream.
  23076. </summary>
  23077. <param name="stream">
  23078. </param>
  23079. <returns>A <see cref="T:Aspose.Cells.FileFormatInfo" /> object that contains the detected information.</returns>
  23080. </member>
  23081. <member name="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.IO.Stream,System.String)">
  23082. <summary>
  23083. Detects and returns the information about a format of an excel stored in a stream.
  23084. </summary>
  23085. <param name="stream">
  23086. </param>
  23087. <param name="password">The password for encrypted ooxml files.</param>
  23088. <returns>A <see cref="T:Aspose.Cells.FileFormatInfo" /> object that contains the detected information.</returns>
  23089. </member>
  23090. <member name="M:Aspose.Cells.FileFormatUtil.VerifyPassword(System.IO.Stream,System.String)">
  23091. <summary>
  23092. Detects and returns the information about a format of an excel stored in a stream.
  23093. </summary>
  23094. <param name="stream">
  23095. </param>
  23096. <param name="password">The password for encrypted ooxml files.</param>
  23097. <returns>Returns whether the password is corrected.</returns>
  23098. </member>
  23099. <member name="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.String)">
  23100. <summary>
  23101. Detects and returns the information about a format of an excel stored in a file.
  23102. </summary>
  23103. <param name="filePath">The file path.</param>
  23104. <returns>A <see cref="T:Aspose.Cells.FileFormatInfo" /> object that contains the detected information.</returns>
  23105. </member>
  23106. <member name="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.String,System.String)">
  23107. <summary>
  23108. Detects and returns the information about a format of an excel stored in a file.
  23109. </summary>
  23110. <param name="filePath">The file path.</param>
  23111. <param name="password">The password for encrypted ooxml files.</param>
  23112. <returns>A <see cref="T:Aspose.Cells.FileFormatInfo" /> object that contains the detected information.</returns>
  23113. </member>
  23114. <member name="M:Aspose.Cells.FileFormatUtil.ExtensionToSaveFormat(System.String)">
  23115. <summary>
  23116. Converts a file name extension into a SaveFormat value.
  23117. </summary>
  23118. <param name="extension">The file extension. Can be with or without a leading dot. Case-insensitive.</param>
  23119. <returns>
  23120. </returns>
  23121. <remarks>If the extension cannot be recognized, returns <see cref="F:Aspose.Cells.SaveFormat.Unknown" />.</remarks>
  23122. </member>
  23123. <member name="M:Aspose.Cells.FileFormatUtil.IsTemplateFormat(System.String)">
  23124. <summary>
  23125. Returns true if the extension is .xlt, .xltX, .xltm,.ots.
  23126. </summary>
  23127. <param name="extension">
  23128. </param>
  23129. <returns>
  23130. </returns>
  23131. </member>
  23132. <member name="M:Aspose.Cells.FileFormatUtil.LoadFormatToExtension(Aspose.Cells.LoadFormat)">
  23133. <summary>
  23134. Converts a load format enumerated value into a file extension.
  23135. </summary>
  23136. <param name="loadFormat">The loaded file format.</param>
  23137. <returns> The returned extension is a lower-case string with a leading dot.</returns>
  23138. <remarks>If it can not be converted, returns null.</remarks>
  23139. </member>
  23140. <member name="M:Aspose.Cells.FileFormatUtil.LoadFormatToSaveFormat(Aspose.Cells.LoadFormat)">
  23141. <summary>
  23142. Converts a LoadFormat value to a SaveFormat value if possible.
  23143. </summary>
  23144. <param name="loadFormat">The load format.</param>
  23145. <returns>The save format.</returns>
  23146. </member>
  23147. <member name="M:Aspose.Cells.FileFormatUtil.SaveFormatToExtension(Aspose.Cells.SaveFormat)">
  23148. <summary>
  23149. Converts a save format enumerated value into a file extension.
  23150. </summary>
  23151. <param name="format">The save format.</param>
  23152. <returns>The returned extension is a lower-case string with a leading dot. </returns>
  23153. </member>
  23154. <member name="M:Aspose.Cells.FileFormatUtil.SaveFormatToLoadFormat(Aspose.Cells.SaveFormat)">
  23155. <summary>
  23156. Converts a SaveFormat value to a LoadFormat value if possible.
  23157. </summary>
  23158. <param name="saveFormat">The save format.</param>
  23159. <returns>The load format</returns>
  23160. </member>
  23161. <member name="T:Aspose.Cells.PasteType">
  23162. <summary>
  23163. Represents the paste special type.
  23164. </summary>
  23165. </member>
  23166. <member name="F:Aspose.Cells.PasteType.All">
  23167. <summary>
  23168. Copies all data of the range.
  23169. </summary>
  23170. </member>
  23171. <member name="F:Aspose.Cells.PasteType.Default">
  23172. <summary>
  23173. It works as "All" behavior of MS Excel.
  23174. </summary>
  23175. </member>
  23176. <member name="F:Aspose.Cells.PasteType.AllExceptBorders">
  23177. <summary>
  23178. Copies all data of the range without the range.
  23179. </summary>
  23180. </member>
  23181. <member name="F:Aspose.Cells.PasteType.DefaultExceptBorders">
  23182. <summary>
  23183. It works as "All except borders" behavior of MS Excel.
  23184. </summary>
  23185. </member>
  23186. <member name="F:Aspose.Cells.PasteType.ColumnWidths">
  23187. <summary>
  23188. Only copies the widths of the range.
  23189. </summary>
  23190. </member>
  23191. <member name="F:Aspose.Cells.PasteType.RowHeights">
  23192. <summary>
  23193. Only copies the heights of the range.
  23194. </summary>
  23195. </member>
  23196. <member name="F:Aspose.Cells.PasteType.Comments">
  23197. <summary>
  23198. </summary>
  23199. </member>
  23200. <member name="F:Aspose.Cells.PasteType.Formats">
  23201. <summary>
  23202. </summary>
  23203. </member>
  23204. <member name="F:Aspose.Cells.PasteType.Formulas">
  23205. <summary>
  23206. </summary>
  23207. </member>
  23208. <member name="F:Aspose.Cells.PasteType.FormulasAndNumberFormats">
  23209. <summary>
  23210. </summary>
  23211. </member>
  23212. <member name="F:Aspose.Cells.PasteType.Validation">
  23213. <summary>
  23214. </summary>
  23215. </member>
  23216. <member name="F:Aspose.Cells.PasteType.Values">
  23217. <summary>
  23218. </summary>
  23219. </member>
  23220. <member name="F:Aspose.Cells.PasteType.ValuesAndNumberFormats">
  23221. <summary>
  23222. </summary>
  23223. </member>
  23224. <member name="T:Aspose.Cells.Pivot.PivotFieldCollection">
  23225. <summary>
  23226. Represents a collection of all the PivotField objects
  23227. in the PivotTable's specific PivotFields type.
  23228. </summary>
  23229. </member>
  23230. <member name="M:Aspose.Cells.Pivot.PivotFieldCollection.GetEnumerator">
  23231. <summary>
  23232. Gets an enumerator over the elements in this collection in proper sequence.
  23233. </summary>
  23234. <returns>enumerator</returns>
  23235. </member>
  23236. <member name="M:Aspose.Cells.Pivot.PivotFieldCollection.AddByBaseIndex(System.Int32)">
  23237. <summary>
  23238. Adds a PivotField Object to the specific type PivotFields.
  23239. </summary>
  23240. <param name="baseFieldIndex">field index in the base PivotFields.</param>
  23241. <returns>the index of the PivotField Object in this PivotFields.</returns>
  23242. </member>
  23243. <member name="M:Aspose.Cells.Pivot.PivotFieldCollection.Add(Aspose.Cells.Pivot.PivotField)">
  23244. <summary>
  23245. Adds a PivotField Object to the specific type PivotFields.
  23246. </summary>
  23247. <param name="pivotField">a PivotField Object.</param>
  23248. <returns>the index of the PivotField Object in this PivotFields.</returns>
  23249. </member>
  23250. <member name="M:Aspose.Cells.Pivot.PivotFieldCollection.Clear">
  23251. <summary>
  23252. clear all fields of PivotFieldCollection
  23253. </summary>
  23254. </member>
  23255. <member name="P:Aspose.Cells.Pivot.PivotFieldCollection.Type">
  23256. <summary>
  23257. Gets the PivotFields type.
  23258. </summary>
  23259. </member>
  23260. <member name="P:Aspose.Cells.Pivot.PivotFieldCollection.Count">
  23261. <summary>
  23262. Gets the count of the pivotFields.
  23263. </summary>
  23264. </member>
  23265. <member name="P:Aspose.Cells.Pivot.PivotFieldCollection.Item(System.Int32)">
  23266. <summary>
  23267. Gets the PivotField Object at the specific index.
  23268. </summary>
  23269. </member>
  23270. <member name="P:Aspose.Cells.Pivot.PivotFieldCollection.Item(System.String)">
  23271. <summary>
  23272. Gets the PivotField Object of the specific name.
  23273. </summary>
  23274. </member>
  23275. <member name="T:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat">
  23276. <summary>
  23277. Represents data display format in the PivotTable data field.
  23278. </summary>
  23279. </member>
  23280. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.Normal">
  23281. <summary>
  23282. Represents normal display format.
  23283. </summary>
  23284. </member>
  23285. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.DifferenceFrom">
  23286. <summary>
  23287. Represents difference from display format.
  23288. </summary>
  23289. </member>
  23290. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOf">
  23291. <summary>
  23292. Represents percentage of display format.
  23293. </summary>
  23294. </member>
  23295. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageDifferenceFrom">
  23296. <summary>
  23297. Represents percentage difference from display format.
  23298. </summary>
  23299. </member>
  23300. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.RunningTotalIn">
  23301. <summary>
  23302. Represents running total in display format.
  23303. </summary>
  23304. </member>
  23305. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfRow">
  23306. <summary>
  23307. Represents percentage of row display format.
  23308. </summary>
  23309. </member>
  23310. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfColumn">
  23311. <summary>
  23312. Represents percentage of column display format.
  23313. </summary>
  23314. </member>
  23315. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfTotal">
  23316. <summary>
  23317. Represents percentage of total display format.
  23318. </summary>
  23319. </member>
  23320. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.Index">
  23321. <summary>
  23322. Represents index display format.
  23323. </summary>
  23324. </member>
  23325. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfParentRowTotal">
  23326. <summary>
  23327. Represents percentage of parent row total display format.
  23328. </summary>
  23329. </member>
  23330. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfParentColumnTotal">
  23331. <summary>
  23332. Represents percentage of parent column total display format.
  23333. </summary>
  23334. </member>
  23335. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfParentTotal">
  23336. <summary>
  23337. Represents percentage of parent total display format.
  23338. </summary>
  23339. </member>
  23340. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.PercentageOfRunningTotalIn">
  23341. <summary>
  23342. Represents percentage of running total in display format.
  23343. </summary>
  23344. </member>
  23345. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.RankSmallestToLargest">
  23346. <summary>
  23347. Represents smallest to largest display format.
  23348. </summary>
  23349. </member>
  23350. <member name="F:Aspose.Cells.Pivot.PivotFieldDataDisplayFormat.RankLargestToSmallest">
  23351. <summary>
  23352. Represents largest to smallest display format.
  23353. </summary>
  23354. </member>
  23355. <member name="T:Aspose.Cells.Pivot.PivotFieldSubtotalType">
  23356. <summary>
  23357. Summary description for PivotFieldSubtotalType.
  23358. </summary>
  23359. </member>
  23360. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.None">
  23361. <summary>
  23362. Represents None subtotal type.
  23363. </summary>
  23364. </member>
  23365. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Automatic">
  23366. <summary>
  23367. Represents Automatic subtotal type.
  23368. </summary>
  23369. </member>
  23370. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Sum">
  23371. <summary>
  23372. Represents Sum subtotal type.
  23373. </summary>
  23374. </member>
  23375. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Count">
  23376. <summary>
  23377. Represents Count subtotal type.
  23378. </summary>
  23379. </member>
  23380. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Average">
  23381. <summary>
  23382. Represents Average subtotal type.
  23383. </summary>
  23384. </member>
  23385. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Max">
  23386. <summary>
  23387. Represents Max subtotal type.
  23388. </summary>
  23389. </member>
  23390. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Min">
  23391. <summary>
  23392. Represents Min subtotal type.
  23393. </summary>
  23394. </member>
  23395. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Product">
  23396. <summary>
  23397. Represents Product subtotal type.
  23398. </summary>
  23399. </member>
  23400. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.CountNums">
  23401. <summary>
  23402. Represents Count Nums subtotal type.
  23403. </summary>
  23404. </member>
  23405. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Stdev">
  23406. <summary>
  23407. Represents Stdev subtotal type.
  23408. </summary>
  23409. </member>
  23410. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Stdevp">
  23411. <summary>
  23412. Represents Stdevp subtotal type.
  23413. </summary>
  23414. </member>
  23415. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Var">
  23416. <summary>
  23417. Represents Var subtotal type.
  23418. </summary>
  23419. </member>
  23420. <member name="F:Aspose.Cells.Pivot.PivotFieldSubtotalType.Varp">
  23421. <summary>
  23422. Represents Varp subtotal type.
  23423. </summary>
  23424. </member>
  23425. <member name="T:Aspose.Cells.Pivot.PivotFieldType">
  23426. <summary>
  23427. Represents PivotTable field type.
  23428. </summary>
  23429. </member>
  23430. <member name="F:Aspose.Cells.Pivot.PivotFieldType.Undefined">
  23431. <summary>
  23432. Presents base pivot field type.
  23433. </summary>
  23434. </member>
  23435. <member name="F:Aspose.Cells.Pivot.PivotFieldType.Row">
  23436. <summary>
  23437. Presents row pivot field type.
  23438. </summary>
  23439. </member>
  23440. <member name="F:Aspose.Cells.Pivot.PivotFieldType.Column">
  23441. <summary>
  23442. Presents column pivot field type.
  23443. </summary>
  23444. </member>
  23445. <member name="F:Aspose.Cells.Pivot.PivotFieldType.Page">
  23446. <summary>
  23447. Presents page pivot field type.
  23448. </summary>
  23449. </member>
  23450. <member name="F:Aspose.Cells.Pivot.PivotFieldType.Data">
  23451. <summary>
  23452. Presents data pivot field type.
  23453. </summary>
  23454. </member>
  23455. <member name="T:Aspose.Cells.Pivot.PivotGroupByType">
  23456. <summary>
  23457. Represents PivotTable groupby type.
  23458. </summary>
  23459. </member>
  23460. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.RangeOfValues">
  23461. <summary>
  23462. Presents range of values groupby type.
  23463. </summary>
  23464. </member>
  23465. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Seconds">
  23466. <summary>
  23467. Presents Seconds groupby type.
  23468. </summary>
  23469. </member>
  23470. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Minutes">
  23471. <summary>
  23472. Presents Minutes groupby type.
  23473. </summary>
  23474. </member>
  23475. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Hours">
  23476. <summary>
  23477. Presents Hours groupby type.
  23478. </summary>
  23479. </member>
  23480. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Days">
  23481. <summary>
  23482. Presents Days groupby type.
  23483. </summary>
  23484. </member>
  23485. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Months">
  23486. <summary>
  23487. Presents Months groupby type.
  23488. </summary>
  23489. </member>
  23490. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Quarters">
  23491. <summary>
  23492. Presents Quarters groupby type.
  23493. </summary>
  23494. </member>
  23495. <member name="F:Aspose.Cells.Pivot.PivotGroupByType.Years">
  23496. <summary>
  23497. Presents Years groupby type.
  23498. </summary>
  23499. </member>
  23500. <member name="T:Aspose.Cells.Pivot.PivotItem">
  23501. <summary>
  23502. Represents a item in a PivotField report.
  23503. </summary>
  23504. </member>
  23505. <member name="M:Aspose.Cells.Pivot.PivotItem.Move(System.Int32,System.Boolean)">
  23506. <summary>
  23507. Moves the item up or down
  23508. </summary>
  23509. <param name="count">
  23510. The number of moving up or down.
  23511. Move the item up if this is less than zero;
  23512. Move the item down if this is greater than zero.
  23513. </param>
  23514. <param name="isSameParent">
  23515. Specifying whether moving operation is in the same parent node or not
  23516. </param>
  23517. </member>
  23518. <member name="M:Aspose.Cells.Pivot.PivotItem.GetStringValue">
  23519. <summary>
  23520. Gets the string value of the pivot item
  23521. If the value is null, it will return ""
  23522. </summary>
  23523. </member>
  23524. <member name="M:Aspose.Cells.Pivot.PivotItem.GetDoubleValue">
  23525. <summary>
  23526. Gets the double value of the pivot item
  23527. If the value is null or not number ,it will return 0
  23528. </summary>
  23529. </member>
  23530. <member name="M:Aspose.Cells.Pivot.PivotItem.GetDateTimeValue">
  23531. <summary>
  23532. Gets the date time value of the pivot item
  23533. If the value is null ,it will return DateTime.MinValue
  23534. </summary>
  23535. </member>
  23536. <member name="P:Aspose.Cells.Pivot.PivotItem.IsHidden">
  23537. <summary>
  23538. Gets and Sets whether the pivot item is hidden.
  23539. </summary>
  23540. </member>
  23541. <member name="P:Aspose.Cells.Pivot.PivotItem.Position">
  23542. <summary>
  23543. Specifying the position index in all the PivotItems,not the PivotItems under the same parent node.
  23544. </summary>
  23545. </member>
  23546. <member name="P:Aspose.Cells.Pivot.PivotItem.PositionInSameParentNode">
  23547. <summary>
  23548. Specifying the position index in the PivotItems under the same parent node.
  23549. </summary>
  23550. </member>
  23551. <member name="P:Aspose.Cells.Pivot.PivotItem.Value">
  23552. <summary>
  23553. Gets the value of the pivot item
  23554. </summary>
  23555. </member>
  23556. <member name="P:Aspose.Cells.Pivot.PivotItem.Name">
  23557. <summary>
  23558. Gets the name of the pivot item.
  23559. </summary>
  23560. </member>
  23561. <member name="P:Aspose.Cells.Pivot.PivotItem.Index">
  23562. <summary>
  23563. Gets the index of the pivot item in the pivot field
  23564. </summary>
  23565. </member>
  23566. <member name="T:Aspose.Cells.Pivot.PivotItemCollection">
  23567. <summary>
  23568. Represents a collection of all the PivotItem objects in the PivotField's
  23569. </summary>
  23570. </member>
  23571. <member name="M:Aspose.Cells.Pivot.PivotItemCollection.GetEnumerator">
  23572. <summary>
  23573. Gets an enumerator over the elements in this collection in proper sequence.
  23574. </summary>
  23575. <returns>enumerator</returns>
  23576. </member>
  23577. <member name="M:Aspose.Cells.Pivot.PivotItemCollection.ChangeitemsOrder(System.Int32,System.Int32)">
  23578. <summary>
  23579. Directly changes the orders of the two items.
  23580. </summary>
  23581. <param name="sourceIndex">The current index</param>
  23582. <param name="destIndex">The dest index</param>
  23583. </member>
  23584. <member name="P:Aspose.Cells.Pivot.PivotItemCollection.Item(System.Int32)">
  23585. <summary>
  23586. Gets the PivotItem Object at the specific index.
  23587. </summary>
  23588. </member>
  23589. <member name="P:Aspose.Cells.Pivot.PivotItemCollection.Item(System.String)">
  23590. <summary>
  23591. Gets the PivotItem Object of the specific name.
  23592. </summary>
  23593. </member>
  23594. <member name="P:Aspose.Cells.Pivot.PivotItemCollection.Count">
  23595. <summary>
  23596. Gets the count of the pivot items.
  23597. </summary>
  23598. </member>
  23599. <member name="T:Aspose.Cells.Pivot.PivotItemPosition">
  23600. <summary>
  23601. Represents PivotTable base item Next/Previous/All position in the base field .
  23602. </summary>
  23603. </member>
  23604. <member name="F:Aspose.Cells.Pivot.PivotItemPosition.Previous">
  23605. <summary>
  23606. Represents the previous pivot item in the PivotField.
  23607. </summary>
  23608. </member>
  23609. <member name="F:Aspose.Cells.Pivot.PivotItemPosition.Next">
  23610. <summary>
  23611. Represents the next pivot item in the PivotField.
  23612. </summary>
  23613. </member>
  23614. <member name="F:Aspose.Cells.Pivot.PivotItemPosition.Custom">
  23615. <summary>
  23616. Represents a pivot item index, as specified by Pivot Items, that specifies a pivot item in the PivotField.
  23617. <remarks>only read</remarks></summary>
  23618. </member>
  23619. <member name="T:Aspose.Cells.Pivot.PivotPageFields">
  23620. <summary>
  23621. Represents the pivot page field items
  23622. if the pivot table data source is consolidation ranges.
  23623. It only can contain up to 4 fields.
  23624. </summary>
  23625. </member>
  23626. <member name="M:Aspose.Cells.Pivot.PivotPageFields.#ctor">
  23627. <summary>
  23628. Represents the pivot page field items.
  23629. </summary>
  23630. </member>
  23631. <member name="M:Aspose.Cells.Pivot.PivotPageFields.AddPageField(System.String[])">
  23632. <summary>
  23633. Adds a page field.
  23634. </summary>
  23635. <param name="pageItems">Page field item label</param>
  23636. </member>
  23637. <member name="M:Aspose.Cells.Pivot.PivotPageFields.AddIdentify(System.Int32,System.Int32[])">
  23638. <summary>
  23639. Sets which item label in each page field to use to identify the data range.
  23640. The pageItemIndex.Length must be equal to PageFieldCount, so please add the page field first.
  23641. </summary>
  23642. <param name="rangeIndex">The consolidation data range index.</param>
  23643. <param name="pageItemIndex">The page item index in the each page field.
  23644. pageItemIndex[2] = 1 means the second item in the third field to use to identify this range.
  23645. pageItemIndex[1] = -1 means no item in the second field to use to identify this range
  23646. and MS will auto create "blank" item in the second field to identify this range.
  23647. </param>
  23648. </member>
  23649. <member name="P:Aspose.Cells.Pivot.PivotPageFields.PageFieldCount">
  23650. <summary>
  23651. Gets the number of page fields.
  23652. </summary>
  23653. </member>
  23654. <member name="T:Aspose.Cells.Pivot.PivotTableAutoFormatType">
  23655. <summary>
  23656. Represents PivotTable auto format type.
  23657. </summary>
  23658. </member>
  23659. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.None">
  23660. <summary>
  23661. Represents None format type.
  23662. </summary>
  23663. </member>
  23664. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Classic">
  23665. <summary>
  23666. Represents Classic auto format type.
  23667. </summary>
  23668. </member>
  23669. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report1">
  23670. <summary>
  23671. Represents Report1 format type.
  23672. </summary>
  23673. </member>
  23674. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report2">
  23675. <summary>
  23676. Represents Report2 format type.
  23677. </summary>
  23678. </member>
  23679. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report3">
  23680. <summary>
  23681. Represents Report3 format type.
  23682. </summary>
  23683. </member>
  23684. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report4">
  23685. <summary>
  23686. Represents Report4 format type.
  23687. </summary>
  23688. </member>
  23689. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report5">
  23690. <summary>
  23691. Represents Report5 format type.
  23692. </summary>
  23693. </member>
  23694. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report6">
  23695. <summary>
  23696. Represents Report6 format type.
  23697. </summary>
  23698. </member>
  23699. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report7">
  23700. <summary>
  23701. Represents Report7 format type.
  23702. </summary>
  23703. </member>
  23704. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report8">
  23705. <summary>
  23706. Represents Report8 format type.
  23707. </summary>
  23708. </member>
  23709. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report9">
  23710. <summary>
  23711. Represents Report9 format type.
  23712. </summary>
  23713. </member>
  23714. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Report10">
  23715. <summary>
  23716. Represents Report10 format type.
  23717. </summary>
  23718. </member>
  23719. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table1">
  23720. <summary>
  23721. Represents Table1 format type.
  23722. </summary>
  23723. </member>
  23724. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table2">
  23725. <summary>
  23726. Represents Table2 format type.
  23727. </summary>
  23728. </member>
  23729. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table3">
  23730. <summary>
  23731. Represents Table3 format type.
  23732. </summary>
  23733. </member>
  23734. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table4">
  23735. <summary>
  23736. Represents Table4 format type.
  23737. </summary>
  23738. </member>
  23739. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table5">
  23740. <summary>
  23741. Represents Table5 format type.
  23742. </summary>
  23743. </member>
  23744. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table6">
  23745. <summary>
  23746. Represents Table6 format type.
  23747. </summary>
  23748. </member>
  23749. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table7">
  23750. <summary>
  23751. Represents Table7 format type.
  23752. </summary>
  23753. </member>
  23754. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table8">
  23755. <summary>
  23756. Represents Table8 format type.
  23757. </summary>
  23758. </member>
  23759. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table9">
  23760. <summary>
  23761. Represents Table9 format type.
  23762. </summary>
  23763. </member>
  23764. <member name="F:Aspose.Cells.Pivot.PivotTableAutoFormatType.Table10">
  23765. <summary>
  23766. Represents Table10 format type.
  23767. </summary>
  23768. </member>
  23769. <member name="T:Aspose.Cells.Pivot.PivotTableCollection">
  23770. <summary>
  23771. Represents the collection of all the PivotTable objects on the specified worksheet.
  23772. </summary>
  23773. </member>
  23774. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Dispose">
  23775. <summary>
  23776. Performs application-defined tasks associated with freeing, releasing, or
  23777. resetting unmanaged resources.
  23778. </summary>
  23779. </member>
  23780. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String,System.String,System.String)">
  23781. <summary>
  23782. Adds a new PivotTable cache to a PivotCaches collection.
  23783. </summary>
  23784. <param name="sourceData">The data for the new PivotTable cache.</param>
  23785. <param name="destCellName">The cell in the upper-left corner of the PivotTable report's destination range.</param>
  23786. <param name="tableName">The name of the new PivotTable report.</param>
  23787. <returns>The new added cache index.</returns>
  23788. </member>
  23789. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String,System.String,System.String,System.Boolean)">
  23790. <summary>
  23791. Adds a new PivotTable cache to a PivotCaches collection.
  23792. </summary>
  23793. <param name="sourceData">The data for the new PivotTable cache.</param>
  23794. <param name="destCellName">The cell in the upper-left corner of the PivotTable report's destination range.</param>
  23795. <param name="tableName">The name of the new PivotTable report.</param>
  23796. <param name="useSameSource">Indicates whether using same data source when another existing pivot table has used this data source.
  23797. If the property is true, it will save memory.</param>
  23798. <returns>The new added cache index.</returns>
  23799. </member>
  23800. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String,System.Int32,System.Int32,System.String)">
  23801. <summary>
  23802. Adds a new PivotTable cache to a PivotCaches collection.
  23803. </summary>
  23804. <param name="sourceData">The data cell range for the new PivotTable.Example : Sheet1!A1:C8</param>
  23805. <param name="row">Row index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23806. <param name="column">Column index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23807. <param name="tableName">The name of the new PivotTable report.</param>
  23808. <returns>The new added cache index.</returns>
  23809. </member>
  23810. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String,System.Int32,System.Int32,System.String,System.Boolean)">
  23811. <summary>
  23812. Adds a new PivotTable cache to a PivotCaches collection.
  23813. </summary>
  23814. <param name="sourceData">The data cell range for the new PivotTable.Example : Sheet1!A1:C8</param>
  23815. <param name="row">Row index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23816. <param name="column">Column index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23817. <param name="tableName">The name of the new PivotTable report.</param>
  23818. <param name="useSameSource">Indicates whether using same data source when another existing pivot table has used this data source.
  23819. If the property is true, it will save memory.</param>
  23820. <returns>The new added cache index.</returns>
  23821. </member>
  23822. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(Aspose.Cells.Pivot.PivotTable,System.String,System.String)">
  23823. <summary>
  23824. Adds a new PivotTable Object to the collection from another PivotTable.
  23825. </summary>
  23826. <param name="pivotTable">The source pivotTable.</param>
  23827. <param name="destCellName">The cell in the upper-left corner of the PivotTable report's destination range.</param>
  23828. <param name="tableName">The name of the new PivotTable report.</param>
  23829. <returns>The new added PivotTable index.</returns>
  23830. </member>
  23831. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(Aspose.Cells.Pivot.PivotTable,System.Int32,System.Int32,System.String)">
  23832. <summary>
  23833. Adds a new PivotTable Object to the collection from another PivotTable.
  23834. </summary>
  23835. <param name="pivotTable">The source pivotTable.</param>
  23836. <param name="row">Row index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23837. <param name="column">Column index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23838. <param name="tableName">The name of the new PivotTable report.</param>
  23839. <returns>The new added PivotTable index.</returns>
  23840. </member>
  23841. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String[],System.Boolean,Aspose.Cells.Pivot.PivotPageFields,System.String,System.String)">
  23842. <summary>
  23843. Adds a new PivotTable Object to the collection with multiple consolidation ranges as data source.
  23844. </summary>
  23845. <param name="sourceData">The multiple consolidation ranges,such as {"Sheet1!A1:C8","Sheet2!A1:B8"}</param>
  23846. <param name="isAutoPage">Whether auto create a single page field.
  23847. If true,the following param pageFields will be ignored.
  23848. </param>
  23849. <param name="pageFields">The pivot page field items.
  23850. </param>
  23851. <param name="destCellName">destCellName The name of the new PivotTable report.</param>
  23852. <param name="tableName">the name of the new PivotTable report.</param>
  23853. <returns>The new added PivotTable index.</returns>
  23854. </member>
  23855. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Add(System.String[],System.Boolean,Aspose.Cells.Pivot.PivotPageFields,System.Int32,System.Int32,System.String)">
  23856. <summary>
  23857. Adds a new PivotTable Object to the collection with multiple consolidation ranges as data source.
  23858. </summary>
  23859. <param name="sourceData">The multiple consolidation ranges,such as {"Sheet1!A1:C8","Sheet2!A1:B8"}</param>
  23860. <param name="isAutoPage">Whether auto create a single page field.
  23861. If true,the following param pageFields will be ignored</param>
  23862. <param name="pageFields">The pivot page field items.
  23863. </param>
  23864. <param name="row">Row index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23865. <param name="column">Column index of the cell in the upper-left corner of the PivotTable report's destination range.</param>
  23866. <param name="tableName">The name of the new PivotTable report.</param>
  23867. <returns>The new added PivotTable index.</returns>
  23868. </member>
  23869. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Clear">
  23870. <summary>
  23871. Clear all pivot tables.
  23872. </summary>
  23873. </member>
  23874. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.Remove(Aspose.Cells.Pivot.PivotTable)">
  23875. <summary>
  23876. Deletes the specified PivotTable
  23877. </summary>
  23878. <param name="pivotTable">PivotTable object</param>
  23879. </member>
  23880. <member name="M:Aspose.Cells.Pivot.PivotTableCollection.RemoveAt(System.Int32)">
  23881. <summary>
  23882. Deletes the PivotTable at the specified index
  23883. </summary>
  23884. <param name="index">the position index in PivotTable collection</param>
  23885. </member>
  23886. <member name="P:Aspose.Cells.Pivot.PivotTableCollection.Item(System.Int32)">
  23887. <summary>
  23888. Gets the PivotTable report by index.
  23889. </summary>
  23890. </member>
  23891. <member name="P:Aspose.Cells.Pivot.PivotTableCollection.Item(System.String)">
  23892. <summary>
  23893. Gets the PivotTable report by pivottable's name.
  23894. </summary>
  23895. </member>
  23896. <member name="P:Aspose.Cells.Pivot.PivotTableCollection.Item(System.Int32,System.Int32)">
  23897. <summary>
  23898. Gets the PivotTable report by pivottable's position.
  23899. </summary>
  23900. </member>
  23901. <member name="T:Aspose.Cells.Pivot.PivotTableStyleType">
  23902. <summary>
  23903. Represents the pivot table style type.
  23904. </summary>
  23905. </member>
  23906. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.None">
  23907. <summary>
  23908. </summary>
  23909. </member>
  23910. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight1">
  23911. <summary>
  23912. </summary>
  23913. </member>
  23914. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight2">
  23915. <summary>
  23916. </summary>
  23917. </member>
  23918. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight3">
  23919. <summary>
  23920. </summary>
  23921. </member>
  23922. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight4">
  23923. <summary>
  23924. </summary>
  23925. </member>
  23926. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight5">
  23927. <summary>
  23928. </summary>
  23929. </member>
  23930. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight6">
  23931. <summary>
  23932. </summary>
  23933. </member>
  23934. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight7">
  23935. <summary>
  23936. </summary>
  23937. </member>
  23938. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight8">
  23939. <summary>
  23940. </summary>
  23941. </member>
  23942. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight9">
  23943. <summary>
  23944. </summary>
  23945. </member>
  23946. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight10">
  23947. <summary>
  23948. </summary>
  23949. </member>
  23950. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight11">
  23951. <summary>
  23952. </summary>
  23953. </member>
  23954. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight12">
  23955. <summary>
  23956. </summary>
  23957. </member>
  23958. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight13">
  23959. <summary>
  23960. </summary>
  23961. </member>
  23962. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight14">
  23963. <summary>
  23964. </summary>
  23965. </member>
  23966. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight15">
  23967. <summary>
  23968. </summary>
  23969. </member>
  23970. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight16">
  23971. <summary>
  23972. </summary>
  23973. </member>
  23974. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight17">
  23975. <summary>
  23976. </summary>
  23977. </member>
  23978. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight18">
  23979. <summary>
  23980. </summary>
  23981. </member>
  23982. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight19">
  23983. <summary>
  23984. </summary>
  23985. </member>
  23986. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight20">
  23987. <summary>
  23988. </summary>
  23989. </member>
  23990. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight21">
  23991. <summary>
  23992. </summary>
  23993. </member>
  23994. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight22">
  23995. <summary>
  23996. </summary>
  23997. </member>
  23998. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight23">
  23999. <summary>
  24000. </summary>
  24001. </member>
  24002. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight24">
  24003. <summary>
  24004. </summary>
  24005. </member>
  24006. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight25">
  24007. <summary>
  24008. </summary>
  24009. </member>
  24010. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight26">
  24011. <summary>
  24012. </summary>
  24013. </member>
  24014. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight27">
  24015. <summary>
  24016. </summary>
  24017. </member>
  24018. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleLight28">
  24019. <summary>
  24020. </summary>
  24021. </member>
  24022. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium1">
  24023. <summary>
  24024. </summary>
  24025. </member>
  24026. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium2">
  24027. <summary>
  24028. </summary>
  24029. </member>
  24030. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium3">
  24031. <summary>
  24032. </summary>
  24033. </member>
  24034. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium4">
  24035. <summary>
  24036. </summary>
  24037. </member>
  24038. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium5">
  24039. <summary>
  24040. </summary>
  24041. </member>
  24042. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium6">
  24043. <summary>
  24044. </summary>
  24045. </member>
  24046. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium7">
  24047. <summary>
  24048. </summary>
  24049. </member>
  24050. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium8">
  24051. <summary>
  24052. </summary>
  24053. </member>
  24054. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium9">
  24055. <summary>
  24056. </summary>
  24057. </member>
  24058. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium10">
  24059. <summary>
  24060. </summary>
  24061. </member>
  24062. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium11">
  24063. <summary>
  24064. </summary>
  24065. </member>
  24066. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium12">
  24067. <summary>
  24068. </summary>
  24069. </member>
  24070. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium13">
  24071. <summary>
  24072. </summary>
  24073. </member>
  24074. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium14">
  24075. <summary>
  24076. </summary>
  24077. </member>
  24078. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium15">
  24079. <summary>
  24080. </summary>
  24081. </member>
  24082. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium16">
  24083. <summary>
  24084. </summary>
  24085. </member>
  24086. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium17">
  24087. <summary>
  24088. </summary>
  24089. </member>
  24090. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium18">
  24091. <summary>
  24092. </summary>
  24093. </member>
  24094. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium19">
  24095. <summary>
  24096. </summary>
  24097. </member>
  24098. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium20">
  24099. <summary>
  24100. </summary>
  24101. </member>
  24102. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium21">
  24103. <summary>
  24104. </summary>
  24105. </member>
  24106. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium22">
  24107. <summary>
  24108. </summary>
  24109. </member>
  24110. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium23">
  24111. <summary>
  24112. </summary>
  24113. </member>
  24114. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium24">
  24115. <summary>
  24116. </summary>
  24117. </member>
  24118. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium25">
  24119. <summary>
  24120. </summary>
  24121. </member>
  24122. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium26">
  24123. <summary>
  24124. </summary>
  24125. </member>
  24126. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium27">
  24127. <summary>
  24128. </summary>
  24129. </member>
  24130. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleMedium28">
  24131. <summary>
  24132. </summary>
  24133. </member>
  24134. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark1">
  24135. <summary>
  24136. </summary>
  24137. </member>
  24138. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark2">
  24139. <summary>
  24140. </summary>
  24141. </member>
  24142. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark3">
  24143. <summary>
  24144. </summary>
  24145. </member>
  24146. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark4">
  24147. <summary>
  24148. </summary>
  24149. </member>
  24150. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark5">
  24151. <summary>
  24152. </summary>
  24153. </member>
  24154. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark6">
  24155. <summary>
  24156. </summary>
  24157. </member>
  24158. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark7">
  24159. <summary>
  24160. </summary>
  24161. </member>
  24162. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark8">
  24163. <summary>
  24164. </summary>
  24165. </member>
  24166. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark9">
  24167. <summary>
  24168. </summary>
  24169. </member>
  24170. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark10">
  24171. <summary>
  24172. </summary>
  24173. </member>
  24174. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark11">
  24175. <summary>
  24176. </summary>
  24177. </member>
  24178. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark12">
  24179. <summary>
  24180. </summary>
  24181. </member>
  24182. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark13">
  24183. <summary>
  24184. </summary>
  24185. </member>
  24186. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark14">
  24187. <summary>
  24188. </summary>
  24189. </member>
  24190. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark15">
  24191. <summary>
  24192. </summary>
  24193. </member>
  24194. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark16">
  24195. <summary>
  24196. </summary>
  24197. </member>
  24198. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark17">
  24199. <summary>
  24200. </summary>
  24201. </member>
  24202. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark18">
  24203. <summary>
  24204. </summary>
  24205. </member>
  24206. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark19">
  24207. <summary>
  24208. </summary>
  24209. </member>
  24210. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark20">
  24211. <summary>
  24212. </summary>
  24213. </member>
  24214. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark21">
  24215. <summary>
  24216. </summary>
  24217. </member>
  24218. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark22">
  24219. <summary>
  24220. </summary>
  24221. </member>
  24222. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark23">
  24223. <summary>
  24224. </summary>
  24225. </member>
  24226. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark24">
  24227. <summary>
  24228. </summary>
  24229. </member>
  24230. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark25">
  24231. <summary>
  24232. </summary>
  24233. </member>
  24234. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark26">
  24235. <summary>
  24236. </summary>
  24237. </member>
  24238. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark27">
  24239. <summary>
  24240. </summary>
  24241. </member>
  24242. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.PivotTableStyleDark28">
  24243. <summary>
  24244. </summary>
  24245. </member>
  24246. <member name="F:Aspose.Cells.Pivot.PivotTableStyleType.Custom">
  24247. <summary>
  24248. </summary>
  24249. </member>
  24250. <member name="T:Aspose.Cells.Pivot.SxRng">
  24251. <summary>
  24252. Represents Group Range in a PivotField.
  24253. </summary>
  24254. </member>
  24255. <member name="P:Aspose.Cells.Pivot.SxRng.IsAutoStart">
  24256. <summary>
  24257. Specifies a boolean value that indicates whether the application will use the source data to set the beginning range value.
  24258. </summary>
  24259. </member>
  24260. <member name="P:Aspose.Cells.Pivot.SxRng.IsAutoEnd">
  24261. <summary>
  24262. Specifies a boolean value that indicates whether the application will use the source data to set the end range value.
  24263. </summary>
  24264. </member>
  24265. <member name="P:Aspose.Cells.Pivot.SxRng.Start">
  24266. <summary>
  24267. Represents the start object for the group range.
  24268. </summary>
  24269. </member>
  24270. <member name="P:Aspose.Cells.Pivot.SxRng.End">
  24271. <summary>
  24272. Represents the end object for the group range.
  24273. </summary>
  24274. </member>
  24275. <member name="P:Aspose.Cells.Pivot.SxRng.By">
  24276. <summary>
  24277. Represents the interval object for the group range.
  24278. </summary>
  24279. </member>
  24280. <member name="P:Aspose.Cells.Pivot.SxRng.GroupByTypes">
  24281. <summary>
  24282. Represents the group type for the group range.
  24283. rangeofvalue Seconds Minutes Hours Days Months Quarters Years
  24284. </summary>
  24285. </member>
  24286. <member name="T:Aspose.Cells.ColorScale">
  24287. <summary>
  24288. Describe the ColorScale conditional formatting rule.
  24289. This conditional formatting rule creates a gradated color scale on the cells.
  24290. </summary>
  24291. </member>
  24292. <member name="P:Aspose.Cells.ColorScale.Is3ColorScale">
  24293. <summary>
  24294. Indicates whether conditional formatting is 3 color scale.
  24295. </summary>
  24296. </member>
  24297. <member name="P:Aspose.Cells.ColorScale.MinCfvo">
  24298. <summary>
  24299. Get or set this ColorScale's min value object.
  24300. Cannot set null or CFValueObject with type FormatConditionValueType.Max to it.
  24301. </summary>
  24302. </member>
  24303. <member name="P:Aspose.Cells.ColorScale.MidCfvo">
  24304. <summary>
  24305. Get or set this ColorScale's mid value object.
  24306. Cannot set CFValueObject with type FormatConditionValueType.Max or FormatConditionValueType.Min to it.
  24307. </summary>
  24308. </member>
  24309. <member name="P:Aspose.Cells.ColorScale.MaxCfvo">
  24310. <summary>
  24311. Get or set this ColorScale's max value object.
  24312. Cannot set null or CFValueObject with type FormatConditionValueType.Min to it.
  24313. </summary>
  24314. </member>
  24315. <member name="P:Aspose.Cells.ColorScale.MinColor">
  24316. <summary>
  24317. Get or set the min value object's corresponding color.
  24318. </summary>
  24319. </member>
  24320. <member name="P:Aspose.Cells.ColorScale.MidColor">
  24321. <summary>
  24322. Get or set the mid value object's corresponding color.
  24323. </summary>
  24324. </member>
  24325. <member name="P:Aspose.Cells.ColorScale.MaxColor">
  24326. <summary>
  24327. Get or set the max value object's corresponding color.
  24328. </summary>
  24329. </member>
  24330. <member name="T:Aspose.Cells.ConditionalFormattingValue">
  24331. <summary>
  24332. Describes the values of the interpolation points in a gradient scale, dataBar or iconSet.
  24333. </summary>
  24334. </member>
  24335. <member name="P:Aspose.Cells.ConditionalFormattingValue.Value">
  24336. <summary>
  24337. Get or set the value of this conditional formatting value object.
  24338. It should be used in conjunction with Type.
  24339. </summary>
  24340. <remarks>
  24341. If the value is string and start with "=", it will be processed as a formula,
  24342. otherwise we will process it as a simple value.
  24343. </remarks>
  24344. </member>
  24345. <member name="P:Aspose.Cells.ConditionalFormattingValue.Type">
  24346. <summary>
  24347. Get or set the type of this conditional formatting value object.
  24348. Setting the type to FormatConditionValueType.Min or FormatConditionValueType.Max
  24349. will auto set "Value" to null.
  24350. </summary>
  24351. </member>
  24352. <member name="P:Aspose.Cells.ConditionalFormattingValue.IsGTE">
  24353. <summary>
  24354. Get or set the Greater Than Or Equal flag.
  24355. Use only for icon sets, determines whether this threshold value uses
  24356. the greater than or equal to operator.
  24357. 'false' indicates 'greater than' is used instead of 'greater than or equal to'.
  24358. Default value is true.
  24359. </summary>
  24360. </member>
  24361. <member name="T:Aspose.Cells.DataBar">
  24362. <summary>
  24363. Describe the DataBar conditional formatting rule.
  24364. This conditional formatting rule displays a gradated
  24365. data bar in the range of cells.
  24366. </summary>
  24367. <example>
  24368. <code>
  24369. [C#]
  24370. //Instantiating a Workbook object
  24371. Workbook workbook = new Workbook();
  24372. Worksheet sheet = workbook.Worksheets[0];
  24373. //Adds an empty conditional formatting
  24374. int index = sheet.ConditionalFormattings.Add();
  24375. FormatConditions fcs = sheet.ConditionalFormattings[index];
  24376. //Sets the conditional format range.
  24377. CellArea ca = new CellArea();
  24378. ca.StartRow = 0;
  24379. ca.EndRow = 2;
  24380. ca.StartColumn = 0;
  24381. ca.EndColumn = 0;
  24382. fcs.AddArea(ca);
  24383. //Adds condition.
  24384. int idx = fcs.AddCondtion(FormatConditionType.DataBar);
  24385. fcs.AddArea(ca);
  24386. FormatCondition cond = fcs[idx];
  24387. //Get Databar
  24388. DataBar dataBar = cond.DataBar;
  24389. dataBar.Color = Color.Orange;
  24390. //Set Databar properties
  24391. dataBar.MinCfvo.Type = FormatConditionValueType.Percentile;
  24392. dataBar.MinCfvo.Value = 30;
  24393. dataBar.ShowValue = false;
  24394. dataBar.BarBorder.Type = DataBarBorderType.DataBarBorderSolid;
  24395. dataBar.BarBorder.Color = Color.Plum;
  24396. dataBar.BarFillType = DataBarFillType.DataBarFillSolid;
  24397. dataBar.AxisColor = Color.Red;
  24398. dataBar.AxisPosition = DataBarAxisPosition.DataBarAxisMidpoint;
  24399. dataBar.NegativeBarFormat.ColorType = DataBarNegativeColorType.DataBarColor;
  24400. dataBar.NegativeBarFormat.Color = Color.White;
  24401. dataBar.NegativeBarFormat.BorderColorType = DataBarNegativeColorType.DataBarColor;
  24402. dataBar.NegativeBarFormat.BorderColor = Color.Yellow;
  24403. //Put Cell Values
  24404. Aspose.Cells.Cell cell1 = sheet.Cells["A1"];
  24405. cell1.PutValue(10);
  24406. Aspose.Cells.Cell cell2 = sheet.Cells["A2"];
  24407. cell2.PutValue(120);
  24408. Aspose.Cells.Cell cell3 = sheet.Cells["A3"];
  24409. cell3.PutValue(260);
  24410. //Saving the Excel file
  24411. workbook.Save("D:\\book1.xlsx");
  24412. [VB.NET]
  24413. 'Instantiating a Workbook object
  24414. Dim workbook As New Workbook()
  24415. Dim sheet As Worksheet = workbook.Worksheets(0)
  24416. 'Adds an empty conditional formatting
  24417. Dim index As Integer = sheet.ConditionalFormattings.Add()
  24418. Dim fcs As FormatConditions = sheet.ConditionalFormattings(index)
  24419. 'Sets the conditional format range.
  24420. Dim ca As New CellArea()
  24421. ca.StartRow = 0
  24422. ca.EndRow = 2
  24423. ca.StartColumn = 0
  24424. ca.EndColumn = 0
  24425. fcs.AddArea(ca)
  24426. 'Adds condition.
  24427. Dim idx As Integer = fcs.AddCondtion(FormatConditionType.DataBar)
  24428. fcs.AddArea(ca)
  24429. Dim cond As FormatCondition = fcs(idx)
  24430. 'Get Databar
  24431. Dim dataBar As DataBar = cond.DataBar
  24432. dataBar.Color = Color.Orange
  24433. 'Set Databar properties
  24434. dataBar.MinCfvo.Type = FormatConditionValueType.Percentile
  24435. dataBar.MinCfvo.Value = 30
  24436. dataBar.ShowValue = False
  24437. dataBar.BarBorder.Type = DataBarBorderType.DataBarBorderSolid
  24438. dataBar.BarBorder.Color = Color.Plum
  24439. dataBar.BarFillType = DataBarFillType.DataBarFillSolid
  24440. dataBar.AxisColor = Color.Red
  24441. dataBar.AxisPosition = DataBarAxisPosition.DataBarAxisMidpoint
  24442. dataBar.NegativeBarFormat.ColorType = DataBarNegativeColorType.DataBarColor
  24443. dataBar.NegativeBarFormat.Color = Color.White
  24444. dataBar.NegativeBarFormat.BorderColorType = DataBarNegativeColorType.DataBarColor
  24445. dataBar.NegativeBarFormat.BorderColor = Color.Yellow
  24446. 'Put Cell Values
  24447. Dim cell1 As Aspose.Cells.Cell = sheet.Cells("A1")
  24448. cell1.PutValue(10)
  24449. Dim cell2 As Aspose.Cells.Cell = sheet.Cells("A2")
  24450. cell2.PutValue(120)
  24451. Dim cell3 As Aspose.Cells.Cell = sheet.Cells("A3")
  24452. cell3.PutValue(260)
  24453. 'Saving the Excel file
  24454. workbook.Save("D:\book1.xlsx")
  24455. </code>
  24456. </example>
  24457. </member>
  24458. <member name="M:Aspose.Cells.DataBar.ToImage(Aspose.Cells.Cell,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  24459. <summary>
  24460. Render data bar in cell to image byte array.
  24461. </summary>
  24462. <param name="cell">Indicate the data bar in which cell to be rendered</param>
  24463. <param name="imgOpts">ImageOrPrintOptions contains some property of output image</param>
  24464. <returns>
  24465. </returns>
  24466. </member>
  24467. <member name="P:Aspose.Cells.DataBar.AxisColor">
  24468. <summary>
  24469. Gets the color of the axis for cells with conditional formatting as data bars.
  24470. </summary>
  24471. </member>
  24472. <member name="P:Aspose.Cells.DataBar.AxisPosition">
  24473. <summary>
  24474. Gets or sets the position of the axis of the data bars specified by a conditional formatting rule.
  24475. </summary>
  24476. </member>
  24477. <member name="P:Aspose.Cells.DataBar.BarFillType">
  24478. <summary>
  24479. Gets or sets how a data bar is filled with color.
  24480. </summary>
  24481. </member>
  24482. <member name="P:Aspose.Cells.DataBar.Direction">
  24483. <summary>
  24484. Gets or sets the direction the databar is displayed.
  24485. </summary>
  24486. </member>
  24487. <member name="P:Aspose.Cells.DataBar.BarBorder">
  24488. <summary>
  24489. Gets an object that specifies the border of a data bar.
  24490. </summary>
  24491. </member>
  24492. <member name="P:Aspose.Cells.DataBar.NegativeBarFormat">
  24493. <summary>
  24494. Gets the NegativeBarFormat object associated with a data bar conditional formatting rule.
  24495. </summary>
  24496. </member>
  24497. <member name="P:Aspose.Cells.DataBar.MinCfvo">
  24498. <summary>
  24499. Get or set this DataBar's min value object.
  24500. Cannot set null or CFValueObject with type FormatConditionValueType.Max to it.
  24501. </summary>
  24502. </member>
  24503. <member name="P:Aspose.Cells.DataBar.MaxCfvo">
  24504. <summary>
  24505. Get or set this DataBar's max value object.
  24506. Cannot set null or CFValueObject with type FormatConditionValueType.Min to it.
  24507. </summary>
  24508. </member>
  24509. <member name="P:Aspose.Cells.DataBar.Color">
  24510. <summary>
  24511. Get or set this DataBar's Color.
  24512. </summary>
  24513. </member>
  24514. <member name="P:Aspose.Cells.DataBar.MinLength">
  24515. <summary>
  24516. Represents the min length of data bar .
  24517. </summary>
  24518. </member>
  24519. <member name="P:Aspose.Cells.DataBar.MaxLength">
  24520. <summary>
  24521. Represents the max length of data bar .
  24522. </summary>
  24523. </member>
  24524. <member name="P:Aspose.Cells.DataBar.ShowValue">
  24525. <summary>
  24526. Get or set the flag indicating whether to show the values of the cells on which this data bar is applied.
  24527. Default value is true.
  24528. </summary>
  24529. </member>
  24530. <member name="T:Aspose.Cells.IconSet">
  24531. <summary>
  24532. Describe the IconSet conditional formatting rule.
  24533. This conditional formatting rule applies icons to cells
  24534. according to their values.
  24535. </summary>
  24536. <example>
  24537. <code>
  24538. [C#]
  24539. //Instantiating a Workbook object
  24540. Workbook workbook = new Workbook();
  24541. Worksheet sheet = workbook.Worksheets[0];
  24542. //Adds an empty conditional formatting
  24543. int index = sheet.ConditionalFormattings.Add();
  24544. FormatConditions fcs = sheet.ConditionalFormattings[index];
  24545. //Sets the conditional format range.
  24546. CellArea ca = new CellArea();
  24547. ca.StartRow = 0;
  24548. ca.EndRow = 2;
  24549. ca.StartColumn = 0;
  24550. ca.EndColumn = 0;
  24551. fcs.AddArea(ca);
  24552. //Adds condition.
  24553. int idx = fcs.AddCondtion(FormatConditionType.IconSet);
  24554. fcs.AddArea(ca);
  24555. FormatCondition cond = fcs[idx];
  24556. //Get Icon Set
  24557. IconSet iconSet = cond.IconSet;
  24558. //Set Icon Type
  24559. iconSet.Type = IconSetType.Arrows3;
  24560. //Put Cell Values
  24561. Aspose.Cells.Cell cell1 = sheet.Cells["A1"];
  24562. cell1.PutValue(10);
  24563. Aspose.Cells.Cell cell2 = sheet.Cells["A2"];
  24564. cell2.PutValue(120);
  24565. Aspose.Cells.Cell cell3 = sheet.Cells["A3"];
  24566. cell3.PutValue(260);
  24567. //Saving the Excel file
  24568. workbook.Save("D:\\book1.xlsx");
  24569. [VB.NET]
  24570. 'Instantiating a Workbook object
  24571. Dim workbook As New Workbook()
  24572. Dim sheet As Worksheet = workbook.Worksheets(0)
  24573. 'Adds an empty conditional formatting
  24574. Dim index As Integer = sheet.ConditionalFormattings.Add()
  24575. Dim fcs As FormatConditions = sheet.ConditionalFormattings(index)
  24576. 'Sets the conditional format range.
  24577. Dim ca As New CellArea()
  24578. ca.StartRow = 0
  24579. ca.EndRow = 2
  24580. ca.StartColumn = 0
  24581. ca.EndColumn = 0
  24582. fcs.AddArea(ca)
  24583. 'Adds condition.
  24584. Dim idx As Integer = fcs.AddCondtion(FormatConditionType.IconSet)
  24585. fcs.AddArea(ca)
  24586. Dim cond As FormatCondition = fcs(idx)
  24587. 'Get Icon Set
  24588. Dim iconSet As IconSet = cond.IconSet
  24589. 'Set Icon Type
  24590. iconSet.Type = IconSetType.Arrows3
  24591. 'Put Cell Values
  24592. Dim cell1 As Aspose.Cells.Cell = sheet.Cells("A1")
  24593. cell1.PutValue(10)
  24594. Dim cell2 As Aspose.Cells.Cell = sheet.Cells("A2")
  24595. cell2.PutValue(120)
  24596. Dim cell3 As Aspose.Cells.Cell = sheet.Cells("A3")
  24597. cell3.PutValue(260)
  24598. 'Saving the Excel file
  24599. workbook.Save("D:\book1.xlsx")
  24600. </code>
  24601. </example>
  24602. </member>
  24603. <member name="P:Aspose.Cells.IconSet.CfIcons">
  24604. <summary>
  24605. Get the<see cref="T:Aspose.Cells.ConditionalFormattingIcon" /> from the collection
  24606. </summary>
  24607. </member>
  24608. <member name="P:Aspose.Cells.IconSet.Cfvos">
  24609. <summary>
  24610. Get the CFValueObjects instance.
  24611. </summary>
  24612. </member>
  24613. <member name="P:Aspose.Cells.IconSet.Type">
  24614. <summary>
  24615. Get or Set the icon set type to display.
  24616. Setting the type will auto check if the current Cfvos's count is
  24617. accord with the new type. If not accord, old Cfvos will be cleaned and
  24618. default Cfvos will be added.
  24619. </summary>
  24620. </member>
  24621. <member name="P:Aspose.Cells.IconSet.IsCustom">
  24622. <summary>
  24623. Indicates whether the icon set is custom.
  24624. Default value is false.
  24625. </summary>
  24626. </member>
  24627. <member name="P:Aspose.Cells.IconSet.ShowValue">
  24628. <summary>
  24629. Get or set the flag indicating whether to show the values of the cells on which this icon set is applied.
  24630. Default value is true.
  24631. </summary>
  24632. </member>
  24633. <member name="P:Aspose.Cells.IconSet.Reverse">
  24634. <summary>
  24635. Get or set the flag indicating whether to reverses the default order of the icons in this icon set.
  24636. Default value is false.
  24637. </summary>
  24638. </member>
  24639. <member name="T:Aspose.Cells.ProtectedRange">
  24640. <summary>
  24641. A specified range to be allowed to edit when the sheet protection is ON.
  24642. </summary>
  24643. </member>
  24644. <member name="M:Aspose.Cells.ProtectedRange.GetAreas">
  24645. <summary>
  24646. Gets all referred areas.
  24647. </summary>
  24648. <returns>Returns all referred areas.</returns>
  24649. </member>
  24650. <member name="M:Aspose.Cells.ProtectedRange.AddArea(System.Int32,System.Int32,System.Int32,System.Int32)">
  24651. <summary>
  24652. Adds a referred area to this
  24653. </summary>
  24654. <param name="startRow">The start row.</param>
  24655. <param name="startColumn">The start column.</param>
  24656. <param name="endRow">The end row.</param>
  24657. <param name="endColumn">The end column.</param>
  24658. </member>
  24659. <member name="P:Aspose.Cells.ProtectedRange.Name">
  24660. <summary>
  24661. Gets the Range title. This is used as a descriptor, not as a named range definition.
  24662. </summary>
  24663. </member>
  24664. <member name="P:Aspose.Cells.ProtectedRange.CellArea">
  24665. <summary>
  24666. Gets the <see cref="P:Aspose.Cells.ProtectedRange.CellArea" /> object represents the cell area to be protected.
  24667. </summary>
  24668. </member>
  24669. <member name="P:Aspose.Cells.ProtectedRange.Password">
  24670. <summary>
  24671. Represents the password to protect the range.
  24672. </summary>
  24673. </member>
  24674. <member name="P:Aspose.Cells.ProtectedRange.SecurityDescriptor">
  24675. <summary>
  24676. The security descriptor defines user accounts who may edit this range without providing a password to access the range.
  24677. </summary>
  24678. </member>
  24679. <member name="T:Aspose.Cells.ProtectedRangeCollection">
  24680. <summary>
  24681. Encapsulates a collection of <see cref="T:Aspose.Cells.ProtectedRange" /> objects.
  24682. </summary>
  24683. </member>
  24684. <member name="M:Aspose.Cells.ProtectedRangeCollection.Add(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
  24685. <summary>
  24686. Adds a <see cref="T:Aspose.Cells.ProtectedRange" /> item to the collection.
  24687. </summary>
  24688. <param name="name">Range title. This is used as a descriptor, not as a named range definition.</param>
  24689. <param name="startRow">Start row index of the range.</param>
  24690. <param name="startColumn">Start column index of the range.</param>
  24691. <param name="endRow">End row index of the range.</param>
  24692. <param name="endColumn">End column index of the range.</param>
  24693. <returns>object index.</returns>
  24694. </member>
  24695. <member name="P:Aspose.Cells.ProtectedRangeCollection.Item(System.Int32)">
  24696. <summary>
  24697. Gets the <see cref="T:Aspose.Cells.ProtectedRange" /> element at the specified index.
  24698. </summary>
  24699. <param name="index">The zero based index of the element.</param>
  24700. <returns>The element at the specified index.</returns>
  24701. </member>
  24702. <member name="T:Aspose.Cells.ColorFilter">
  24703. <summary>
  24704. Represents the color filter.
  24705. </summary>
  24706. </member>
  24707. <member name="M:Aspose.Cells.ColorFilter.GetColor(Aspose.Cells.WorksheetCollection)">
  24708. <summary>
  24709. </summary>
  24710. <param name="sheets">
  24711. </param>
  24712. <returns>
  24713. </returns>
  24714. </member>
  24715. <member name="P:Aspose.Cells.ColorFilter.FilterByFillColor">
  24716. <summary>
  24717. Flag indicating whether or not to filter by the cell's fill color.
  24718. </summary>
  24719. </member>
  24720. <member name="T:Aspose.Cells.CustomFilter">
  24721. <summary>
  24722. Represents the custom filter.
  24723. </summary>
  24724. </member>
  24725. <member name="M:Aspose.Cells.CustomFilter.SetCriteria(Aspose.Cells.FilterOperatorType,System.Object)">
  24726. <summary>
  24727. Sets the filter criteria.
  24728. </summary>
  24729. <param name="filterOperator">filter operator type</param>
  24730. <param name="criteria">filter criteria value</param>
  24731. </member>
  24732. <member name="P:Aspose.Cells.CustomFilter.FilterOperatorType">
  24733. <summary>
  24734. Gets and sets the filter operator type.
  24735. </summary>
  24736. </member>
  24737. <member name="P:Aspose.Cells.CustomFilter.Criteria">
  24738. <summary>
  24739. Gets and sets the criteria.
  24740. </summary>
  24741. </member>
  24742. <member name="T:Aspose.Cells.CustomFilterCollection">
  24743. <summary>
  24744. Represents the custom filters.
  24745. </summary>
  24746. </member>
  24747. <member name="P:Aspose.Cells.CustomFilterCollection.And">
  24748. <summary>
  24749. Indicates whether the two criteria have an "and" relationship.
  24750. </summary>
  24751. </member>
  24752. <member name="P:Aspose.Cells.CustomFilterCollection.Item(System.Int32)">
  24753. <summary>
  24754. Gets the custom filter in the specific index.
  24755. </summary>
  24756. <param name="index">The index.</param>
  24757. <returns>
  24758. </returns>
  24759. </member>
  24760. <member name="T:Aspose.Cells.DateTimeGroupItem">
  24761. <summary>
  24762. Represents the datetime's group setting.
  24763. </summary>
  24764. </member>
  24765. <member name="M:Aspose.Cells.DateTimeGroupItem.#ctor(Aspose.Cells.DateTimeGroupingType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  24766. <summary>
  24767. </summary>
  24768. <param name="type">
  24769. </param>
  24770. <param name="year">
  24771. </param>
  24772. <param name="month">
  24773. </param>
  24774. <param name="day">
  24775. </param>
  24776. <param name="hour">
  24777. </param>
  24778. <param name="minute">
  24779. </param>
  24780. <param name="second">
  24781. </param>
  24782. </member>
  24783. <member name="P:Aspose.Cells.DateTimeGroupItem.MinValue">
  24784. <summary>
  24785. Gets the min value.
  24786. </summary>
  24787. </member>
  24788. <member name="P:Aspose.Cells.DateTimeGroupItem.DateTimeGroupingType">
  24789. <summary>
  24790. Gets and sets the group type.
  24791. </summary>
  24792. </member>
  24793. <member name="P:Aspose.Cells.DateTimeGroupItem.Year">
  24794. <summary>
  24795. Gets and sets the year of the grouped date time.
  24796. </summary>
  24797. </member>
  24798. <member name="P:Aspose.Cells.DateTimeGroupItem.Month">
  24799. <summary>
  24800. Gets and sets the month of the grouped date time.
  24801. </summary>
  24802. </member>
  24803. <member name="P:Aspose.Cells.DateTimeGroupItem.Day">
  24804. <summary>
  24805. Gets and sets the day of the grouped date time.
  24806. </summary>
  24807. </member>
  24808. <member name="P:Aspose.Cells.DateTimeGroupItem.Hour">
  24809. <summary>
  24810. Gets and sets the hour of the grouped date time.
  24811. </summary>
  24812. </member>
  24813. <member name="P:Aspose.Cells.DateTimeGroupItem.Minute">
  24814. <summary>
  24815. Gets and sets the minute of the grouped date time.
  24816. </summary>
  24817. </member>
  24818. <member name="P:Aspose.Cells.DateTimeGroupItem.Second">
  24819. <summary>
  24820. Gets and sets the second of the grouped date time.
  24821. </summary>
  24822. </member>
  24823. <member name="T:Aspose.Cells.DateTimeGroupingType">
  24824. <summary>
  24825. Specifies how to group dateTime values.
  24826. </summary>
  24827. </member>
  24828. <member name="F:Aspose.Cells.DateTimeGroupingType.Day">
  24829. <summary>
  24830. Group by day.
  24831. </summary>
  24832. </member>
  24833. <member name="F:Aspose.Cells.DateTimeGroupingType.Hour">
  24834. <summary>
  24835. Group by hour.
  24836. </summary>
  24837. </member>
  24838. <member name="F:Aspose.Cells.DateTimeGroupingType.Minute">
  24839. <summary>
  24840. Group by Minute.
  24841. </summary>
  24842. </member>
  24843. <member name="F:Aspose.Cells.DateTimeGroupingType.Month">
  24844. <summary>
  24845. Group by Month.
  24846. </summary>
  24847. </member>
  24848. <member name="F:Aspose.Cells.DateTimeGroupingType.Second">
  24849. <summary>
  24850. Group by Second.
  24851. </summary>
  24852. </member>
  24853. <member name="F:Aspose.Cells.DateTimeGroupingType.Year">
  24854. <summary>
  24855. Group by Year.
  24856. </summary>
  24857. </member>
  24858. <member name="T:Aspose.Cells.DynamicFilter">
  24859. <summary>
  24860. Represents the dynamic filter.
  24861. </summary>
  24862. </member>
  24863. <member name="P:Aspose.Cells.DynamicFilter.DynamicFilterType">
  24864. <summary>
  24865. Gets and sets the dynamic filter type.
  24866. </summary>
  24867. </member>
  24868. <member name="P:Aspose.Cells.DynamicFilter.Value">
  24869. <summary>
  24870. Gets and sets the dynamic filter value.
  24871. </summary>
  24872. </member>
  24873. <member name="P:Aspose.Cells.DynamicFilter.MaxValue">
  24874. <summary>
  24875. Gets and sets the dynamic filter max value.
  24876. </summary>
  24877. </member>
  24878. <member name="T:Aspose.Cells.DynamicFilterType">
  24879. <summary>
  24880. Dynamic filter type.
  24881. </summary>
  24882. </member>
  24883. <member name="F:Aspose.Cells.DynamicFilterType.AboveAverage">
  24884. <summary>
  24885. Shows values that are above average.
  24886. </summary>
  24887. </member>
  24888. <member name="F:Aspose.Cells.DynamicFilterType.BelowAverage">
  24889. <summary>
  24890. Shows values that are below average.
  24891. </summary>
  24892. </member>
  24893. <member name="F:Aspose.Cells.DynamicFilterType.LastMonth">
  24894. <summary>
  24895. Shows last month's dates.
  24896. </summary>
  24897. </member>
  24898. <member name="F:Aspose.Cells.DynamicFilterType.LastQuarter">
  24899. <summary>
  24900. Shows last quarter's dates.
  24901. </summary>
  24902. </member>
  24903. <member name="F:Aspose.Cells.DynamicFilterType.LastWeek">
  24904. <summary>
  24905. Shows last week's dates.
  24906. </summary>
  24907. </member>
  24908. <member name="F:Aspose.Cells.DynamicFilterType.LastYear">
  24909. <summary>
  24910. Shows last year's dates.
  24911. </summary>
  24912. </member>
  24913. <member name="F:Aspose.Cells.DynamicFilterType.January">
  24914. <summary>
  24915. Shows the dates that are in January, regardless of year.
  24916. </summary>
  24917. </member>
  24918. <member name="F:Aspose.Cells.DynamicFilterType.October">
  24919. <summary>
  24920. Shows the dates that are in October, regardless of year.
  24921. </summary>
  24922. </member>
  24923. <member name="F:Aspose.Cells.DynamicFilterType.November">
  24924. <summary>
  24925. Shows the dates that are in November, regardless of year.
  24926. </summary>
  24927. </member>
  24928. <member name="F:Aspose.Cells.DynamicFilterType.December">
  24929. <summary>
  24930. Shows the dates that are in December, regardless of year.
  24931. </summary>
  24932. </member>
  24933. <member name="F:Aspose.Cells.DynamicFilterType.Februray">
  24934. <summary>
  24935. Shows the dates that are in February, regardless of year.
  24936. </summary>
  24937. <remarks>
  24938. NOTE: This member is now obsolete. Instead,
  24939. please use DynamicFilterType.February property.
  24940. This property will be removed 12 months later since September 2020.
  24941. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  24942. </member>
  24943. <member name="F:Aspose.Cells.DynamicFilterType.February">
  24944. <summary>
  24945. Shows the dates that are in February, regardless of year.
  24946. </summary>
  24947. </member>
  24948. <member name="F:Aspose.Cells.DynamicFilterType.March">
  24949. <summary>
  24950. Shows the dates that are in March, regardless of year.
  24951. </summary>
  24952. </member>
  24953. <member name="F:Aspose.Cells.DynamicFilterType.April">
  24954. <summary>
  24955. Shows the dates that are in April, regardless of year.
  24956. </summary>
  24957. </member>
  24958. <member name="F:Aspose.Cells.DynamicFilterType.May">
  24959. <summary>
  24960. Shows the dates that are in May, regardless of year.
  24961. </summary>
  24962. </member>
  24963. <member name="F:Aspose.Cells.DynamicFilterType.June">
  24964. <summary>
  24965. Shows the dates that are in June, regardless of year.
  24966. </summary>
  24967. </member>
  24968. <member name="F:Aspose.Cells.DynamicFilterType.July">
  24969. <summary>
  24970. Shows the dates that are in July, regardless of year.
  24971. </summary>
  24972. </member>
  24973. <member name="F:Aspose.Cells.DynamicFilterType.August">
  24974. <summary>
  24975. Shows the dates that are in August, regardless of year.
  24976. </summary>
  24977. </member>
  24978. <member name="F:Aspose.Cells.DynamicFilterType.September">
  24979. <summary>
  24980. Shows the dates that are in September, regardless of year.
  24981. </summary>
  24982. </member>
  24983. <member name="F:Aspose.Cells.DynamicFilterType.NextMonth">
  24984. <summary>
  24985. Shows next month's dates.
  24986. </summary>
  24987. </member>
  24988. <member name="F:Aspose.Cells.DynamicFilterType.NextQuarter">
  24989. <summary>
  24990. Shows next quarter's dates.
  24991. </summary>
  24992. </member>
  24993. <member name="F:Aspose.Cells.DynamicFilterType.NextWeek">
  24994. <summary>
  24995. Shows next week's dates.
  24996. </summary>
  24997. </member>
  24998. <member name="F:Aspose.Cells.DynamicFilterType.NextYear">
  24999. <summary>
  25000. Shows next year's dates.
  25001. </summary>
  25002. </member>
  25003. <member name="F:Aspose.Cells.DynamicFilterType.None">
  25004. <summary>
  25005. </summary>
  25006. </member>
  25007. <member name="F:Aspose.Cells.DynamicFilterType.Quarter1">
  25008. <summary>
  25009. Shows the dates that are in the 1st quarter, regardless of year.
  25010. </summary>
  25011. </member>
  25012. <member name="F:Aspose.Cells.DynamicFilterType.Quarter2">
  25013. <summary>
  25014. Shows the dates that are in the 2nd quarter, regardless of year.
  25015. </summary>
  25016. </member>
  25017. <member name="F:Aspose.Cells.DynamicFilterType.Quarter3">
  25018. <summary>
  25019. Shows the dates that are in the 3rd quarter, regardless of year.
  25020. </summary>
  25021. </member>
  25022. <member name="F:Aspose.Cells.DynamicFilterType.Quarter4">
  25023. <summary>
  25024. Shows the dates that are in the 4th quarter, regardless of year.
  25025. </summary>
  25026. </member>
  25027. <member name="F:Aspose.Cells.DynamicFilterType.ThisMonth">
  25028. <summary>
  25029. Shows this month's dates.
  25030. </summary>
  25031. </member>
  25032. <member name="F:Aspose.Cells.DynamicFilterType.ThisQuarter">
  25033. <summary>
  25034. Shows this quarter's dates.
  25035. </summary>
  25036. </member>
  25037. <member name="F:Aspose.Cells.DynamicFilterType.ThisWeek">
  25038. <summary>
  25039. Shows this week's dates.
  25040. </summary>
  25041. </member>
  25042. <member name="F:Aspose.Cells.DynamicFilterType.ThisYear">
  25043. <summary>
  25044. Shows this year's dates.
  25045. </summary>
  25046. </member>
  25047. <member name="F:Aspose.Cells.DynamicFilterType.Today">
  25048. <summary>
  25049. Shows today's dates.
  25050. </summary>
  25051. </member>
  25052. <member name="F:Aspose.Cells.DynamicFilterType.Tomorrow">
  25053. <summary>
  25054. Shows tomorrow's dates.
  25055. </summary>
  25056. </member>
  25057. <member name="F:Aspose.Cells.DynamicFilterType.YearToDate">
  25058. <summary>
  25059. Shows the dates between the beginning of the year and today, inclusive.
  25060. </summary>
  25061. </member>
  25062. <member name="F:Aspose.Cells.DynamicFilterType.Yesterday">
  25063. <summary>
  25064. Shows yesterday's dates.
  25065. </summary>
  25066. </member>
  25067. <member name="T:Aspose.Cells.MultipleFilterCollection">
  25068. <summary>
  25069. Represents the multiple filter collection.
  25070. </summary>
  25071. </member>
  25072. <member name="P:Aspose.Cells.MultipleFilterCollection.MatchBlank">
  25073. <summary>
  25074. Indicates whether to filter by blank.
  25075. </summary>
  25076. </member>
  25077. <member name="P:Aspose.Cells.MultipleFilterCollection.Item(System.Int32)">
  25078. <summary>
  25079. DateTimeGroupItem or a simple object.
  25080. </summary>
  25081. <param name="index">
  25082. </param>
  25083. <returns>
  25084. </returns>
  25085. </member>
  25086. <member name="T:Aspose.Cells.FilterType">
  25087. <summary>
  25088. The filter type.
  25089. </summary>
  25090. </member>
  25091. <member name="F:Aspose.Cells.FilterType.ColorFilter">
  25092. <summary>
  25093. </summary>
  25094. </member>
  25095. <member name="F:Aspose.Cells.FilterType.CustomFilters">
  25096. <summary>
  25097. </summary>
  25098. </member>
  25099. <member name="F:Aspose.Cells.FilterType.DynamicFilter">
  25100. <summary>
  25101. </summary>
  25102. </member>
  25103. <member name="F:Aspose.Cells.FilterType.MultipleFilters">
  25104. <summary>
  25105. When multiple values are chosen to filter by, or when a group of date values are chosen to filter by,
  25106. this element groups those criteria together.
  25107. </summary>
  25108. </member>
  25109. <member name="F:Aspose.Cells.FilterType.IconFilter">
  25110. <summary>
  25111. </summary>
  25112. </member>
  25113. <member name="F:Aspose.Cells.FilterType.Top10">
  25114. <summary>
  25115. </summary>
  25116. </member>
  25117. <member name="F:Aspose.Cells.FilterType.None">
  25118. <summary>
  25119. </summary>
  25120. </member>
  25121. <member name="T:Aspose.Cells.IconFilter">
  25122. <summary>
  25123. Represents icon filter.
  25124. </summary>
  25125. </member>
  25126. <member name="P:Aspose.Cells.IconFilter.IconSetType">
  25127. <summary>
  25128. Gets and sets which icon set is used in the filter criteria.
  25129. </summary>
  25130. </member>
  25131. <member name="P:Aspose.Cells.IconFilter.IconId">
  25132. <summary>
  25133. Gets and sets Zero-based index of an icon in an icon set.
  25134. </summary>
  25135. </member>
  25136. <member name="T:Aspose.Cells.Top10Filter">
  25137. <summary>
  25138. Represents the top 10 filter.
  25139. </summary>
  25140. </member>
  25141. <member name="P:Aspose.Cells.Top10Filter.IsTop">
  25142. <summary>
  25143. Indicates whether it's top filter.
  25144. </summary>
  25145. </member>
  25146. <member name="P:Aspose.Cells.Top10Filter.IsPercent">
  25147. <summary>
  25148. Indicates whether the items is percent.
  25149. </summary>
  25150. </member>
  25151. <member name="P:Aspose.Cells.Top10Filter.Items">
  25152. <summary>
  25153. Gets and sets the items of the filter.
  25154. </summary>
  25155. </member>
  25156. <member name="P:Aspose.Cells.Top10Filter.Criteria">
  25157. <summary>
  25158. </summary>
  25159. </member>
  25160. <member name="T:Aspose.Cells.AutoFitterOptions">
  25161. <summary>
  25162. Represents all auto fitter options.
  25163. </summary>
  25164. </member>
  25165. <member name="P:Aspose.Cells.AutoFitterOptions.AutoFitMergedCells">
  25166. <summary>
  25167. Indicates whether auto fit row height when the cells is merged in a row.
  25168. The default value is false.
  25169. </summary>
  25170. <remarks>NOTE: This member is now obsolete. Instead,
  25171. please use AutoFitterOptions.AutoFitMergedCellsType property, instead.
  25172. This property will be removed 12 months later since December 2018.
  25173. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  25174. </member>
  25175. <member name="P:Aspose.Cells.AutoFitterOptions.AutoFitMergedCellsType">
  25176. <summary>
  25177. Gets and set the type of auto fitting row height.
  25178. </summary>
  25179. <remarks>
  25180. If the cells in merged in a row and auto fit the rows in MS Excel,
  25181. MS Excel do not expand the row height.
  25182. If this option is true, Aspose.Cells will expand the row height to fit the cells' data.
  25183. </remarks>
  25184. </member>
  25185. <member name="P:Aspose.Cells.AutoFitterOptions.OnlyAuto">
  25186. <summary>
  25187. Indicates whether only fit the rows which height are not customed.
  25188. </summary>
  25189. </member>
  25190. <member name="P:Aspose.Cells.AutoFitterOptions.IgnoreHidden">
  25191. <summary>
  25192. Ignores the hidden rows/columns.
  25193. </summary>
  25194. </member>
  25195. <member name="P:Aspose.Cells.AutoFitterOptions.MaxRowHeight">
  25196. <summary>
  25197. Gets and sets the max row height(in unit of Point) when autofitting rows.
  25198. </summary>
  25199. </member>
  25200. <member name="P:Aspose.Cells.AutoFitterOptions.AutoFitWrappedTextType">
  25201. <summary>
  25202. Gets and sets the type of auto fitting wrapped text.
  25203. </summary>
  25204. </member>
  25205. <member name="T:Aspose.Cells.Rendering.PdfCompliance">
  25206. <summary>
  25207. Allowing user to set PDF conversion's Compatibility
  25208. </summary>
  25209. </member>
  25210. <member name="F:Aspose.Cells.Rendering.PdfCompliance.None">
  25211. <summary>
  25212. Normal pdf format
  25213. </summary>
  25214. </member>
  25215. <member name="F:Aspose.Cells.Rendering.PdfCompliance.PdfA1b">
  25216. <summary>
  25217. Pdf format compatible with PDFA-1b
  25218. </summary>
  25219. </member>
  25220. <member name="F:Aspose.Cells.Rendering.PdfCompliance.PdfA1a">
  25221. <summary>
  25222. Pdf format compatible with PDFA-1a
  25223. </summary>
  25224. </member>
  25225. <member name="T:Aspose.Cells.DirectoryType">
  25226. <summary>
  25227. Represents the directory type of the file name.
  25228. </summary>
  25229. </member>
  25230. <member name="F:Aspose.Cells.DirectoryType.Volume">
  25231. <summary>
  25232. Represents an MS-DOS drive letter. It is followed by the drive letter.
  25233. Or UNC file names, such as \\server\share\myfile.xls
  25234. </summary>
  25235. </member>
  25236. <member name="F:Aspose.Cells.DirectoryType.SameVolume">
  25237. <summary>
  25238. Indicates that the source workbook is on the same drive as the dependent workbook (the drive letter is omitted)
  25239. </summary>
  25240. </member>
  25241. <member name="F:Aspose.Cells.DirectoryType.DownDirectory">
  25242. <summary>
  25243. Indicates that the source workbook is in a subdirectory of the current directory.
  25244. </summary>
  25245. </member>
  25246. <member name="F:Aspose.Cells.DirectoryType.UpDirectory">
  25247. <summary>
  25248. Indicates that the source workbook is in the parent directory of the current directory.
  25249. </summary>
  25250. </member>
  25251. <member name="T:Aspose.Cells.Drawing.LightRigType">
  25252. <summary>
  25253. Represents a preset light right that can be applied to a shape
  25254. </summary>
  25255. </member>
  25256. <member name="F:Aspose.Cells.Drawing.LightRigType.Balanced">
  25257. <summary>
  25258. Balanced
  25259. </summary>
  25260. </member>
  25261. <member name="F:Aspose.Cells.Drawing.LightRigType.BrightRoom">
  25262. <summary>
  25263. Bright room
  25264. </summary>
  25265. </member>
  25266. <member name="F:Aspose.Cells.Drawing.LightRigType.Chilly">
  25267. <summary>
  25268. Chilly
  25269. </summary>
  25270. </member>
  25271. <member name="F:Aspose.Cells.Drawing.LightRigType.Contrasting">
  25272. <summary>
  25273. Contrasting
  25274. </summary>
  25275. </member>
  25276. <member name="F:Aspose.Cells.Drawing.LightRigType.Flat">
  25277. <summary>
  25278. Flat
  25279. </summary>
  25280. </member>
  25281. <member name="F:Aspose.Cells.Drawing.LightRigType.Flood">
  25282. <summary>
  25283. Flood
  25284. </summary>
  25285. </member>
  25286. <member name="F:Aspose.Cells.Drawing.LightRigType.Freezing">
  25287. <summary>
  25288. Freezing
  25289. </summary>
  25290. </member>
  25291. <member name="F:Aspose.Cells.Drawing.LightRigType.Glow">
  25292. <summary>
  25293. Glow
  25294. </summary>
  25295. </member>
  25296. <member name="F:Aspose.Cells.Drawing.LightRigType.Harsh">
  25297. <summary>
  25298. Harsh
  25299. </summary>
  25300. </member>
  25301. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyFlat1">
  25302. <summary>
  25303. LegacyFlat1
  25304. </summary>
  25305. </member>
  25306. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyFlat2">
  25307. <summary>
  25308. LegacyFlat2
  25309. </summary>
  25310. </member>
  25311. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyFlat3">
  25312. <summary>
  25313. LegacyFlat3
  25314. </summary>
  25315. </member>
  25316. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyFlat4">
  25317. <summary>
  25318. LegacyFlat4
  25319. </summary>
  25320. </member>
  25321. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyHarsh1">
  25322. <summary>
  25323. LegacyHarsh1
  25324. </summary>
  25325. </member>
  25326. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyHarsh2">
  25327. <summary>
  25328. LegacyHarsh2
  25329. </summary>
  25330. </member>
  25331. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyHarsh3">
  25332. <summary>
  25333. LegacyHarsh3
  25334. </summary>
  25335. </member>
  25336. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyHarsh4">
  25337. <summary>
  25338. LegacyHarsh4
  25339. </summary>
  25340. </member>
  25341. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyNormal1">
  25342. <summary>
  25343. LegacyNormal1
  25344. </summary>
  25345. </member>
  25346. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyNormal2">
  25347. <summary>
  25348. LegacyNormal2
  25349. </summary>
  25350. </member>
  25351. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyNormal3">
  25352. <summary>
  25353. LegacyNormal3
  25354. </summary>
  25355. </member>
  25356. <member name="F:Aspose.Cells.Drawing.LightRigType.LegacyNormal4">
  25357. <summary>
  25358. LegacyNormal4
  25359. </summary>
  25360. </member>
  25361. <member name="F:Aspose.Cells.Drawing.LightRigType.Morning">
  25362. <summary>
  25363. Morning
  25364. </summary>
  25365. </member>
  25366. <member name="F:Aspose.Cells.Drawing.LightRigType.Soft">
  25367. <summary>
  25368. Soft
  25369. </summary>
  25370. </member>
  25371. <member name="F:Aspose.Cells.Drawing.LightRigType.Sunrise">
  25372. <summary>
  25373. Sunrise
  25374. </summary>
  25375. </member>
  25376. <member name="F:Aspose.Cells.Drawing.LightRigType.Sunset">
  25377. <summary>
  25378. Sunset
  25379. </summary>
  25380. </member>
  25381. <member name="F:Aspose.Cells.Drawing.LightRigType.ThreePoint">
  25382. <summary>
  25383. Three point
  25384. </summary>
  25385. </member>
  25386. <member name="F:Aspose.Cells.Drawing.LightRigType.TwoPoint">
  25387. <summary>
  25388. Two point
  25389. </summary>
  25390. </member>
  25391. <member name="F:Aspose.Cells.Drawing.LightRigType.None">
  25392. <summary>
  25393. No light rig.
  25394. </summary>
  25395. </member>
  25396. <member name="T:Aspose.Cells.ExportTableOptions">
  25397. <summary>
  25398. Represents all export table options.
  25399. </summary>
  25400. </member>
  25401. <member name="P:Aspose.Cells.ExportTableOptions.DataTable">
  25402. <summary>
  25403. Gets and sets the DataTable which columns' data type is assigned.
  25404. </summary>
  25405. </member>
  25406. <member name="P:Aspose.Cells.ExportTableOptions.ExportColumnName">
  25407. <summary>
  25408. Indicates whether the data in the first row are exported to the column name of the DataTable.
  25409. The default value is false.
  25410. </summary>
  25411. </member>
  25412. <member name="P:Aspose.Cells.ExportTableOptions.SkipErrorValue">
  25413. <summary>
  25414. Indicates whether skip invalid value for the column.
  25415. For example,if the column type is decimal ,the value is greater than decimal.MaxValue
  25416. and this property is true,we will not throw exception again.
  25417. The default value is false.
  25418. </summary>
  25419. </member>
  25420. <member name="P:Aspose.Cells.ExportTableOptions.PlotVisibleCells">
  25421. <summary>
  25422. Only exports visible cells.
  25423. </summary>
  25424. </member>
  25425. <member name="P:Aspose.Cells.ExportTableOptions.PlotVisibleRows">
  25426. <summary>
  25427. Only exports visible rows.
  25428. </summary>
  25429. </member>
  25430. <member name="P:Aspose.Cells.ExportTableOptions.PlotVisibleColumns">
  25431. <summary>
  25432. Only exports visible columns.
  25433. </summary>
  25434. </member>
  25435. <member name="P:Aspose.Cells.ExportTableOptions.ExportAsString">
  25436. <summary>
  25437. Exports the string value of the cells to the DataTable.
  25438. </summary>
  25439. </member>
  25440. <member name="P:Aspose.Cells.ExportTableOptions.ExportAsHtmlString">
  25441. <summary>
  25442. Exports the html string value of the cells to the DataTable.
  25443. </summary>
  25444. </member>
  25445. <member name="P:Aspose.Cells.ExportTableOptions.FormatStrategy">
  25446. <summary>
  25447. Gets and sets the format strategy when exporting the value as string value.
  25448. </summary>
  25449. </member>
  25450. <member name="P:Aspose.Cells.ExportTableOptions.CheckMixedValueType">
  25451. <summary>
  25452. False, Aspose.Cells will set the DataColumn's type by the value type of the first row for performance.
  25453. True, Aspose.Cells will check whether the value type in the column are mixed before set the DataColumn's type
  25454. And the value type are mixed, the DataColumn's type will be string.
  25455. </summary>
  25456. </member>
  25457. <member name="P:Aspose.Cells.ExportTableOptions.IsVertical">
  25458. <summary>
  25459. True if a row in Workbook file represents a row in DataTable. False if a column in Workbook file represents a row in DataTable.
  25460. </summary>
  25461. </member>
  25462. <member name="P:Aspose.Cells.ExportTableOptions.Indexes">
  25463. <summary>
  25464. The indexes of columns/rows which should be exported out.
  25465. </summary>
  25466. </member>
  25467. <member name="P:Aspose.Cells.ExportTableOptions.RenameStrategy">
  25468. <summary>
  25469. Renames strategy when columns contains the duplicate names.
  25470. </summary>
  25471. </member>
  25472. <member name="T:Aspose.Cells.HtmlSaveOptions">
  25473. <summary>
  25474. Represents the options for saving html file.
  25475. </summary>
  25476. </member>
  25477. <member name="M:Aspose.Cells.HtmlSaveOptions.#ctor">
  25478. <summary>
  25479. Creates options for saving html file.
  25480. </summary>
  25481. </member>
  25482. <member name="M:Aspose.Cells.HtmlSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  25483. <summary>
  25484. Creates options for saving htm file.
  25485. </summary>
  25486. <param name="format">The saving file format.</param>
  25487. </member>
  25488. <member name="P:Aspose.Cells.HtmlSaveOptions.PageTitle">
  25489. <summary>
  25490. The title of the html page.
  25491. Only for saving to html stream.
  25492. </summary>
  25493. </member>
  25494. <member name="P:Aspose.Cells.HtmlSaveOptions.AttachedFilesDirectory">
  25495. <summary>
  25496. The directory that the attached files will be saved to.
  25497. Only for saving to html stream.
  25498. </summary>
  25499. </member>
  25500. <member name="P:Aspose.Cells.HtmlSaveOptions.AttachedFilesUrlPrefix">
  25501. <summary>
  25502. Specify the Url prefix of attached files such as image in the html file.
  25503. Only for saving to html stream.
  25504. </summary>
  25505. </member>
  25506. <member name="P:Aspose.Cells.HtmlSaveOptions.DefaultFontName">
  25507. <summary>
  25508. Specify the default font name for exporting html, the default font will be used when the font of style is not existing,
  25509. If this property is null, Aspose.Cells will use universal font which have the same family with the original font,
  25510. the default value is null.
  25511. </summary>
  25512. </member>
  25513. <member name="P:Aspose.Cells.HtmlSaveOptions.IsExportComments">
  25514. <summary>
  25515. Indicates if exporting comments when saving file to html, the default value is false.
  25516. </summary>
  25517. </member>
  25518. <member name="P:Aspose.Cells.HtmlSaveOptions.DisableDownlevelRevealedComments">
  25519. <summary>
  25520. Indicates if disable Downlevel-revealed conditional comments when exporting file to html, the default value is false.
  25521. </summary>
  25522. </member>
  25523. <member name="P:Aspose.Cells.HtmlSaveOptions.IsExpImageToTempDir">
  25524. <summary>
  25525. Indicates whether exporting image files to temp directory.
  25526. Only for saving to html stream.
  25527. </summary>
  25528. </member>
  25529. <member name="P:Aspose.Cells.HtmlSaveOptions.ImageScalable">
  25530. <summary>
  25531. Indicates whether using scalable unit to describe the image width
  25532. when using scalable unit to describe the column width.
  25533. The default value is true.
  25534. </summary>
  25535. </member>
  25536. <member name="P:Aspose.Cells.HtmlSaveOptions.WidthScalable">
  25537. <summary>
  25538. Indicates whether using scalable unit to describe the column width when exporting file to html.
  25539. The default value is false.
  25540. </summary>
  25541. </member>
  25542. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportSingleTab">
  25543. <summary>
  25544. Indicates whether exporting the single tab when the file only has one worksheet.
  25545. The default value is false.
  25546. </summary>
  25547. </member>
  25548. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportImagesAsBase64">
  25549. <summary>
  25550. Specifies whether images are saved in Base64 format to HTML, MHTML or EPUB.
  25551. </summary>
  25552. <remarks>
  25553. When this property is set to true image data is exported directly on the
  25554. img elements and separate files are not created.
  25555. </remarks>
  25556. </member>
  25557. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportActiveWorksheetOnly">
  25558. <summary>
  25559. Indicates if exporting the whole workbook to html file.
  25560. </summary>
  25561. </member>
  25562. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportPrintAreaOnly">
  25563. <summary>
  25564. Indicates if only exporting the print area to html file. The default value is false.
  25565. </summary>
  25566. </member>
  25567. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportArea">
  25568. <summary>
  25569. Gets or Sets the exporting CellArea of current active Worksheet.
  25570. If you set this attribute, the print area of current active Worksheet will be omitted.
  25571. Only the specified area will be exported when saving the file to html.
  25572. </summary>
  25573. </member>
  25574. <member name="P:Aspose.Cells.HtmlSaveOptions.ParseHtmlTagInCell">
  25575. <summary>
  25576. Parse html tag in cell,like <div></div>,as cell value,or as html tag,default is true
  25577. </summary>
  25578. </member>
  25579. <member name="P:Aspose.Cells.HtmlSaveOptions.HtmlCrossStringType">
  25580. <summary>
  25581. Indicates if a cross-cell string will be displayed in the same way as MS Excel when saving an Excel file in html format.
  25582. By default the value is Default, so, for cross-cell strings, there is little difference between the html files created by Aspose.Cells and MS Excel.
  25583. But the performance for creating large html files,setting the value to Cross would be several times faster than setting it to Default or Fit2Cell.
  25584. </summary>
  25585. </member>
  25586. <member name="P:Aspose.Cells.HtmlSaveOptions.HiddenColDisplayType">
  25587. <summary>
  25588. Hidden column(the width of this column is 0) in excel,before save this into html format,
  25589. if HtmlHiddenColDisplayType is "Remove",the hidden column would not been output,
  25590. if the value is "Hidden", the column would been output,but was hidden,the default value is "Hidden"
  25591. </summary>
  25592. </member>
  25593. <member name="P:Aspose.Cells.HtmlSaveOptions.HiddenRowDisplayType">
  25594. <summary>
  25595. Hidden row(the height of this row is 0) in excel,before save this into html format,
  25596. if HtmlHiddenRowDisplayType is "Remove",the hidden row would not been output,
  25597. if the value is "Hidden", the row would been output,but was hidden,the default value is "Hidden"
  25598. </summary>
  25599. </member>
  25600. <member name="P:Aspose.Cells.HtmlSaveOptions.Encoding">
  25601. <summary>
  25602. If not set,use Encoding.UTF8 as default enconding type.
  25603. </summary>
  25604. </member>
  25605. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportObjectListener">
  25606. <summary>
  25607. Gets or sets the ExportObjectListener for exporting objects.
  25608. </summary>
  25609. <remarks>
  25610. NOTE: This property is now obsolete. Instead,
  25611. please use HtmlSaveOptions.IStreamProvider property.
  25612. This property will be removed 12 months later since August 2015.
  25613. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  25614. </member>
  25615. <member name="P:Aspose.Cells.HtmlSaveOptions.FilePathProvider">
  25616. <summary>
  25617. Gets or sets the IFilePathProvider for exporting Worksheet to html separately.
  25618. </summary>
  25619. </member>
  25620. <member name="P:Aspose.Cells.HtmlSaveOptions.StreamProvider">
  25621. <summary>
  25622. Gets or sets the IStreamProvider for exporting objects.
  25623. </summary>
  25624. </member>
  25625. <member name="P:Aspose.Cells.HtmlSaveOptions.ImageOptions">
  25626. <summary>
  25627. Get the ImageOrPrintOptions object before exporting
  25628. </summary>
  25629. </member>
  25630. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportHiddenWorksheet">
  25631. <summary>
  25632. Indicating if exporting the hidden worksheet content.The default value is true.
  25633. </summary>
  25634. </member>
  25635. <member name="P:Aspose.Cells.HtmlSaveOptions.PresentationPreference">
  25636. <summary>
  25637. Indicating if html or mht file is presentation preference.The default value is false.if you want to get
  25638. more beautiful presentation,please set the value to true.
  25639. </summary>
  25640. </member>
  25641. <member name="P:Aspose.Cells.HtmlSaveOptions.CellCssPrefix">
  25642. <summary>
  25643. Gets and sets the prefix of the css name,the default value is "".
  25644. </summary>
  25645. </member>
  25646. <member name="P:Aspose.Cells.HtmlSaveOptions.TableCssId">
  25647. <summary>
  25648. Gets and sets the prefix of the type css name such as tr,col,td and so on, they are contained in the table element
  25649. which has the specific TableCssId attribute. The default value is "".
  25650. </summary>
  25651. </member>
  25652. <member name="P:Aspose.Cells.HtmlSaveOptions.IsFullPathLink">
  25653. <summary>
  25654. Indicating whether using full path link in sheet00x.htm,filelist.xml and tabstrip.htm.
  25655. The default value is false.
  25656. </summary>
  25657. </member>
  25658. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportWorksheetCSSSeparately">
  25659. <summary>
  25660. Indicating whether export the worksheet css separately.The default value is false.
  25661. </summary>
  25662. </member>
  25663. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportSimilarBorderStyle">
  25664. <summary>
  25665. Indicating whether exporting the similar border style when the border style is not supported by browsers.
  25666. If you want to import the html or mht file to excel, please keep the default value.
  25667. The default value is false.
  25668. </summary>
  25669. </member>
  25670. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportHeadings">
  25671. <summary>
  25672. Indicates whether exporting headings when saving file to html.The default value is false.
  25673. If you want to import the html file to excel, please keep the default value.
  25674. </summary>
  25675. </member>
  25676. <member name="P:Aspose.Cells.HtmlSaveOptions.AddTooltipText">
  25677. <summary>
  25678. Indicates whether adding tooltip text when the data can't be fully displayed.
  25679. The default value is false.
  25680. </summary>
  25681. </member>
  25682. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportGridLines">
  25683. <summary>
  25684. Indicating whether exporting the gridlines.The default value is false.
  25685. </summary>
  25686. </member>
  25687. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportBogusRowData">
  25688. <summary>
  25689. Indicating whether exporting bogus bottom row data. The default value is true.If you want to import the html or mht file
  25690. to excel, please keep the default value.
  25691. </summary>
  25692. </member>
  25693. <member name="P:Aspose.Cells.HtmlSaveOptions.ExcludeUnusedStyles">
  25694. <summary>
  25695. Indicating whether excluding unused styles.The default value is false.If you want to import
  25696. the html or mht file to excel, please keep the default value.
  25697. </summary>
  25698. </member>
  25699. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportDocumentProperties">
  25700. <summary>
  25701. Indicating whether exporting document properties.The default value is true.If you want to import
  25702. the html or mht file to excel, please keep the default value.
  25703. </summary>
  25704. </member>
  25705. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportWorksheetProperties">
  25706. <summary>
  25707. Indicating whether exporting worksheet properties.The default value is true.If you want to import
  25708. the html or mht file to excel, please keep the default value.
  25709. </summary>
  25710. </member>
  25711. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportWorkbookProperties">
  25712. <summary>
  25713. Indicating whether exporting workbook properties.The default value is true.If you want to import
  25714. the html or mht file to excel, please keep the default value.
  25715. </summary>
  25716. </member>
  25717. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportFrameScriptsAndProperties">
  25718. <summary>
  25719. Indicating whether exporting frame scripts and document properties. The default value is true.If you want to import the html or mht file
  25720. to excel, please keep the default value.
  25721. </summary>
  25722. </member>
  25723. <member name="P:Aspose.Cells.HtmlSaveOptions.ExportDataOptions">
  25724. <summary>
  25725. Indicating the rule of exporting html file data.The default value is All.
  25726. </summary>
  25727. </member>
  25728. <member name="P:Aspose.Cells.HtmlSaveOptions.LinkTargetType">
  25729. <summary>
  25730. Indicating the type of target attribute in &lt;a&gt; link,The default value is HtmlLinkTargetType.Parent.
  25731. </summary>
  25732. </member>
  25733. <member name="T:Aspose.Cells.Markup.SmartTag">
  25734. <summary>
  25735. Represents a smart tag.
  25736. </summary>
  25737. </member>
  25738. <member name="M:Aspose.Cells.Markup.SmartTag.SetLink(System.String,System.String)">
  25739. <summary>
  25740. Change the name and the namespace URI of the smart tag.
  25741. </summary>
  25742. <param name="uri">The namespace URI of the smart tag.</param>
  25743. <param name="name">The name of the smart tag.</param>
  25744. </member>
  25745. <member name="P:Aspose.Cells.Markup.SmartTag.Deleted">
  25746. <summary>
  25747. Indicates whether the smart tag is deleted.
  25748. </summary>
  25749. </member>
  25750. <member name="P:Aspose.Cells.Markup.SmartTag.Properties">
  25751. <summary>
  25752. Gets and set the properties of the smart tag.
  25753. </summary>
  25754. </member>
  25755. <member name="P:Aspose.Cells.Markup.SmartTag.Uri">
  25756. <summary>
  25757. Gets the namespace URI of the smart tag.
  25758. </summary>
  25759. </member>
  25760. <member name="P:Aspose.Cells.Markup.SmartTag.Name">
  25761. <summary>
  25762. Gets the name of the smart tag.
  25763. </summary>
  25764. </member>
  25765. <member name="T:Aspose.Cells.Markup.SmartTagCollection">
  25766. <summary>
  25767. Represents all smart tags in the cell.
  25768. </summary>
  25769. </member>
  25770. <member name="M:Aspose.Cells.Markup.SmartTagCollection.Add(System.String,System.String)">
  25771. <summary>
  25772. Adds a smart tag.
  25773. </summary>
  25774. <param name="uri">Specifies the namespace URI of the smart tag</param>
  25775. <param name="name">Specifies the name of the smart tag. </param>
  25776. <returns>The index of smart tag in the list.</returns>
  25777. </member>
  25778. <member name="P:Aspose.Cells.Markup.SmartTagCollection.Row">
  25779. <summary>
  25780. Gets the row of the cell smart tags.
  25781. </summary>
  25782. </member>
  25783. <member name="P:Aspose.Cells.Markup.SmartTagCollection.Column">
  25784. <summary>
  25785. Gets the column of the cell smart tags.
  25786. </summary>
  25787. </member>
  25788. <member name="P:Aspose.Cells.Markup.SmartTagCollection.Item(System.Int32)">
  25789. <summary>
  25790. Gets a <see cref="T:Aspose.Cells.Markup.SmartTag" /> object at the specific index
  25791. </summary>
  25792. <param name="index">The index.</param>
  25793. <returns>returns a <see cref="T:Aspose.Cells.Markup.SmartTag" /> object. </returns>
  25794. </member>
  25795. <member name="T:Aspose.Cells.Markup.SmartTagOptions">
  25796. <summary>
  25797. Represents the options of the smart tag.
  25798. </summary>
  25799. </member>
  25800. <member name="P:Aspose.Cells.Markup.SmartTagOptions.EmbedSmartTags">
  25801. <summary>
  25802. Indicates whether saving smart tags with the workbook.
  25803. </summary>
  25804. </member>
  25805. <member name="P:Aspose.Cells.Markup.SmartTagOptions.ShowType">
  25806. <summary>
  25807. Represents the show type of smart tag.
  25808. </summary>
  25809. </member>
  25810. <member name="T:Aspose.Cells.Markup.SmartTagSetting">
  25811. <summary>
  25812. Represents all <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object in the worksheet.
  25813. </summary>
  25814. </member>
  25815. <member name="M:Aspose.Cells.Markup.SmartTagSetting.Add(System.Int32,System.Int32)">
  25816. <summary>
  25817. Adds a <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object to a cell.
  25818. </summary>
  25819. <param name="row">The row of the cell.</param>
  25820. <param name="column">The column of the cell.</param>
  25821. <returns>Returns index of a <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object in the worksheet.</returns>
  25822. </member>
  25823. <member name="M:Aspose.Cells.Markup.SmartTagSetting.Add(System.String)">
  25824. <summary>
  25825. Add a cell smart tags.
  25826. </summary>
  25827. <param name="cellName">The name of the cell.</param>
  25828. <returns>
  25829. </returns>
  25830. </member>
  25831. <member name="P:Aspose.Cells.Markup.SmartTagSetting.Item(System.Int32)">
  25832. <summary>
  25833. Gets a <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object by the index.
  25834. </summary>
  25835. <param name="index">The index of the <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object in the list.</param>
  25836. <returns>
  25837. </returns>
  25838. </member>
  25839. <member name="P:Aspose.Cells.Markup.SmartTagSetting.Item(System.Int32,System.Int32)">
  25840. <summary>
  25841. Gets the <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object of the cell.
  25842. </summary>
  25843. <param name="row">The row index of the cell.</param>
  25844. <param name="column">The column index of the cell</param>
  25845. <returns>Returns the <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object of the cell.
  25846. Returns null if there is no any smart tags on the cell.
  25847. </returns>
  25848. </member>
  25849. <member name="P:Aspose.Cells.Markup.SmartTagSetting.Item(System.String)">
  25850. <summary>
  25851. Gets the <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object of the cell.
  25852. </summary>
  25853. <param name="cellName">The name of the cell.</param>
  25854. <returns>Returns the <see cref="T:Aspose.Cells.Markup.SmartTagCollection" /> object of the cell.
  25855. Returns null if there is no any smart tags on the cell.
  25856. </returns>
  25857. </member>
  25858. <member name="T:Aspose.Cells.Markup.SmartTagProperty">
  25859. <summary>
  25860. Represents the property of the cell smart tag.
  25861. </summary>
  25862. </member>
  25863. <member name="P:Aspose.Cells.Markup.SmartTagProperty.Name">
  25864. <summary>
  25865. Gets and sets the name of the property.
  25866. </summary>
  25867. </member>
  25868. <member name="P:Aspose.Cells.Markup.SmartTagProperty.Value">
  25869. <summary>
  25870. Gets and sets the value of the property.
  25871. </summary>
  25872. </member>
  25873. <member name="T:Aspose.Cells.Markup.SmartTagPropertyCollection">
  25874. <summary>
  25875. Represents all properties of cell smart tag.
  25876. </summary>
  25877. </member>
  25878. <member name="M:Aspose.Cells.Markup.SmartTagPropertyCollection.Add(System.String,System.String)">
  25879. <summary>
  25880. Adds a property of cell's smart tag.
  25881. </summary>
  25882. <param name="name">The name of the property</param>
  25883. <param name="value">The value of the property.</param>
  25884. <returns>return <see cref="T:Aspose.Cells.Markup.SmartTagProperty" /></returns>
  25885. </member>
  25886. <member name="P:Aspose.Cells.Markup.SmartTagPropertyCollection.Item(System.Int32)">
  25887. <summary>
  25888. Gets a <see cref="T:Aspose.Cells.Markup.SmartTagProperty" /> object.
  25889. </summary>
  25890. <param name="index">The index</param>
  25891. <returns>Returns a <see cref="T:Aspose.Cells.Markup.SmartTagProperty" /> object.</returns>
  25892. </member>
  25893. <member name="P:Aspose.Cells.Markup.SmartTagPropertyCollection.Item(System.String)">
  25894. <summary>
  25895. Gets a <see cref="T:Aspose.Cells.Markup.SmartTagProperty" /> object by the name of the property.
  25896. </summary>
  25897. <param name="name">The name of the property.</param>
  25898. <returns>Returns a <see cref="T:Aspose.Cells.Markup.SmartTagProperty" /> object.</returns>
  25899. </member>
  25900. <member name="T:Aspose.Cells.Markup.SmartTagShowType">
  25901. <summary>
  25902. Represents the show type of the smart tag.
  25903. </summary>
  25904. </member>
  25905. <member name="F:Aspose.Cells.Markup.SmartTagShowType.All">
  25906. <summary>
  25907. Indicates that smart tags are enabled and shown
  25908. </summary>
  25909. </member>
  25910. <member name="F:Aspose.Cells.Markup.SmartTagShowType.NoSmartTagIndicator">
  25911. <summary>
  25912. Indicates that the smart tags are enabled but the indicator not be shown.
  25913. </summary>
  25914. </member>
  25915. <member name="F:Aspose.Cells.Markup.SmartTagShowType.None">
  25916. <summary>
  25917. Indicates that smart tags are disabled and not displayed.
  25918. </summary>
  25919. </member>
  25920. <member name="T:Aspose.Cells.OdsSaveOptions">
  25921. <summary>
  25922. Represents the options of saving ods file.
  25923. </summary>
  25924. </member>
  25925. <member name="M:Aspose.Cells.OdsSaveOptions.#ctor">
  25926. <summary>
  25927. Creates the options of saving ods file.
  25928. </summary>
  25929. </member>
  25930. <member name="M:Aspose.Cells.OdsSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  25931. <summary>
  25932. Creates the options of saving ods file.
  25933. </summary>
  25934. <param name="saveFormat">
  25935. </param>
  25936. </member>
  25937. <member name="P:Aspose.Cells.OdsSaveOptions.GeneratorType">
  25938. <summary>
  25939. Gets and sets the generator of the ods file.
  25940. </summary>
  25941. </member>
  25942. <member name="P:Aspose.Cells.OdsSaveOptions.IsStrictSchema11">
  25943. <summary>
  25944. Indicates whether the ods file should be saved as ODF format version 1.1. Default is false.
  25945. </summary>
  25946. </member>
  25947. <member name="T:Aspose.Cells.PasteOptions">
  25948. <summary>
  25949. Represents the paste special options.
  25950. </summary>
  25951. </member>
  25952. <member name="P:Aspose.Cells.PasteOptions.PasteType">
  25953. <summary>
  25954. The paste special type.
  25955. </summary>
  25956. </member>
  25957. <member name="P:Aspose.Cells.PasteOptions.SkipBlanks">
  25958. <summary>
  25959. Indicates whether skips blank cells.
  25960. </summary>
  25961. </member>
  25962. <member name="P:Aspose.Cells.PasteOptions.OnlyVisibleCells">
  25963. <summary>
  25964. True means only copying visible cells.
  25965. </summary>
  25966. </member>
  25967. <member name="P:Aspose.Cells.PasteOptions.Transpose">
  25968. <summary>
  25969. True to transpose rows and columns when the range is pasted. The default value is False.
  25970. </summary>
  25971. </member>
  25972. <member name="T:Aspose.Cells.PdfSaveOptions">
  25973. <summary>
  25974. Represents the options for saving pdf file.
  25975. </summary>
  25976. </member>
  25977. <member name="M:Aspose.Cells.PdfSaveOptions.#ctor">
  25978. <summary>
  25979. Creates the options for saving pdf file.
  25980. </summary>
  25981. </member>
  25982. <member name="M:Aspose.Cells.PdfSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  25983. <summary>
  25984. Creates the options for saving pdf file.
  25985. </summary>
  25986. <param name="saveFormat">The save format.It must be pdf.</param>
  25987. </member>
  25988. <member name="M:Aspose.Cells.PdfSaveOptions.SetImageResample(System.Int32,System.Int32)">
  25989. <summary>
  25990. Sets desired PPI(pixels per inch) of resample images and jpeg quality
  25991. All images will be converted to JPEG with the specified quality setting,
  25992. and images that are greater than the specified PPI (pixels per inch) will be resampled.
  25993. </summary>
  25994. <param name="desiredPPI">Desired pixels per inch. 220 high quality. 150 screen quality. 96 email quality.</param>
  25995. <param name="jpegQuality">0 - 100% JPEG quality.</param>
  25996. </member>
  25997. <member name="P:Aspose.Cells.PdfSaveOptions.PrintingPageType">
  25998. <summary>
  25999. Indicates which pages will not be printed.
  26000. </summary>
  26001. </member>
  26002. <member name="P:Aspose.Cells.PdfSaveOptions.EmbedStandardWindowsFonts">
  26003. <summary>
  26004. True to embed true type fonts.
  26005. Affects only ASCII characters 32-127.
  26006. Fonts for character codes greater than 127 are always embedded.
  26007. PDFA1B must embedded font.
  26008. Default is true.
  26009. </summary>
  26010. </member>
  26011. <member name="P:Aspose.Cells.PdfSaveOptions.Bookmark">
  26012. <summary>
  26013. Gets and sets the <see cref="T:Aspose.Cells.Rendering.PdfBookmarkEntry">PdfBookmarkEntry</see> object.
  26014. </summary>
  26015. </member>
  26016. <member name="P:Aspose.Cells.PdfSaveOptions.Compliance">
  26017. <summary>
  26018. Workbook converts to pdf will according to PdfCompliance in this property.
  26019. </summary>
  26020. </member>
  26021. <member name="P:Aspose.Cells.PdfSaveOptions.DefaultFont">
  26022. <summary>
  26023. When characters in the Excel are unicode and not be set with correct font in cell style,
  26024. They may appear as block in pdf,image.
  26025. Set the DefaultFont such as MingLiu or MS Gothic to show these characters.
  26026. If this property is not set, Aspose.Cells will use system default font to show these unicode characters.
  26027. </summary>
  26028. </member>
  26029. <member name="P:Aspose.Cells.PdfSaveOptions.CheckWorkbookDefaultFont">
  26030. <summary>
  26031. When characters in the Excel are unicode and not be set with correct font in cell style,
  26032. They may appear as block in pdf,image.
  26033. Set this to true to try to use workbook's default font to show these characters first.
  26034. </summary>
  26035. <remarks>
  26036. Default is true.
  26037. </remarks>
  26038. </member>
  26039. <member name="P:Aspose.Cells.PdfSaveOptions.SecurityOptions">
  26040. <summary>
  26041. Set this options, when security is need in xls2pdf result.
  26042. </summary>
  26043. </member>
  26044. <member name="P:Aspose.Cells.PdfSaveOptions.OnePagePerSheet">
  26045. <summary>
  26046. If OnePagePerSheet is true , all content of one sheet will output to only one page in result.
  26047. The paper size of pagesetup will be invalid, and the other settings of pagesetup
  26048. will still take effect.
  26049. </summary>
  26050. </member>
  26051. <member name="P:Aspose.Cells.PdfSaveOptions.AllColumnsInOnePagePerSheet">
  26052. <summary>
  26053. If AllColumnsInOnePagePerSheet is true , all column content of one sheet will output to only one page in result.
  26054. The width of paper size of pagesetup will be ignored, and the other settings of pagesetup
  26055. will still take effect.
  26056. </summary>
  26057. </member>
  26058. <member name="P:Aspose.Cells.PdfSaveOptions.ImageType">
  26059. <summary>
  26060. Represents the image type when converting the chart and shape .
  26061. </summary>
  26062. </member>
  26063. <member name="P:Aspose.Cells.PdfSaveOptions.CalculateFormula">
  26064. <summary>
  26065. Indicates whether calculate formulas before saving pdf file.
  26066. </summary>
  26067. <remarks>
  26068. The default value is false.
  26069. </remarks>
  26070. </member>
  26071. <member name="P:Aspose.Cells.PdfSaveOptions.PdfCompression">
  26072. <summary>
  26073. Indicate the compression algorithm
  26074. </summary>
  26075. </member>
  26076. <member name="P:Aspose.Cells.PdfSaveOptions.StreamProvider">
  26077. <summary>
  26078. Gets or sets the IStreamProvider for exporting objects.
  26079. </summary>
  26080. <remarks>NOTE: This member is now obsolete. Instead,
  26081. please use Border property.
  26082. This property will be removed 12 months later since January 2018.
  26083. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  26084. </member>
  26085. <member name="P:Aspose.Cells.PdfSaveOptions.CheckFontCompatibility">
  26086. <summary>
  26087. Indicates whether check font compatibility for every character in text.
  26088. </summary>
  26089. <remarks>
  26090. The default value is true.
  26091. Disable this property may give better performance.
  26092. But when the default or specified font of text/character cannot be used to render it,
  26093. unreadable characters(such as block) maybe occur in the generated pdf.
  26094. For such situation user should keep this property as true so that
  26095. alternative font can be searched and used to render the text instead;
  26096. </remarks>
  26097. </member>
  26098. <member name="P:Aspose.Cells.PdfSaveOptions.PageIndex">
  26099. <summary>
  26100. Gets or sets the 0-based index of the first page to save.
  26101. </summary>
  26102. <remarks>
  26103. Default is 0.
  26104. </remarks>
  26105. </member>
  26106. <member name="P:Aspose.Cells.PdfSaveOptions.PageCount">
  26107. <summary>
  26108. Gets or sets the number of pages to save.
  26109. </summary>
  26110. <remarks>
  26111. Default is System.Int32.MaxValue which means all pages will be rendered..
  26112. </remarks>
  26113. </member>
  26114. <member name="P:Aspose.Cells.PdfSaveOptions.CreatedTime">
  26115. <summary>
  26116. Gets and sets the time of generating the pdf document.
  26117. </summary>
  26118. <remarks>
  26119. if it is not be set, it will be the time of generating the pdf.
  26120. </remarks>
  26121. </member>
  26122. <member name="P:Aspose.Cells.PdfSaveOptions.OptimizationType">
  26123. <summary>
  26124. Gets and sets pdf optimization type.
  26125. </summary>
  26126. </member>
  26127. <member name="P:Aspose.Cells.PdfSaveOptions.IsFontSubstitutionCharGranularity">
  26128. <summary>
  26129. Indicates whether only substitute the font of character when the cell font is not compatibility for it.
  26130. </summary>
  26131. <remarks>
  26132. Default is false. We will try default font of Workbook and PdfSaveOption/system for cell font first.
  26133. </remarks>
  26134. </member>
  26135. <member name="P:Aspose.Cells.PdfSaveOptions.GridlineType">
  26136. <summary>
  26137. Gets or sets gridline type.
  26138. </summary>
  26139. <remarks>
  26140. Default is Dotted type.
  26141. </remarks>
  26142. </member>
  26143. <member name="P:Aspose.Cells.PdfSaveOptions.TextCrossType">
  26144. <summary>
  26145. Gets or sets displaying text type when the text width is larger than cell width.
  26146. </summary>
  26147. </member>
  26148. <member name="P:Aspose.Cells.PdfSaveOptions.IgnoreError">
  26149. <summary>
  26150. Indicates if you need to hide the error while rendering.
  26151. The error can be error in shape, image, chart rendering, etc.
  26152. </summary>
  26153. </member>
  26154. <member name="P:Aspose.Cells.PdfSaveOptions.OutputBlankPageWhenNothingToPrint">
  26155. <summary>
  26156. Indicates whether to output a blank page when there is nothing to print.
  26157. </summary>
  26158. <remarks>
  26159. Default is true.
  26160. </remarks>
  26161. </member>
  26162. <member name="P:Aspose.Cells.PdfSaveOptions.DrawObjectEventHandler">
  26163. <summary>
  26164. Implements this interface to get DrawObject and Bound when rendering.
  26165. </summary>
  26166. </member>
  26167. <member name="P:Aspose.Cells.PdfSaveOptions.CustomPropertiesExport">
  26168. <summary>
  26169. Gets or sets a value determining the way <see cref="T:Aspose.Cells.Properties.CustomDocumentPropertyCollection" /> are exported to PDF file. Default value is None.
  26170. </summary>
  26171. </member>
  26172. <member name="P:Aspose.Cells.PdfSaveOptions.ExportDocumentStructure">
  26173. <summary>
  26174. Gets or sets a value determining whether or not to export document structure.
  26175. </summary>
  26176. </member>
  26177. <member name="P:Aspose.Cells.PdfSaveOptions.PageSavingCallback">
  26178. <summary>
  26179. Control/Indicate progress of page saving process.
  26180. </summary>
  26181. </member>
  26182. <member name="P:Aspose.Cells.PdfSaveOptions.EmfRenderSetting">
  26183. <summary>
  26184. Setting for rendering Emf metafile.
  26185. </summary>
  26186. <remarks>
  26187. EMF metafiles identified as "EMF+ Dual" can contain both EMF+ records and EMF records.
  26188. Either type of record can be used to render the image, only EMF+ records, or only EMF records.
  26189. When <see cref="!:EmfRenderSetting.EmfPlusPrefer" /> is set, then EMF+ records will be parsed while rendering to pdf, otherwise only EMF records will be parsed.
  26190. Default value is <see cref="!:EmfRenderSetting.EmfOnly" />.
  26191. </remarks>
  26192. </member>
  26193. <member name="P:Aspose.Cells.PdfSaveOptions.DisplayDocTitle">
  26194. <summary>
  26195. Indicate whether the window's title bar should display the document title.
  26196. </summary>
  26197. <remarks>
  26198. If false, the title bar should instead display the name of the PDF file.
  26199. Default value is false.
  26200. </remarks>
  26201. </member>
  26202. <member name="P:Aspose.Cells.PdfSaveOptions.DefaultEditLanguage">
  26203. <summary>
  26204. Gets or sets default edit language.
  26205. </summary>
  26206. <remarks>
  26207. It may display/render different layouts for text paragraph when different edit languages is set.
  26208. Default is <see cref="!:DefaultEditLanguage.Auto" />.
  26209. </remarks>
  26210. </member>
  26211. <member name="T:Aspose.Cells.Drawing.Bevel">
  26212. <summary>
  26213. Represents a bevel of a shape
  26214. </summary>
  26215. </member>
  26216. <member name="P:Aspose.Cells.Drawing.Bevel.Width">
  26217. <summary>
  26218. Gets and sets the width of the bevel, or how far into the shape it is applied.
  26219. In unit of Points.
  26220. </summary>
  26221. </member>
  26222. <member name="P:Aspose.Cells.Drawing.Bevel.Height">
  26223. <summary>
  26224. Gets and sets the height of the bevel, or how far above the shape it is applied.
  26225. In unit of Points.
  26226. </summary>
  26227. </member>
  26228. <member name="P:Aspose.Cells.Drawing.Bevel.Type">
  26229. <summary>
  26230. Gets and sets the preset bevel type.
  26231. </summary>
  26232. </member>
  26233. <member name="T:Aspose.Cells.Drawing.BevelType">
  26234. <summary>
  26235. Represents a preset for a type of bevel which can be applied to a shape in 3D.
  26236. </summary>
  26237. </member>
  26238. <member name="F:Aspose.Cells.Drawing.BevelType.None">
  26239. <summary>
  26240. No bevel
  26241. </summary>
  26242. </member>
  26243. <member name="F:Aspose.Cells.Drawing.BevelType.Angle">
  26244. <summary>
  26245. Angle
  26246. </summary>
  26247. </member>
  26248. <member name="F:Aspose.Cells.Drawing.BevelType.ArtDeco">
  26249. <summary>
  26250. Art deco
  26251. </summary>
  26252. </member>
  26253. <member name="F:Aspose.Cells.Drawing.BevelType.Circle">
  26254. <summary>
  26255. Circle
  26256. </summary>
  26257. </member>
  26258. <member name="F:Aspose.Cells.Drawing.BevelType.Convex">
  26259. <summary>
  26260. Convex
  26261. </summary>
  26262. </member>
  26263. <member name="F:Aspose.Cells.Drawing.BevelType.CoolSlant">
  26264. <summary>
  26265. Cool slant
  26266. </summary>
  26267. </member>
  26268. <member name="F:Aspose.Cells.Drawing.BevelType.Cross">
  26269. <summary>
  26270. Cross
  26271. </summary>
  26272. </member>
  26273. <member name="F:Aspose.Cells.Drawing.BevelType.Divot">
  26274. <summary>
  26275. Divot
  26276. </summary>
  26277. </member>
  26278. <member name="F:Aspose.Cells.Drawing.BevelType.HardEdge">
  26279. <summary>
  26280. Hard edge
  26281. </summary>
  26282. </member>
  26283. <member name="F:Aspose.Cells.Drawing.BevelType.RelaxedInset">
  26284. <summary>
  26285. Relaxed inset
  26286. </summary>
  26287. </member>
  26288. <member name="F:Aspose.Cells.Drawing.BevelType.Riblet">
  26289. <summary>
  26290. Riblet
  26291. </summary>
  26292. </member>
  26293. <member name="F:Aspose.Cells.Drawing.BevelType.Slope">
  26294. <summary>
  26295. Slope
  26296. </summary>
  26297. </member>
  26298. <member name="F:Aspose.Cells.Drawing.BevelType.SoftRound">
  26299. <summary>
  26300. Soft round
  26301. </summary>
  26302. </member>
  26303. <member name="T:Aspose.Cells.Drawing.Format3D">
  26304. <summary>
  26305. This class specifies the 3D shape properties for a chart element or shape.
  26306. </summary>
  26307. </member>
  26308. <member name="M:Aspose.Cells.Drawing.Format3D.HasTopBevelData">
  26309. <summary>
  26310. Indicates if the shape has top bevel data.
  26311. </summary>
  26312. <returns>
  26313. </returns>
  26314. </member>
  26315. <member name="P:Aspose.Cells.Drawing.Format3D.TopBevel">
  26316. <summary>
  26317. Gets the <seealso cref="T:Aspose.Cells.Drawing.Bevel" /> object that holds the properties associated with defining a bevel on the top or front face of a shape.
  26318. </summary>
  26319. </member>
  26320. <member name="P:Aspose.Cells.Drawing.Format3D.SurfaceMaterialType">
  26321. <summary>
  26322. Gets and sets the material type which is combined with the lighting properties to give the final look and feel of a shape.
  26323. Default value is PresetMaterialType.WarmMatte.
  26324. </summary>
  26325. </member>
  26326. <member name="P:Aspose.Cells.Drawing.Format3D.SurfaceLightingType">
  26327. <summary>
  26328. Gets and sets the lighting type which is to be applied to the scene of the shape.
  26329. Default value is LightRigType.ThreePoint.
  26330. </summary>
  26331. </member>
  26332. <member name="P:Aspose.Cells.Drawing.Format3D.LightingAngle">
  26333. <summary>
  26334. Gets and sets the lighting angle. Range from 0 to 359.9 degrees.
  26335. </summary>
  26336. </member>
  26337. <member name="T:Aspose.Cells.Drawing.GlowEffect">
  26338. <summary>
  26339. This class specifies a glow effect, in which a color blurred outline
  26340. is added outside the edges of the object.
  26341. </summary>
  26342. </member>
  26343. <member name="P:Aspose.Cells.Drawing.GlowEffect.Color">
  26344. <summary>
  26345. Gets the color of the glow effect.
  26346. </summary>
  26347. </member>
  26348. <member name="P:Aspose.Cells.Drawing.GlowEffect.Radius">
  26349. <summary>
  26350. Gets and sets the radius of the glow, in unit of points.
  26351. </summary>
  26352. <remarks>NOTE: This member is now obsolete. Instead,
  26353. please use GlowEffect.Size property.
  26354. This property will be removed 6 months later since September 2016.
  26355. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  26356. </member>
  26357. <member name="P:Aspose.Cells.Drawing.GlowEffect.Size">
  26358. <summary>
  26359. Gets and sets the radius of the glow, in unit of points.
  26360. </summary>
  26361. </member>
  26362. <member name="P:Aspose.Cells.Drawing.GlowEffect.Transparency">
  26363. <summary>
  26364. Gets and sets the degree of transparency of the glow effect. Range from 0.0 (opaque) to 1.0 (clear).
  26365. </summary>
  26366. </member>
  26367. <member name="T:Aspose.Cells.Drawing.PresetCameraType">
  26368. <summary>
  26369. Represent different algorithmic methods for setting all camera properties, including position.
  26370. </summary>
  26371. </member>
  26372. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricBottomDown">
  26373. <summary>
  26374. </summary>
  26375. </member>
  26376. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricBottomUp">
  26377. <summary>
  26378. </summary>
  26379. </member>
  26380. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricLeftDown">
  26381. <summary>
  26382. </summary>
  26383. </member>
  26384. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricLeftUp">
  26385. <summary>
  26386. </summary>
  26387. </member>
  26388. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis1Left">
  26389. <summary>
  26390. </summary>
  26391. </member>
  26392. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis1Right">
  26393. <summary>
  26394. </summary>
  26395. </member>
  26396. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis1Top">
  26397. <summary>
  26398. </summary>
  26399. </member>
  26400. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis2Left">
  26401. <summary>
  26402. </summary>
  26403. </member>
  26404. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis2Right">
  26405. <summary>
  26406. </summary>
  26407. </member>
  26408. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis2Top">
  26409. <summary>
  26410. </summary>
  26411. </member>
  26412. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis3Bottom">
  26413. <summary>
  26414. </summary>
  26415. </member>
  26416. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis3Left">
  26417. <summary>
  26418. </summary>
  26419. </member>
  26420. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis3Right">
  26421. <summary>
  26422. </summary>
  26423. </member>
  26424. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis4Bottom">
  26425. <summary>
  26426. </summary>
  26427. </member>
  26428. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis4Left">
  26429. <summary>
  26430. </summary>
  26431. </member>
  26432. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricOffAxis4Right">
  26433. <summary>
  26434. </summary>
  26435. </member>
  26436. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricRightDown">
  26437. <summary>
  26438. </summary>
  26439. </member>
  26440. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricRightUp">
  26441. <summary>
  26442. </summary>
  26443. </member>
  26444. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricTopDown">
  26445. <summary>
  26446. </summary>
  26447. </member>
  26448. <member name="F:Aspose.Cells.Drawing.PresetCameraType.IsometricTopUp">
  26449. <summary>
  26450. </summary>
  26451. </member>
  26452. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueBottom">
  26453. <summary>
  26454. </summary>
  26455. </member>
  26456. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueBottomLeft">
  26457. <summary>
  26458. </summary>
  26459. </member>
  26460. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueBottomRight">
  26461. <summary>
  26462. </summary>
  26463. </member>
  26464. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueFront">
  26465. <summary>
  26466. </summary>
  26467. </member>
  26468. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueLeft">
  26469. <summary>
  26470. </summary>
  26471. </member>
  26472. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueRight">
  26473. <summary>
  26474. </summary>
  26475. </member>
  26476. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueTop">
  26477. <summary>
  26478. </summary>
  26479. </member>
  26480. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueTopLeft">
  26481. <summary>
  26482. </summary>
  26483. </member>
  26484. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyObliqueTopRight">
  26485. <summary>
  26486. </summary>
  26487. </member>
  26488. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveBottom">
  26489. <summary>
  26490. </summary>
  26491. </member>
  26492. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveBottomLeft">
  26493. <summary>
  26494. </summary>
  26495. </member>
  26496. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveBottomRight">
  26497. <summary>
  26498. </summary>
  26499. </member>
  26500. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveFront">
  26501. <summary>
  26502. </summary>
  26503. </member>
  26504. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveLeft">
  26505. <summary>
  26506. </summary>
  26507. </member>
  26508. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveRight">
  26509. <summary>
  26510. </summary>
  26511. </member>
  26512. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveTop">
  26513. <summary>
  26514. </summary>
  26515. </member>
  26516. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveTopLeft">
  26517. <summary>
  26518. </summary>
  26519. </member>
  26520. <member name="F:Aspose.Cells.Drawing.PresetCameraType.LegacyPerspectiveTopRight">
  26521. <summary>
  26522. </summary>
  26523. </member>
  26524. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueBottom">
  26525. <summary>
  26526. </summary>
  26527. </member>
  26528. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueBottomLeft">
  26529. <summary>
  26530. </summary>
  26531. </member>
  26532. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueBottomRight">
  26533. <summary>
  26534. </summary>
  26535. </member>
  26536. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueLeft">
  26537. <summary>
  26538. </summary>
  26539. </member>
  26540. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueRight">
  26541. <summary>
  26542. </summary>
  26543. </member>
  26544. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueTop">
  26545. <summary>
  26546. </summary>
  26547. </member>
  26548. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueTopLeft">
  26549. <summary>
  26550. </summary>
  26551. </member>
  26552. <member name="F:Aspose.Cells.Drawing.PresetCameraType.ObliqueTopRight">
  26553. <summary>
  26554. </summary>
  26555. </member>
  26556. <member name="F:Aspose.Cells.Drawing.PresetCameraType.OrthographicFront">
  26557. <summary>
  26558. </summary>
  26559. </member>
  26560. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveAbove">
  26561. <summary>
  26562. </summary>
  26563. </member>
  26564. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveAboveLeftFacing">
  26565. <summary>
  26566. </summary>
  26567. </member>
  26568. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveAboveRightFacing">
  26569. <summary>
  26570. </summary>
  26571. </member>
  26572. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveBelow">
  26573. <summary>
  26574. </summary>
  26575. </member>
  26576. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveContrastingLeftFacing">
  26577. <summary>
  26578. </summary>
  26579. </member>
  26580. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveContrastingRightFacing">
  26581. <summary>
  26582. </summary>
  26583. </member>
  26584. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveFront">
  26585. <summary>
  26586. </summary>
  26587. </member>
  26588. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveHeroicExtremeLeftFacing">
  26589. <summary>
  26590. </summary>
  26591. </member>
  26592. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveHeroicExtremeRightFacing">
  26593. <summary>
  26594. </summary>
  26595. </member>
  26596. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveHeroicLeftFacing">
  26597. <summary>
  26598. </summary>
  26599. </member>
  26600. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveHeroicRightFacing">
  26601. <summary>
  26602. </summary>
  26603. </member>
  26604. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveLeft">
  26605. <summary>
  26606. </summary>
  26607. </member>
  26608. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveRelaxed">
  26609. <summary>
  26610. </summary>
  26611. </member>
  26612. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveRelaxedModerately">
  26613. <summary>
  26614. </summary>
  26615. </member>
  26616. <member name="F:Aspose.Cells.Drawing.PresetCameraType.PerspectiveRight">
  26617. <summary>
  26618. </summary>
  26619. </member>
  26620. <member name="T:Aspose.Cells.Drawing.PresetShadowType">
  26621. <summary>
  26622. Represents preset shadow type.
  26623. </summary>
  26624. </member>
  26625. <member name="F:Aspose.Cells.Drawing.PresetShadowType.NoShadow">
  26626. <summary>
  26627. No shadow.
  26628. </summary>
  26629. </member>
  26630. <member name="F:Aspose.Cells.Drawing.PresetShadowType.Custom">
  26631. <summary>
  26632. Custom shadow.
  26633. </summary>
  26634. </member>
  26635. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetDiagonalBottomRight">
  26636. <summary>
  26637. Outer shadow offset diagonal bottom right.
  26638. </summary>
  26639. </member>
  26640. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetBottom">
  26641. <summary>
  26642. Outer shadow offset bottom.
  26643. </summary>
  26644. </member>
  26645. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetDiagonalBottomLeft">
  26646. <summary>
  26647. Outer shadow offset diagonal bottom left.
  26648. </summary>
  26649. </member>
  26650. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetRight">
  26651. <summary>
  26652. Outer shadow offset right.
  26653. </summary>
  26654. </member>
  26655. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetCenter">
  26656. <summary>
  26657. Outer shadow offset center.
  26658. </summary>
  26659. </member>
  26660. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetLeft">
  26661. <summary>
  26662. Outer shadow offset left.
  26663. </summary>
  26664. </member>
  26665. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetDiagonalTopRight">
  26666. <summary>
  26667. Outer shadow offset diagonal top right.
  26668. </summary>
  26669. </member>
  26670. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetTop">
  26671. <summary>
  26672. Outer shadow offset top.
  26673. </summary>
  26674. </member>
  26675. <member name="F:Aspose.Cells.Drawing.PresetShadowType.OffsetDiagonalTopLeft">
  26676. <summary>
  26677. Outer shadow offset diagonal top left.
  26678. </summary>
  26679. </member>
  26680. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideDiagonalTopLeft">
  26681. <summary>
  26682. Inner shadow inside diagonal top Left.
  26683. </summary>
  26684. </member>
  26685. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideTop">
  26686. <summary>
  26687. Inner shadow inside top.
  26688. </summary>
  26689. </member>
  26690. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideDiagonalTopRight">
  26691. <summary>
  26692. Inner shadow inside diagonal top right.
  26693. </summary>
  26694. </member>
  26695. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideLeft">
  26696. <summary>
  26697. Inner shadow inside left.
  26698. </summary>
  26699. </member>
  26700. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideCenter">
  26701. <summary>
  26702. Inner shadow inside center.
  26703. </summary>
  26704. </member>
  26705. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideRight">
  26706. <summary>
  26707. Inner shadow inside right.
  26708. </summary>
  26709. </member>
  26710. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideDiagonalBottomLeft">
  26711. <summary>
  26712. Inner shadow inside diagonal bottom left.
  26713. </summary>
  26714. </member>
  26715. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideBottom">
  26716. <summary>
  26717. Inner shadow inside bottom.
  26718. </summary>
  26719. </member>
  26720. <member name="F:Aspose.Cells.Drawing.PresetShadowType.InsideDiagonalBottomRight">
  26721. <summary>
  26722. Inner shadow inside diagonal bottom right.
  26723. </summary>
  26724. </member>
  26725. <member name="F:Aspose.Cells.Drawing.PresetShadowType.PerspectiveDiagonalUpperLeft">
  26726. <summary>
  26727. Outer shadow perspective diagonal upper left.
  26728. </summary>
  26729. </member>
  26730. <member name="F:Aspose.Cells.Drawing.PresetShadowType.PerspectiveDiagonalUpperRight">
  26731. <summary>
  26732. Outer shadow perspective diagonal upper right.
  26733. </summary>
  26734. </member>
  26735. <member name="F:Aspose.Cells.Drawing.PresetShadowType.Below">
  26736. <summary>
  26737. Outer shadow below.
  26738. </summary>
  26739. </member>
  26740. <member name="F:Aspose.Cells.Drawing.PresetShadowType.PerspectiveDiagonalLowerLeft">
  26741. <summary>
  26742. Outer shadow perspective diagonal lower left.
  26743. </summary>
  26744. </member>
  26745. <member name="F:Aspose.Cells.Drawing.PresetShadowType.PerspectiveDiagonalLowerRight">
  26746. <summary>
  26747. Outer shadow perspective diagonal lower right.
  26748. </summary>
  26749. </member>
  26750. <member name="T:Aspose.Cells.Drawing.ReflectionEffect">
  26751. <summary>
  26752. This class specifies a reflection effect.
  26753. </summary>
  26754. </member>
  26755. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Type">
  26756. <summary>
  26757. Gets and sets the preset reflection effect.
  26758. </summary>
  26759. </member>
  26760. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Transparency">
  26761. <summary>
  26762. Gets and sets the degree of the starting reflection transparency as a value from 0.0 (opaque) through 1.0 (clear).
  26763. </summary>
  26764. </member>
  26765. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Size">
  26766. <summary>
  26767. Gets and sets the end position (along the alpha gradient ramp) of the end alpha value,in unit of percentage
  26768. </summary>
  26769. </member>
  26770. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Blur">
  26771. <summary>
  26772. Gets and sets the blur radius,in unit of points.
  26773. </summary>
  26774. </member>
  26775. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Direction">
  26776. <summary>
  26777. Gets and sets the direction of the alpha gradient ramp relative to the shape itself.
  26778. </summary>
  26779. </member>
  26780. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.Distance">
  26781. <summary>
  26782. Gets and sets how far to distance the shadow,in unit of points.
  26783. </summary>
  26784. </member>
  26785. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.FadeDirection">
  26786. <summary>
  26787. Gets and sets the direction to offset the reflection.
  26788. </summary>
  26789. </member>
  26790. <member name="P:Aspose.Cells.Drawing.ReflectionEffect.RotWithShape">
  26791. <summary>
  26792. Gets and sets if the reflection should rotate with the shape.
  26793. </summary>
  26794. </member>
  26795. <member name="T:Aspose.Cells.Drawing.ShadowEffect">
  26796. <summary>
  26797. This class specifies the shadow effect of the chart element or shape.
  26798. </summary>
  26799. </member>
  26800. <member name="P:Aspose.Cells.Drawing.ShadowEffect.PresetType">
  26801. <summary>
  26802. Gets and sets the preset shadow type of the shadow.
  26803. </summary>
  26804. </member>
  26805. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Color">
  26806. <summary>
  26807. Gets and sets the color of the shadow.
  26808. </summary>
  26809. </member>
  26810. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Transparency">
  26811. <summary>
  26812. Gets and sets the degree of transparency of the shadow. Range from 0.0 (opaque) to 1.0 (clear).
  26813. </summary>
  26814. </member>
  26815. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Size">
  26816. <summary>
  26817. Gets and sets the size of the shadow. Range from 0 to 2.0.
  26818. Meaningless in inner shadow.
  26819. </summary>
  26820. </member>
  26821. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Blur">
  26822. <summary>
  26823. Gets and sets the blur of the shadow. Range from 0 to 100 points.
  26824. </summary>
  26825. </member>
  26826. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Angle">
  26827. <summary>
  26828. Gets and sets the lighting angle. Range from 0 to 359.9 degrees.
  26829. </summary>
  26830. </member>
  26831. <member name="P:Aspose.Cells.Drawing.ShadowEffect.Distance">
  26832. <summary>
  26833. Gets and sets the distance of the shadow. Range from 0 to 200 points.
  26834. </summary>
  26835. </member>
  26836. <member name="T:Aspose.Cells.Drawing.PresetMaterialType">
  26837. <summary>
  26838. Describes surface appearance of a shape.
  26839. </summary>
  26840. </member>
  26841. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Clear">
  26842. <summary>
  26843. Clear
  26844. </summary>
  26845. </member>
  26846. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.DarkEdge">
  26847. <summary>
  26848. Dark edge
  26849. </summary>
  26850. </member>
  26851. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Flat">
  26852. <summary>
  26853. Flat
  26854. </summary>
  26855. </member>
  26856. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.LegacyMatte">
  26857. <summary>
  26858. Legacy matte
  26859. </summary>
  26860. </member>
  26861. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.LegacyMetal">
  26862. <summary>
  26863. Legacy metal
  26864. </summary>
  26865. </member>
  26866. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.LegacyPlastic">
  26867. <summary>
  26868. Legacy plastic
  26869. </summary>
  26870. </member>
  26871. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.LegacyWireframe">
  26872. <summary>
  26873. Legacy wireframe
  26874. </summary>
  26875. </member>
  26876. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Matte">
  26877. <summary>
  26878. Matte
  26879. </summary>
  26880. </member>
  26881. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Metal">
  26882. <summary>
  26883. Metal
  26884. </summary>
  26885. </member>
  26886. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Plastic">
  26887. <summary>
  26888. Plastic
  26889. </summary>
  26890. </member>
  26891. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.Powder">
  26892. <summary>
  26893. Powder
  26894. </summary>
  26895. </member>
  26896. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.SoftEdge">
  26897. <summary>
  26898. Soft edge
  26899. </summary>
  26900. </member>
  26901. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.SoftMetal">
  26902. <summary>
  26903. Soft metal
  26904. </summary>
  26905. </member>
  26906. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.TranslucentPowder">
  26907. <summary>
  26908. Translucent powder
  26909. </summary>
  26910. </member>
  26911. <member name="F:Aspose.Cells.Drawing.PresetMaterialType.WarmMatte">
  26912. <summary>
  26913. Warm matte
  26914. </summary>
  26915. </member>
  26916. <member name="T:Aspose.Cells.Drawing.RectangleAlignmentType">
  26917. <summary>
  26918. Represents how to position two rectangles relative to each other.
  26919. </summary>
  26920. </member>
  26921. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.Bottom">
  26922. <summary>
  26923. Bottom
  26924. </summary>
  26925. </member>
  26926. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.BottomLeft">
  26927. <summary>
  26928. BottomLeft
  26929. </summary>
  26930. </member>
  26931. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.BottomRight">
  26932. <summary>
  26933. BottomRight
  26934. </summary>
  26935. </member>
  26936. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.Center">
  26937. <summary>
  26938. Center
  26939. </summary>
  26940. </member>
  26941. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.Left">
  26942. <summary>
  26943. Left
  26944. </summary>
  26945. </member>
  26946. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.Right">
  26947. <summary>
  26948. Right
  26949. </summary>
  26950. </member>
  26951. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.Top">
  26952. <summary>
  26953. Top
  26954. </summary>
  26955. </member>
  26956. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.TopLeft">
  26957. <summary>
  26958. TopLeft
  26959. </summary>
  26960. </member>
  26961. <member name="F:Aspose.Cells.Drawing.RectangleAlignmentType.TopRight">
  26962. <summary>
  26963. TopRight
  26964. </summary>
  26965. </member>
  26966. <member name="T:Aspose.Cells.Drawing.ShapePropertyCollection">
  26967. <summary>
  26968. This class specifies the visual shape properties for a chart element or shape.
  26969. </summary>
  26970. </member>
  26971. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.ClearGlowEffect">
  26972. <summary>
  26973. Clears the glow effect of the shape.
  26974. </summary>
  26975. </member>
  26976. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.HasGlowEffect">
  26977. <summary>
  26978. Indicates if the shape has glow effect data.
  26979. </summary>
  26980. <returns>
  26981. </returns>
  26982. </member>
  26983. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.HasFormat3D">
  26984. <summary>
  26985. Indicates if the shape has 3d format data.
  26986. </summary>
  26987. <returns>
  26988. </returns>
  26989. </member>
  26990. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.ClearFormat3D">
  26991. <summary>
  26992. Clears the 3D shape properties of the shape.
  26993. </summary>
  26994. </member>
  26995. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.ClearShadowEffect">
  26996. <summary>
  26997. Clears the shadow effect of the chart element or shape.
  26998. </summary>
  26999. </member>
  27000. <member name="M:Aspose.Cells.Drawing.ShapePropertyCollection.HasShadowEffect">
  27001. <summary>
  27002. Indicates if the shape has shadow effect data.
  27003. </summary>
  27004. <returns>
  27005. </returns>
  27006. </member>
  27007. <member name="P:Aspose.Cells.Drawing.ShapePropertyCollection.GlowEffect">
  27008. <summary>
  27009. Represents a <seealso cref="P:Aspose.Cells.Drawing.ShapePropertyCollection.GlowEffect" /> object that specifies glow effect for the chart element or shape.
  27010. </summary>
  27011. </member>
  27012. <member name="P:Aspose.Cells.Drawing.ShapePropertyCollection.Format3D">
  27013. <summary>
  27014. Represents a <seealso cref="P:Aspose.Cells.Drawing.ShapePropertyCollection.Format3D" /> object that specifies 3D shape properties for the chart element or shape.
  27015. </summary>
  27016. </member>
  27017. <member name="P:Aspose.Cells.Drawing.ShapePropertyCollection.SoftEdgeRadius">
  27018. <summary>
  27019. Gets and sets the radius of blur to apply to the edges, in unit of points.
  27020. </summary>
  27021. </member>
  27022. <member name="P:Aspose.Cells.Drawing.ShapePropertyCollection.ShadowEffect">
  27023. <summary>
  27024. Represents a <seealso cref="P:Aspose.Cells.Drawing.ShapePropertyCollection.ShadowEffect" /> object that specifies shadow effect for the chart element or shape.
  27025. </summary>
  27026. </member>
  27027. <member name="T:Aspose.Cells.FontSchemeType">
  27028. <summary>
  27029. Represents the scheme type of the font.
  27030. </summary>
  27031. </member>
  27032. <member name="F:Aspose.Cells.FontSchemeType.None">
  27033. <summary>
  27034. None
  27035. </summary>
  27036. </member>
  27037. <member name="F:Aspose.Cells.FontSchemeType.Major">
  27038. <summary>
  27039. Major scheme.
  27040. </summary>
  27041. </member>
  27042. <member name="F:Aspose.Cells.FontSchemeType.Minor">
  27043. <summary>
  27044. Minor scheme.
  27045. </summary>
  27046. <remarks>
  27047. The font's name will be automatically changed with the language.
  27048. </remarks>
  27049. </member>
  27050. <member name="T:Aspose.Cells.ReferredAreaCollection">
  27051. <summary>
  27052. Represents all referred cells and areas.
  27053. </summary>
  27054. </member>
  27055. <member name="P:Aspose.Cells.ReferredAreaCollection.Item(System.Int32)">
  27056. <summary>
  27057. </summary>
  27058. <param name="index">
  27059. </param>
  27060. <returns>
  27061. </returns>
  27062. </member>
  27063. <member name="T:Aspose.Cells.SaveFormat">
  27064. <summary>
  27065. Represents the format in which the workbook is saved.
  27066. </summary>
  27067. </member>
  27068. <member name="F:Aspose.Cells.SaveFormat.CSV">
  27069. <summary>
  27070. Represents a CSV file.
  27071. </summary>
  27072. </member>
  27073. <member name="F:Aspose.Cells.SaveFormat.Xlsx">
  27074. <summary>
  27075. Represents an xlsx file.
  27076. </summary>
  27077. </member>
  27078. <member name="F:Aspose.Cells.SaveFormat.Xlsm">
  27079. <summary>
  27080. Represents an xlsm file which enable macros.
  27081. </summary>
  27082. </member>
  27083. <member name="F:Aspose.Cells.SaveFormat.Xltx">
  27084. <summary>
  27085. Represents an xltx file.
  27086. </summary>
  27087. </member>
  27088. <member name="F:Aspose.Cells.SaveFormat.Xltm">
  27089. <summary>
  27090. Represents an xltm file which enable macros.
  27091. </summary>
  27092. </member>
  27093. <member name="F:Aspose.Cells.SaveFormat.Xlam">
  27094. <summary>
  27095. Represents an xltm file which enable addin macros.
  27096. </summary>
  27097. </member>
  27098. <member name="F:Aspose.Cells.SaveFormat.TSV">
  27099. <summary>
  27100. Represents a TSV(tab-separated values file) file.
  27101. </summary>
  27102. </member>
  27103. <member name="F:Aspose.Cells.SaveFormat.TabDelimited">
  27104. <summary>
  27105. Represents a tab delimited text file, same with <see cref="F:Aspose.Cells.SaveFormat.TSV" />.
  27106. </summary>
  27107. </member>
  27108. <member name="F:Aspose.Cells.SaveFormat.Html">
  27109. <summary>
  27110. Represents a html file.
  27111. </summary>
  27112. </member>
  27113. <member name="F:Aspose.Cells.SaveFormat.MHtml">
  27114. <summary>
  27115. Represents a mhtml file.
  27116. </summary>
  27117. </member>
  27118. <member name="F:Aspose.Cells.SaveFormat.ODS">
  27119. <summary>
  27120. Represents a ods file.
  27121. </summary>
  27122. </member>
  27123. <member name="F:Aspose.Cells.SaveFormat.Excel97To2003">
  27124. <summary>
  27125. Represents an Excel97-2003 xls file.
  27126. </summary>
  27127. </member>
  27128. <member name="F:Aspose.Cells.SaveFormat.SpreadsheetML">
  27129. <summary>
  27130. Represents an Excel 2003 xml file.
  27131. </summary>
  27132. </member>
  27133. <member name="F:Aspose.Cells.SaveFormat.Xlsb">
  27134. <summary>
  27135. Represents an xlsb file.
  27136. </summary>
  27137. </member>
  27138. <member name="F:Aspose.Cells.SaveFormat.Auto">
  27139. <summary>
  27140. If saving the file to the disk,the file format accords to the extension of the file name.
  27141. If saving the file to the stream, the file format is xlsx.
  27142. </summary>
  27143. </member>
  27144. <member name="F:Aspose.Cells.SaveFormat.Unknown">
  27145. <summary>
  27146. Represents unrecognized format, cannot be saved.
  27147. </summary>
  27148. </member>
  27149. <member name="F:Aspose.Cells.SaveFormat.Pdf">
  27150. <summary>
  27151. Represents a Pdf file.
  27152. </summary>
  27153. </member>
  27154. <member name="F:Aspose.Cells.SaveFormat.XPS">
  27155. <summary>
  27156. Represents an XPS file.
  27157. </summary>
  27158. </member>
  27159. <member name="F:Aspose.Cells.SaveFormat.TIFF">
  27160. <summary>
  27161. Represents an TIFF file.
  27162. </summary>
  27163. </member>
  27164. <member name="F:Aspose.Cells.SaveFormat.SVG">
  27165. <summary>
  27166. Represents an SVG file.
  27167. </summary>
  27168. </member>
  27169. <member name="F:Aspose.Cells.SaveFormat.Dif">
  27170. <summary>
  27171. Data Interchange Format.
  27172. </summary>
  27173. </member>
  27174. <member name="F:Aspose.Cells.SaveFormat.Numbers">
  27175. <summary>
  27176. Represents a numbers file.
  27177. </summary>
  27178. </member>
  27179. <member name="F:Aspose.Cells.SaveFormat.Markdown">
  27180. <summary>
  27181. Represents markdown document.
  27182. </summary>
  27183. </member>
  27184. <member name="F:Aspose.Cells.SaveFormat.FODS">
  27185. <summary>
  27186. Represents the flat ods file.
  27187. </summary>
  27188. </member>
  27189. <member name="F:Aspose.Cells.SaveFormat.SXC">
  27190. <summary>
  27191. Represents StarOffice Calc Spreadsheet (.sxc) file format.
  27192. </summary>
  27193. </member>
  27194. <member name="F:Aspose.Cells.SaveFormat.Pptx">
  27195. <summary>
  27196. Represents .pptx file.
  27197. </summary>
  27198. </member>
  27199. <!-- Badly formed XML comment ignored for member "F:Aspose.Cells.SaveFormat.Docx" -->
  27200. <member name="T:Aspose.Cells.Charts.Sparkline">
  27201. <summary>
  27202. A sparkline represents a tiny chart or graphic in a worksheet cell that provides a visual representation of data.
  27203. </summary>
  27204. </member>
  27205. <member name="M:Aspose.Cells.Charts.Sparkline.ToImage(Aspose.Cells.Rendering.ImageOrPrintOptions)">
  27206. <summary>
  27207. Converts a sparkline to an image.
  27208. </summary>
  27209. <param name="options">The image options</param>
  27210. <returns>Returns a <see cref="T:System.Drawing.Bitmap" /> object.</returns>
  27211. </member>
  27212. <member name="M:Aspose.Cells.Charts.Sparkline.ToImage(System.String,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  27213. <summary>
  27214. Converts a sparkline to an image.
  27215. </summary>
  27216. <param name="fileName">The image file name.</param>
  27217. <param name="options">The image options</param>
  27218. </member>
  27219. <member name="M:Aspose.Cells.Charts.Sparkline.ToImage(System.IO.Stream,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  27220. <summary>
  27221. Converts a sparkline to an image.
  27222. </summary>
  27223. <param name="stream">The image stream.</param>
  27224. <param name="options">The image options.</param>
  27225. </member>
  27226. <member name="P:Aspose.Cells.Charts.Sparkline.DataRange">
  27227. <summary>
  27228. Represents the data range of the sparkline.
  27229. </summary>
  27230. </member>
  27231. <member name="P:Aspose.Cells.Charts.Sparkline.Row">
  27232. <summary>
  27233. Gets the row index of the sparkline.
  27234. </summary>
  27235. </member>
  27236. <member name="P:Aspose.Cells.Charts.Sparkline.Column">
  27237. <summary>
  27238. Gets the column index of the sparkline.
  27239. </summary>
  27240. </member>
  27241. <member name="T:Aspose.Cells.Charts.SparklineAxisMinMaxType">
  27242. <summary>
  27243. Represents the minimum and maximum value types for the sparkline vertical axis.
  27244. </summary>
  27245. </member>
  27246. <member name="F:Aspose.Cells.Charts.SparklineAxisMinMaxType.AutoIndividual">
  27247. <summary>
  27248. Automatic for each sparkline.
  27249. </summary>
  27250. </member>
  27251. <member name="F:Aspose.Cells.Charts.SparklineAxisMinMaxType.Group">
  27252. <summary>
  27253. Same for all sparklines in the group.
  27254. </summary>
  27255. </member>
  27256. <member name="F:Aspose.Cells.Charts.SparklineAxisMinMaxType.Custom">
  27257. <summary>
  27258. Custom value for sparkline.
  27259. </summary>
  27260. </member>
  27261. <member name="T:Aspose.Cells.Charts.SparklineCollection">
  27262. <summary>
  27263. Encapsulates a collection of <see cref="T:Aspose.Cells.Charts.Sparkline" /> objects.
  27264. </summary>
  27265. </member>
  27266. <member name="M:Aspose.Cells.Charts.SparklineCollection.Add(System.String,System.Int32,System.Int32)">
  27267. <summary>
  27268. Add a sparkline.
  27269. </summary>
  27270. <param name="dataRange">Specifies the new data range of the sparkline.</param>
  27271. <param name="row">The row index of the location.</param>
  27272. <param name="column">The column index of the location.</param>
  27273. </member>
  27274. <member name="M:Aspose.Cells.Charts.SparklineCollection.Remove(System.Object)">
  27275. <summary>
  27276. Removes the sparkline
  27277. </summary>
  27278. <param name="o">
  27279. </param>
  27280. </member>
  27281. <member name="P:Aspose.Cells.Charts.SparklineCollection.Item(System.Int32)">
  27282. <summary>
  27283. Gets the <see cref="T:Aspose.Cells.Charts.Sparkline" /> element at the specified index.
  27284. </summary>
  27285. <param name="index">The zero based index of the element.</param>
  27286. <returns>The element at the specified index.</returns>
  27287. </member>
  27288. <member name="T:Aspose.Cells.Charts.SparklineGroup">
  27289. <summary>
  27290. <see cref="T:Aspose.Cells.Charts.Sparkline" /> is organized into sparkline group. A SparklineGroup contains a variable number of sparkline items.
  27291. A sparkline group specifies the type, display settings and axis settings for the sparklines.
  27292. </summary>
  27293. </member>
  27294. <member name="M:Aspose.Cells.Charts.SparklineGroup.ResetRanges(System.String,System.Boolean,Aspose.Cells.CellArea)">
  27295. <summary>
  27296. Resets the data range and location range of the sparkline group.
  27297. This method will clear original sparkline items in the group and creates new sparkline items for the new ranges.
  27298. </summary>
  27299. <param name="dataRange">Specifies the new data range of the sparkline group.</param>
  27300. <param name="isVertical">Specifies whether to plot the sparklines from the new data range by row or by column.</param>
  27301. <param name="locationRange">Specifies where the sparklines to be placed.</param>
  27302. </member>
  27303. <member name="P:Aspose.Cells.Charts.SparklineGroup.PresetStyle">
  27304. <summary>
  27305. Gets and sets the preset style type of the sparkline group.
  27306. </summary>
  27307. </member>
  27308. <member name="P:Aspose.Cells.Charts.SparklineGroup.SparklineCollection">
  27309. <summary>
  27310. Gets the <see cref="P:Aspose.Cells.Charts.SparklineGroup.SparklineCollection" /> object of the sparkline group.
  27311. </summary>
  27312. </member>
  27313. <member name="P:Aspose.Cells.Charts.SparklineGroup.Type">
  27314. <summary>
  27315. Indicates the sparkline type of the sparkline group.
  27316. </summary>
  27317. </member>
  27318. <member name="P:Aspose.Cells.Charts.SparklineGroup.PlotEmptyCellsType">
  27319. <summary>
  27320. Indicates how to plot empty cells.
  27321. </summary>
  27322. </member>
  27323. <member name="P:Aspose.Cells.Charts.SparklineGroup.DisplayHidden">
  27324. <summary>
  27325. Indicates whether to show data in hidden rows and columns.
  27326. </summary>
  27327. </member>
  27328. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowHighPoint">
  27329. <summary>
  27330. Indicates whether to highlight the highest points of data in the sparkline group.
  27331. </summary>
  27332. </member>
  27333. <member name="P:Aspose.Cells.Charts.SparklineGroup.HighPointColor">
  27334. <summary>
  27335. Gets and sets the color of the highest points of data in the sparkline group.
  27336. </summary>
  27337. </member>
  27338. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowLowPoint">
  27339. <summary>
  27340. Indicates whether to highlight the lowest points of data in the sparkline group.
  27341. </summary>
  27342. </member>
  27343. <member name="P:Aspose.Cells.Charts.SparklineGroup.LowPointColor">
  27344. <summary>
  27345. Gets and sets the color of the lowest points of data in the sparkline group.
  27346. </summary>
  27347. </member>
  27348. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowNegativePoints">
  27349. <summary>
  27350. Indicates whether to highlight the negative values on the sparkline group with a different color or marker.
  27351. </summary>
  27352. </member>
  27353. <member name="P:Aspose.Cells.Charts.SparklineGroup.NegativePointsColor">
  27354. <summary>
  27355. Gets and sets the color of the negative values on the sparkline group.
  27356. </summary>
  27357. </member>
  27358. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowFirstPoint">
  27359. <summary>
  27360. Indicates whether to highlight the first point of data in the sparkline group.
  27361. </summary>
  27362. </member>
  27363. <member name="P:Aspose.Cells.Charts.SparklineGroup.FirstPointColor">
  27364. <summary>
  27365. Gets and sets the color of the first point of data in the sparkline group.
  27366. </summary>
  27367. </member>
  27368. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowLastPoint">
  27369. <summary>
  27370. Indicates whether to highlight the last point of data in the sparkline group.
  27371. </summary>
  27372. </member>
  27373. <member name="P:Aspose.Cells.Charts.SparklineGroup.LastPointColor">
  27374. <summary>
  27375. Gets and sets the color of the last point of data in the sparkline group.
  27376. </summary>
  27377. </member>
  27378. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowMarkers">
  27379. <summary>
  27380. Indicates whether to highlight each point in each line sparkline in the sparkline group.
  27381. </summary>
  27382. </member>
  27383. <member name="P:Aspose.Cells.Charts.SparklineGroup.MarkersColor">
  27384. <summary>
  27385. Gets and sets the color of points in each line sparkline in the sparkline group.
  27386. </summary>
  27387. </member>
  27388. <member name="P:Aspose.Cells.Charts.SparklineGroup.SeriesColor">
  27389. <summary>
  27390. Gets and sets the color of the sparklines in the sparkline group.
  27391. </summary>
  27392. </member>
  27393. <member name="P:Aspose.Cells.Charts.SparklineGroup.PlotRightToLeft">
  27394. <summary>
  27395. Indicates whether the plot data is right to left.
  27396. </summary>
  27397. </member>
  27398. <member name="P:Aspose.Cells.Charts.SparklineGroup.LineWeight">
  27399. <summary>
  27400. Gets and sets the line weight in each line sparkline in the sparkline group, in the unit of points.
  27401. </summary>
  27402. </member>
  27403. <member name="P:Aspose.Cells.Charts.SparklineGroup.HorizontalAxisColor">
  27404. <summary>
  27405. Gets and sets the color of the horizontal axis in the sparkline group.
  27406. </summary>
  27407. </member>
  27408. <member name="P:Aspose.Cells.Charts.SparklineGroup.ShowHorizontalAxis">
  27409. <summary>
  27410. Indicates whether to show the sparkline horizontal axis.
  27411. The horizontal axis appears if the sparkline has data that crosses the zero axis.
  27412. </summary>
  27413. </member>
  27414. <member name="P:Aspose.Cells.Charts.SparklineGroup.HorizontalAxisDateRange">
  27415. <summary>
  27416. Represents the range that contains the date values for the sparkline data.
  27417. </summary>
  27418. </member>
  27419. <member name="P:Aspose.Cells.Charts.SparklineGroup.VerticalAxisMaxValueType">
  27420. <summary>
  27421. Represents the vertical axis maximum value type.
  27422. </summary>
  27423. </member>
  27424. <member name="P:Aspose.Cells.Charts.SparklineGroup.VerticalAxisMaxValue">
  27425. <summary>
  27426. Gets and sets the custom maximum value for the vertical axis.
  27427. </summary>
  27428. </member>
  27429. <member name="P:Aspose.Cells.Charts.SparklineGroup.VerticalAxisMinValueType">
  27430. <summary>
  27431. Represents the vertical axis minimum value type.
  27432. </summary>
  27433. </member>
  27434. <member name="P:Aspose.Cells.Charts.SparklineGroup.VerticalAxisMinValue">
  27435. <summary>
  27436. Gets and sets the custom minimum value for the vertical axis.
  27437. </summary>
  27438. </member>
  27439. <member name="T:Aspose.Cells.Charts.SparklineGroupCollection">
  27440. <summary>
  27441. Encapsulates a collection of <see cref="T:Aspose.Cells.Charts.SparklineGroup" /> objects.
  27442. </summary>
  27443. </member>
  27444. <member name="M:Aspose.Cells.Charts.SparklineGroupCollection.Add(Aspose.Cells.Charts.SparklineType,System.String,System.Boolean,Aspose.Cells.CellArea)">
  27445. <summary>
  27446. Adds an <see cref="T:Aspose.Cells.Charts.SparklineGroup" /> item to the collection.
  27447. </summary>
  27448. <param name="type">Specifies the type of the Sparkline group.</param>
  27449. <param name="dataRange">Specifies the data range of the sparkline group.</param>
  27450. <param name="isVertical">Specifies whether to plot the sparklines from the data range by row or by column.</param>
  27451. <param name="locationRange">Specifies where the sparklines to be placed.</param>
  27452. <returns>
  27453. <see cref="T:Aspose.Cells.Charts.SparklineGroup" /> object index.</returns>
  27454. </member>
  27455. <member name="M:Aspose.Cells.Charts.SparklineGroupCollection.ClearSparklines(Aspose.Cells.CellArea)">
  27456. <summary>
  27457. Clears the sparklines that is inside an area of cells.
  27458. </summary>
  27459. <param name="cellArea">Specifies the area of cells</param>
  27460. </member>
  27461. <member name="M:Aspose.Cells.Charts.SparklineGroupCollection.ClearSparklineGroups(Aspose.Cells.CellArea)">
  27462. <summary>
  27463. Clears the sparkline groups that overlaps an area of cells.
  27464. </summary>
  27465. <param name="cellArea">Specifies the area of cells</param>
  27466. </member>
  27467. <member name="P:Aspose.Cells.Charts.SparklineGroupCollection.Item(System.Int32)">
  27468. <summary>
  27469. Gets the <see cref="T:Aspose.Cells.Charts.SparklineGroup" /> element at the specified index.
  27470. </summary>
  27471. <param name="index">The zero based index of the element.</param>
  27472. <returns>The element at the specified index.</returns>
  27473. </member>
  27474. <member name="T:Aspose.Cells.Charts.SparklinePresetStyleType">
  27475. <summary>
  27476. Represents the preset style types for sparkline.
  27477. </summary>
  27478. </member>
  27479. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style1">
  27480. <summary>
  27481. Style 1
  27482. </summary>
  27483. </member>
  27484. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style2">
  27485. <summary>
  27486. Style 2
  27487. </summary>
  27488. </member>
  27489. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style3">
  27490. <summary>
  27491. Style 3
  27492. </summary>
  27493. </member>
  27494. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style4">
  27495. <summary>
  27496. Style 4
  27497. </summary>
  27498. </member>
  27499. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style5">
  27500. <summary>
  27501. Style 5
  27502. </summary>
  27503. </member>
  27504. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style6">
  27505. <summary>
  27506. Style 6
  27507. </summary>
  27508. </member>
  27509. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style7">
  27510. <summary>
  27511. Style 7
  27512. </summary>
  27513. </member>
  27514. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style8">
  27515. <summary>
  27516. Style 8
  27517. </summary>
  27518. </member>
  27519. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style9">
  27520. <summary>
  27521. Style 9
  27522. </summary>
  27523. </member>
  27524. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style10">
  27525. <summary>
  27526. Style 10
  27527. </summary>
  27528. </member>
  27529. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style11">
  27530. <summary>
  27531. Style 11
  27532. </summary>
  27533. </member>
  27534. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style12">
  27535. <summary>
  27536. Style 12
  27537. </summary>
  27538. </member>
  27539. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style13">
  27540. <summary>
  27541. Style 13
  27542. </summary>
  27543. </member>
  27544. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style14">
  27545. <summary>
  27546. Style 14
  27547. </summary>
  27548. </member>
  27549. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style15">
  27550. <summary>
  27551. Style 15
  27552. </summary>
  27553. </member>
  27554. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style16">
  27555. <summary>
  27556. Style 16
  27557. </summary>
  27558. </member>
  27559. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style17">
  27560. <summary>
  27561. Style 17
  27562. </summary>
  27563. </member>
  27564. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style18">
  27565. <summary>
  27566. Style 18
  27567. </summary>
  27568. </member>
  27569. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style19">
  27570. <summary>
  27571. Style 19
  27572. </summary>
  27573. </member>
  27574. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style20">
  27575. <summary>
  27576. Style 20
  27577. </summary>
  27578. </member>
  27579. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style21">
  27580. <summary>
  27581. Style 21
  27582. </summary>
  27583. </member>
  27584. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style22">
  27585. <summary>
  27586. Style 22
  27587. </summary>
  27588. </member>
  27589. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style23">
  27590. <summary>
  27591. Style 23
  27592. </summary>
  27593. </member>
  27594. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style24">
  27595. <summary>
  27596. Style 24
  27597. </summary>
  27598. </member>
  27599. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style25">
  27600. <summary>
  27601. Style 25
  27602. </summary>
  27603. </member>
  27604. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style26">
  27605. <summary>
  27606. Style 26
  27607. </summary>
  27608. </member>
  27609. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style27">
  27610. <summary>
  27611. Style 27
  27612. </summary>
  27613. </member>
  27614. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style28">
  27615. <summary>
  27616. Style 28
  27617. </summary>
  27618. </member>
  27619. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style29">
  27620. <summary>
  27621. Style 29
  27622. </summary>
  27623. </member>
  27624. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style30">
  27625. <summary>
  27626. Style 30
  27627. </summary>
  27628. </member>
  27629. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style31">
  27630. <summary>
  27631. Style 31
  27632. </summary>
  27633. </member>
  27634. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style32">
  27635. <summary>
  27636. Style 32
  27637. </summary>
  27638. </member>
  27639. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style33">
  27640. <summary>
  27641. Style 33
  27642. </summary>
  27643. </member>
  27644. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style34">
  27645. <summary>
  27646. Style 34
  27647. </summary>
  27648. </member>
  27649. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style35">
  27650. <summary>
  27651. Style 35
  27652. </summary>
  27653. </member>
  27654. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Style36">
  27655. <summary>
  27656. Style 36
  27657. </summary>
  27658. </member>
  27659. <member name="F:Aspose.Cells.Charts.SparklinePresetStyleType.Custom">
  27660. <summary>
  27661. No preset style.
  27662. </summary>
  27663. </member>
  27664. <member name="T:Aspose.Cells.Charts.SparklineType">
  27665. <summary>
  27666. Represents the sparkline types.
  27667. </summary>
  27668. </member>
  27669. <member name="F:Aspose.Cells.Charts.SparklineType.Line">
  27670. <summary>
  27671. Line sparkline.
  27672. </summary>
  27673. </member>
  27674. <member name="F:Aspose.Cells.Charts.SparklineType.Column">
  27675. <summary>
  27676. Column sparkline.
  27677. </summary>
  27678. </member>
  27679. <member name="F:Aspose.Cells.Charts.SparklineType.Stacked">
  27680. <summary>
  27681. Win/Loss sparkline.
  27682. </summary>
  27683. </member>
  27684. <member name="T:Aspose.Cells.SpreadsheetML2003SaveOptions">
  27685. <summary>
  27686. Represents the options for saving Excel 2003 spreadml file.
  27687. </summary>
  27688. </member>
  27689. <member name="M:Aspose.Cells.SpreadsheetML2003SaveOptions.#ctor">
  27690. <summary>
  27691. Creates the options for saving Excel 2003 spreadml file.
  27692. </summary>
  27693. </member>
  27694. <member name="M:Aspose.Cells.SpreadsheetML2003SaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  27695. <summary>
  27696. Creates the options for saving Excel 2003 spreadml file.
  27697. </summary>
  27698. <param name="saveFormat">The save format.</param>
  27699. </member>
  27700. <member name="P:Aspose.Cells.SpreadsheetML2003SaveOptions.IsIndentedFormatting">
  27701. <summary>
  27702. Causes child elements to be indented.
  27703. </summary>
  27704. <remarks>
  27705. The default value is true.
  27706. If the value is false, it will reduce the size of the xml file
  27707. </remarks>
  27708. </member>
  27709. <member name="P:Aspose.Cells.SpreadsheetML2003SaveOptions.LimitAsXls">
  27710. <summary>
  27711. Limit as xls, the max row index is 65535 and the max column index is 255.
  27712. </summary>
  27713. </member>
  27714. <member name="P:Aspose.Cells.SpreadsheetML2003SaveOptions.ExportColumnIndexOfCell">
  27715. <summary>
  27716. The default value is false, it means that column index will be ignored if the cell is contiguous to the previous cell.
  27717. </summary>
  27718. </member>
  27719. <member name="T:Aspose.Cells.BuiltinStyleType">
  27720. <summary>
  27721. Represents all built-in style type
  27722. </summary>
  27723. </member>
  27724. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent1">
  27725. <summary>
  27726. </summary>
  27727. </member>
  27728. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent2">
  27729. <summary>
  27730. </summary>
  27731. </member>
  27732. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent3">
  27733. <summary>
  27734. </summary>
  27735. </member>
  27736. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent4">
  27737. <summary>
  27738. </summary>
  27739. </member>
  27740. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent5">
  27741. <summary>
  27742. </summary>
  27743. </member>
  27744. <member name="F:Aspose.Cells.BuiltinStyleType.TwentyPercentAccent6">
  27745. <summary>
  27746. </summary>
  27747. </member>
  27748. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent1">
  27749. <summary>
  27750. </summary>
  27751. </member>
  27752. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent2">
  27753. <summary>
  27754. </summary>
  27755. </member>
  27756. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent3">
  27757. <summary>
  27758. </summary>
  27759. </member>
  27760. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent4">
  27761. <summary>
  27762. </summary>
  27763. </member>
  27764. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent5">
  27765. <summary>
  27766. </summary>
  27767. </member>
  27768. <member name="F:Aspose.Cells.BuiltinStyleType.FortyPercentAccent6">
  27769. <summary>
  27770. </summary>
  27771. </member>
  27772. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent1">
  27773. <summary>
  27774. </summary>
  27775. </member>
  27776. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent2">
  27777. <summary>
  27778. </summary>
  27779. </member>
  27780. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent3">
  27781. <summary>
  27782. </summary>
  27783. </member>
  27784. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent4">
  27785. <summary>
  27786. </summary>
  27787. </member>
  27788. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent5">
  27789. <summary>
  27790. </summary>
  27791. </member>
  27792. <member name="F:Aspose.Cells.BuiltinStyleType.SixtyPercentAccent6">
  27793. <summary>
  27794. </summary>
  27795. </member>
  27796. <member name="F:Aspose.Cells.BuiltinStyleType.Accent1">
  27797. <summary>
  27798. </summary>
  27799. </member>
  27800. <member name="F:Aspose.Cells.BuiltinStyleType.Accent2">
  27801. <summary>
  27802. </summary>
  27803. </member>
  27804. <member name="F:Aspose.Cells.BuiltinStyleType.Accent3">
  27805. <summary>
  27806. </summary>
  27807. </member>
  27808. <member name="F:Aspose.Cells.BuiltinStyleType.Accent4">
  27809. <summary>
  27810. </summary>
  27811. </member>
  27812. <member name="F:Aspose.Cells.BuiltinStyleType.Accent5">
  27813. <summary>
  27814. </summary>
  27815. </member>
  27816. <member name="F:Aspose.Cells.BuiltinStyleType.Accent6">
  27817. <summary>
  27818. </summary>
  27819. </member>
  27820. <member name="F:Aspose.Cells.BuiltinStyleType.Bad">
  27821. <summary>
  27822. </summary>
  27823. </member>
  27824. <member name="F:Aspose.Cells.BuiltinStyleType.Calculation">
  27825. <summary>
  27826. </summary>
  27827. </member>
  27828. <member name="F:Aspose.Cells.BuiltinStyleType.CheckCell">
  27829. <summary>
  27830. </summary>
  27831. </member>
  27832. <member name="F:Aspose.Cells.BuiltinStyleType.Comma">
  27833. <summary>
  27834. </summary>
  27835. </member>
  27836. <member name="F:Aspose.Cells.BuiltinStyleType.Comma1">
  27837. <summary>
  27838. </summary>
  27839. </member>
  27840. <member name="F:Aspose.Cells.BuiltinStyleType.Currency">
  27841. <summary>
  27842. </summary>
  27843. </member>
  27844. <member name="F:Aspose.Cells.BuiltinStyleType.Currency1">
  27845. <summary>
  27846. </summary>
  27847. </member>
  27848. <member name="F:Aspose.Cells.BuiltinStyleType.ExplanatoryText">
  27849. <summary>
  27850. </summary>
  27851. </member>
  27852. <member name="F:Aspose.Cells.BuiltinStyleType.Good">
  27853. <summary>
  27854. </summary>
  27855. </member>
  27856. <member name="F:Aspose.Cells.BuiltinStyleType.Header1">
  27857. <summary>
  27858. </summary>
  27859. </member>
  27860. <member name="F:Aspose.Cells.BuiltinStyleType.Header2">
  27861. <summary>
  27862. </summary>
  27863. </member>
  27864. <member name="F:Aspose.Cells.BuiltinStyleType.Header3">
  27865. <summary>
  27866. </summary>
  27867. </member>
  27868. <member name="F:Aspose.Cells.BuiltinStyleType.Header4">
  27869. <summary>
  27870. </summary>
  27871. </member>
  27872. <member name="F:Aspose.Cells.BuiltinStyleType.Hyperlink">
  27873. <summary>
  27874. </summary>
  27875. </member>
  27876. <member name="F:Aspose.Cells.BuiltinStyleType.FollowedHyperlink">
  27877. <summary>
  27878. </summary>
  27879. </member>
  27880. <member name="F:Aspose.Cells.BuiltinStyleType.Input">
  27881. <summary>
  27882. </summary>
  27883. </member>
  27884. <member name="F:Aspose.Cells.BuiltinStyleType.LinkedCell">
  27885. <summary>
  27886. </summary>
  27887. </member>
  27888. <member name="F:Aspose.Cells.BuiltinStyleType.Neutral">
  27889. <summary>
  27890. </summary>
  27891. </member>
  27892. <member name="F:Aspose.Cells.BuiltinStyleType.Normal">
  27893. <summary>
  27894. </summary>
  27895. </member>
  27896. <member name="F:Aspose.Cells.BuiltinStyleType.Note">
  27897. <summary>
  27898. </summary>
  27899. </member>
  27900. <member name="F:Aspose.Cells.BuiltinStyleType.Output">
  27901. <summary>
  27902. </summary>
  27903. </member>
  27904. <member name="F:Aspose.Cells.BuiltinStyleType.Percent">
  27905. <summary>
  27906. </summary>
  27907. </member>
  27908. <member name="F:Aspose.Cells.BuiltinStyleType.Title">
  27909. <summary>
  27910. </summary>
  27911. </member>
  27912. <member name="F:Aspose.Cells.BuiltinStyleType.Total">
  27913. <summary>
  27914. </summary>
  27915. </member>
  27916. <member name="F:Aspose.Cells.BuiltinStyleType.WarningText">
  27917. <summary>
  27918. </summary>
  27919. </member>
  27920. <member name="F:Aspose.Cells.BuiltinStyleType.RowLevel">
  27921. <summary>
  27922. </summary>
  27923. </member>
  27924. <member name="F:Aspose.Cells.BuiltinStyleType.ColumnLevel">
  27925. <summary>
  27926. </summary>
  27927. </member>
  27928. <member name="T:Aspose.Cells.CellsColor">
  27929. <summary>
  27930. Represents all types of color.
  27931. </summary>
  27932. </member>
  27933. <member name="M:Aspose.Cells.CellsColor.SetTintOfShapeColor(System.Double)">
  27934. <summary>
  27935. Set the tint of the shape color
  27936. </summary>
  27937. <param name="tint">
  27938. </param>
  27939. </member>
  27940. <member name="P:Aspose.Cells.CellsColor.IsShapeColor">
  27941. <summary>
  27942. Gets and set the color which should apply to cell or shape.
  27943. </summary>
  27944. <remarks>
  27945. The expression of the color of the cell and the shape is different.
  27946. For example: the theme color with same tint value will be not same in the cell and the shape.
  27947. </remarks>
  27948. </member>
  27949. <member name="P:Aspose.Cells.CellsColor.Type">
  27950. <summary>
  27951. The color type.
  27952. </summary>
  27953. </member>
  27954. <member name="P:Aspose.Cells.CellsColor.ThemeColor">
  27955. <summary>
  27956. Gets the theme color. Only applies for theme color type.
  27957. </summary>
  27958. </member>
  27959. <member name="P:Aspose.Cells.CellsColor.ColorIndex">
  27960. <summary>
  27961. Gets and sets the color index in the color palette. Only applies of indexed color.
  27962. </summary>
  27963. </member>
  27964. <member name="P:Aspose.Cells.CellsColor.Color">
  27965. <summary>
  27966. Gets and sets the RGB color.
  27967. </summary>
  27968. </member>
  27969. <member name="P:Aspose.Cells.CellsColor.Argb">
  27970. <summary>
  27971. Gets and sets the color from a 32-bit ARGB value.
  27972. </summary>
  27973. </member>
  27974. <member name="P:Aspose.Cells.CellsColor.Transparency">
  27975. <summary>
  27976. Gets and sets transparency as a value from 0.0 (opaque) through 1.0 (clear).
  27977. </summary>
  27978. </member>
  27979. <member name="T:Aspose.Cells.Charts.AxisType">
  27980. <summary>
  27981. Represents the axis type.
  27982. </summary>
  27983. </member>
  27984. <member name="F:Aspose.Cells.Charts.AxisType.Category">
  27985. <summary>
  27986. Category axis
  27987. </summary>
  27988. </member>
  27989. <member name="F:Aspose.Cells.Charts.AxisType.Value">
  27990. <summary>
  27991. Value axis
  27992. </summary>
  27993. </member>
  27994. <member name="F:Aspose.Cells.Charts.AxisType.Series">
  27995. <summary>
  27996. Series axis
  27997. </summary>
  27998. </member>
  27999. <member name="T:Aspose.Cells.Charts.CategoryType">
  28000. <summary>
  28001. Represents the category axis type.
  28002. </summary>
  28003. </member>
  28004. <member name="F:Aspose.Cells.Charts.CategoryType.AutomaticScale">
  28005. <summary>
  28006. AutomaticScale
  28007. </summary>
  28008. </member>
  28009. <member name="F:Aspose.Cells.Charts.CategoryType.CategoryScale">
  28010. <summary>
  28011. CategoryScale
  28012. </summary>
  28013. </member>
  28014. <member name="F:Aspose.Cells.Charts.CategoryType.TimeScale">
  28015. <summary>
  28016. TimeScale
  28017. </summary>
  28018. </member>
  28019. <member name="T:Aspose.Cells.Charts.CrossType">
  28020. <summary>
  28021. Represents the axis cross type.
  28022. </summary>
  28023. </member>
  28024. <member name="F:Aspose.Cells.Charts.CrossType.Automatic">
  28025. <summary>
  28026. Microsoft Excel sets the axis crossing point.
  28027. </summary>
  28028. </member>
  28029. <member name="F:Aspose.Cells.Charts.CrossType.Maximum">
  28030. <summary>
  28031. The axis crosses at the maximum value.
  28032. </summary>
  28033. </member>
  28034. <member name="F:Aspose.Cells.Charts.CrossType.Minimum">
  28035. <summary>
  28036. The axis crosses at the minimum value.
  28037. </summary>
  28038. </member>
  28039. <member name="F:Aspose.Cells.Charts.CrossType.Custom">
  28040. <summary>
  28041. The axis crosses at the custom value.
  28042. </summary>
  28043. </member>
  28044. <member name="T:Aspose.Cells.Charts.PlotArea">
  28045. <summary>
  28046. Encapsulates the object that represents the plot area in a chart.
  28047. </summary>
  28048. </member>
  28049. <member name="M:Aspose.Cells.Charts.PlotArea.SetPositionAuto">
  28050. <summary>
  28051. Set position of the plot area to automatic
  28052. </summary>
  28053. </member>
  28054. <member name="P:Aspose.Cells.Charts.PlotArea.X">
  28055. <summary>
  28056. Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of 1/4000 of the chart area.
  28057. </summary>
  28058. <remarks>
  28059. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28060. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28061. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28062. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28063. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28064. <b>InnerHeight</b> properties.</p>
  28065. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28066. </remarks>
  28067. </member>
  28068. <member name="P:Aspose.Cells.Charts.PlotArea.Y">
  28069. <summary>
  28070. Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of 1/4000 of the chart area.
  28071. </summary>
  28072. <remarks>
  28073. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28074. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28075. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28076. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28077. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28078. <b>InnerHeight</b> properties.</p>
  28079. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28080. </remarks>
  28081. </member>
  28082. <member name="P:Aspose.Cells.Charts.PlotArea.Height">
  28083. <summary>
  28084. Gets or sets the height of plot-area bounding box in units of 1/4000 of the chart area.
  28085. </summary>
  28086. <remarks>
  28087. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28088. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28089. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28090. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28091. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28092. <b>InnerHeight</b> properties.</p>
  28093. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28094. </remarks>
  28095. </member>
  28096. <member name="P:Aspose.Cells.Charts.PlotArea.Width">
  28097. <summary>
  28098. Gets or sets the width of plot-area bounding box in units of 1/4000 of the chart area.
  28099. </summary>
  28100. <remarks>
  28101. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28102. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28103. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28104. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28105. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28106. <b>InnerHeight</b> properties.</p>
  28107. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28108. </remarks>
  28109. </member>
  28110. <member name="P:Aspose.Cells.Charts.PlotArea.InnerX">
  28111. <summary>
  28112. Gets or gets the x coordinate of the upper top corner of plot area in units of 1/4000 of the chart area.
  28113. </summary>
  28114. <remarks>
  28115. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28116. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28117. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28118. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28119. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28120. <b>InnerHeight</b> properties.</p>
  28121. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28122. </remarks>
  28123. </member>
  28124. <member name="P:Aspose.Cells.Charts.PlotArea.InnerY">
  28125. <summary>
  28126. Gets or gets the x coordinate of the upper top corner of plot area in units of 1/4000 of the chart area.
  28127. </summary>
  28128. <remarks>
  28129. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28130. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28131. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28132. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28133. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28134. <b>InnerHeight</b> properties.</p>
  28135. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28136. </remarks>
  28137. </member>
  28138. <member name="P:Aspose.Cells.Charts.PlotArea.InnerHeight">
  28139. <summary>
  28140. Gets or sets the height of plot area in units of 1/4000 of the chart area.
  28141. </summary>
  28142. <remarks>
  28143. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28144. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28145. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28146. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28147. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28148. <b>InnerHeight</b> properties.</p>
  28149. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28150. </remarks>
  28151. </member>
  28152. <member name="P:Aspose.Cells.Charts.PlotArea.InnerWidth">
  28153. <summary>
  28154. Gets or sets the width of plot area in units of 1/4000 of the chart area.
  28155. </summary>
  28156. <remarks>
  28157. <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28158. If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
  28159. <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
  28160. bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
  28161. If you want to get actual size of plot area, you should call <b>InnerX</b>, <b>InnerY</b>, <b>InnerWidth</b> and
  28162. <b>InnerHeight</b> properties.</p>
  28163. <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
  28164. </remarks>
  28165. </member>
  28166. <member name="P:Aspose.Cells.Charts.PlotArea.IsAutomaticSize">
  28167. <summary>
  28168. Indicates whether the plot area is automatic sized.
  28169. </summary>
  28170. </member>
  28171. <member name="T:Aspose.Cells.Charts.TimeUnit">
  28172. <summary>
  28173. Represents the base unit for the category axis.
  28174. </summary>
  28175. </member>
  28176. <member name="F:Aspose.Cells.Charts.TimeUnit.Days">
  28177. <summary>
  28178. Days
  28179. </summary>
  28180. </member>
  28181. <member name="F:Aspose.Cells.Charts.TimeUnit.Months">
  28182. <summary>
  28183. Months
  28184. </summary>
  28185. </member>
  28186. <member name="F:Aspose.Cells.Charts.TimeUnit.Years">
  28187. <summary>
  28188. Years
  28189. </summary>
  28190. </member>
  28191. <member name="T:Aspose.Cells.ColorType">
  28192. <summary>
  28193. Represents all color type
  28194. </summary>
  28195. </member>
  28196. <member name="F:Aspose.Cells.ColorType.Automatic">
  28197. <summary>
  28198. Automatic color.
  28199. </summary>
  28200. </member>
  28201. <member name="F:Aspose.Cells.ColorType.AutomaticIndex">
  28202. <summary>
  28203. It's automatic color,but the displayed color depends the setting of the OS System.
  28204. </summary>
  28205. <remarks>
  28206. Not supported.
  28207. </remarks>
  28208. </member>
  28209. <member name="F:Aspose.Cells.ColorType.RGB">
  28210. <summary>
  28211. The RGB color.
  28212. </summary>
  28213. </member>
  28214. <member name="F:Aspose.Cells.ColorType.IndexedColor">
  28215. <summary>
  28216. The color index in the color palette.
  28217. </summary>
  28218. </member>
  28219. <member name="F:Aspose.Cells.ColorType.Theme">
  28220. <summary>
  28221. The theme color.
  28222. </summary>
  28223. </member>
  28224. <member name="T:Aspose.Cells.DxfCollection">
  28225. <summary>
  28226. Represents the master differential formatting records.
  28227. </summary>
  28228. </member>
  28229. <member name="P:Aspose.Cells.DxfCollection.Item(System.Int32)">
  28230. <summary>
  28231. Gets the element at the specified index.
  28232. </summary>
  28233. <param name="index">The specified index. </param>
  28234. <returns>
  28235. </returns>
  28236. </member>
  28237. <member name="T:Aspose.Cells.LookAtType">
  28238. <summary>
  28239. Represents look at type.
  28240. </summary>
  28241. </member>
  28242. <member name="F:Aspose.Cells.LookAtType.Contains">
  28243. <summary>
  28244. Cell value Contains the find object.
  28245. </summary>
  28246. </member>
  28247. <member name="F:Aspose.Cells.LookAtType.StartWith">
  28248. <summary>
  28249. Cell value Starts with the find object.
  28250. </summary>
  28251. </member>
  28252. <member name="F:Aspose.Cells.LookAtType.EndWith">
  28253. <summary>
  28254. Cell value ends with the find object.
  28255. </summary>
  28256. </member>
  28257. <member name="F:Aspose.Cells.LookAtType.EntireContent">
  28258. <summary>
  28259. Cell value is same as the find object.
  28260. </summary>
  28261. </member>
  28262. <member name="T:Aspose.Cells.LookInType">
  28263. <summary>
  28264. Represents look in type.
  28265. </summary>
  28266. </member>
  28267. <member name="F:Aspose.Cells.LookInType.Formulas">
  28268. <summary>
  28269. If the cell contains a formula, find object from formula,else find it from the value.
  28270. </summary>
  28271. </member>
  28272. <member name="F:Aspose.Cells.LookInType.Values">
  28273. <summary>
  28274. Only find object from the formatted values.
  28275. </summary>
  28276. </member>
  28277. <member name="F:Aspose.Cells.LookInType.ValuesExcludeFormulaCell">
  28278. <summary>
  28279. Only find object from the values of cells which do not contains formula.
  28280. </summary>
  28281. </member>
  28282. <member name="F:Aspose.Cells.LookInType.Comments">
  28283. <summary>
  28284. Only find object from the comments.
  28285. </summary>
  28286. </member>
  28287. <member name="F:Aspose.Cells.LookInType.OnlyFormulas">
  28288. <summary>
  28289. Only find object from formulas.
  28290. </summary>
  28291. </member>
  28292. <member name="F:Aspose.Cells.LookInType.OriginalValues">
  28293. <summary>
  28294. Only find object from the original values.
  28295. </summary>
  28296. </member>
  28297. <member name="T:Aspose.Cells.ReplaceOptions">
  28298. <summary>
  28299. Represent the replace options.
  28300. </summary>
  28301. </member>
  28302. <member name="P:Aspose.Cells.ReplaceOptions.IsCaseSensitive">
  28303. <summary>
  28304. Indicates if the searched string is case sensitive.
  28305. </summary>
  28306. <remarks>NOTE: This member is now obsolete. Instead,
  28307. please use ReplaceOptions.CaseSensitive property.
  28308. This property will be removed 12 months later since June 2010.
  28309. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28310. </member>
  28311. <member name="P:Aspose.Cells.ReplaceOptions.CaseSensitive">
  28312. <summary>
  28313. Indicates if the searched string is case sensitive.
  28314. </summary>
  28315. </member>
  28316. <member name="P:Aspose.Cells.ReplaceOptions.MatchEntireCellContents">
  28317. <summary>
  28318. Indicates whether to match entire cells contents
  28319. </summary>
  28320. </member>
  28321. <member name="P:Aspose.Cells.ReplaceOptions.RegexKey">
  28322. <summary>
  28323. Indicates whether the searched key is regex. If true then the searched key will be taken as regex.
  28324. </summary>
  28325. </member>
  28326. <member name="T:Aspose.Cells.ReferredArea">
  28327. <summary>
  28328. Represents a referred area by the formula.
  28329. </summary>
  28330. </member>
  28331. <member name="M:Aspose.Cells.ReferredArea.GetValues">
  28332. <summary>
  28333. Gets cell values in this area.
  28334. </summary>
  28335. <returns>If this area is invalid, "#REF!" will be returned;
  28336. If this area is one single cell, then return the cell value object;
  28337. Otherwise return one 2D array for all values in this area.</returns>
  28338. </member>
  28339. <member name="M:Aspose.Cells.ReferredArea.GetValues(System.Boolean)">
  28340. <summary>
  28341. Gets cell values in this area.
  28342. </summary>
  28343. <param name="calculateFormulas">In this range, if there are some formulas that have not been calculated,
  28344. this flag denotes whether those formulas should be calculated recursively</param>
  28345. <returns>If this area is invalid, "#REF!" will be returned;
  28346. If this area is one single cell, then return the cell value object;
  28347. Otherwise return one 2D array for all values in this area.</returns>
  28348. </member>
  28349. <member name="M:Aspose.Cells.ReferredArea.GetValue(System.Int32,System.Int32)">
  28350. <summary>
  28351. Gets cell value with given offset from the top-left of this area.
  28352. </summary>
  28353. <param name="rowOffset">row offset from the start row of this area</param>
  28354. <param name="colOffset">column offset from the start row of this area</param>
  28355. <returns>"#REF!" if this area is invalid;
  28356. "#N/A" if given offset out of this area;
  28357. Otherwise return the cell value at given position.</returns>
  28358. </member>
  28359. <member name="M:Aspose.Cells.ReferredArea.GetValue(System.Int32,System.Int32,System.Boolean)">
  28360. <summary>
  28361. Gets cell value with given offset from the top-left of this area.
  28362. </summary>
  28363. <param name="rowOffset">row offset from the start row of this area</param>
  28364. <param name="colOffset">column offset from the start row of this area</param>
  28365. <param name="calculateFormulas">Whether calculate it recursively if the specified reference is formula</param>
  28366. <returns>"#REF!" if this area is invalid;
  28367. "#N/A" if given offset out of this area;
  28368. Otherwise return the cell value at given position.</returns>
  28369. </member>
  28370. <member name="M:Aspose.Cells.ReferredArea.ToString">
  28371. <summary>
  28372. Returns the simple string representation of this area.
  28373. </summary>
  28374. <returns>
  28375. </returns>
  28376. </member>
  28377. <member name="P:Aspose.Cells.ReferredArea.IsExternalLink">
  28378. <summary>
  28379. Indicates whether this is an external link.
  28380. </summary>
  28381. </member>
  28382. <member name="P:Aspose.Cells.ReferredArea.ExternalFileName">
  28383. <summary>
  28384. Get the external file name if this is an external reference.
  28385. </summary>
  28386. </member>
  28387. <member name="P:Aspose.Cells.ReferredArea.SheetName">
  28388. <summary>
  28389. Indicates which sheet this reference is in.
  28390. </summary>
  28391. </member>
  28392. <member name="P:Aspose.Cells.ReferredArea.IsArea">
  28393. <summary>
  28394. Indicates whether this is an area.
  28395. </summary>
  28396. <remarks>
  28397. If this is not an area, only StartRow and StartColumn effect.
  28398. </remarks>
  28399. </member>
  28400. <member name="P:Aspose.Cells.ReferredArea.EndColumn">
  28401. <summary>
  28402. The end column of the area.
  28403. </summary>
  28404. </member>
  28405. <member name="P:Aspose.Cells.ReferredArea.StartColumn">
  28406. <summary>
  28407. The start column of the area.
  28408. </summary>
  28409. </member>
  28410. <member name="P:Aspose.Cells.ReferredArea.EndRow">
  28411. <summary>
  28412. The end row of the area.
  28413. </summary>
  28414. </member>
  28415. <member name="P:Aspose.Cells.ReferredArea.StartRow">
  28416. <summary>
  28417. The start row of the area.
  28418. </summary>
  28419. </member>
  28420. <member name="T:Aspose.Cells.Drawing.ArcShape">
  28421. <summary>
  28422. Represents the arc shape.
  28423. </summary>
  28424. <example>
  28425. <code>
  28426. [C#]
  28427. //Instantiate a new Workbook.
  28428. Workbook excelbook = new Workbook();
  28429. //Add an arc shape.
  28430. Aspose.Cells.ArcShape arc1 = excelbook.Worksheets[0].Shapes.AddArc(2, 0, 2, 0, 130, 130);
  28431. //Set the placement of the arc.
  28432. arc1.Placement = PlacementType.FreeFloating;
  28433. //Set the fill format.
  28434. arc1.FillFormat.ForeColor = Color.Blue;
  28435. //Set the line style.
  28436. arc1.LineFormat.Style = MsoLineStyle.Single;
  28437. //Set the line weight.
  28438. arc1.LineFormat.Weight = 1;
  28439. //Set the color of the arc line.
  28440. arc1.LineFormat.ForeColor = Color.Blue;
  28441. //Set the dash style of the arc.
  28442. arc1.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  28443. //Add another arc shape.
  28444. Aspose.Cells.ArcShape arc2 = excelbook.Worksheets[0].Shapes.AddArc(9, 0, 2, 0, 130, 130);
  28445. //Set the placement of the arc.
  28446. arc2.Placement = PlacementType.FreeFloating;
  28447. //Set the line style.
  28448. arc2.LineFormat.Style = MsoLineStyle.Single;
  28449. //Set the line weight.
  28450. arc2.LineFormat.Weight = 1;
  28451. //Set the color of the arc line.
  28452. arc2.LineFormat.ForeColor = Color.Blue;
  28453. //Set the dash style of the arc.
  28454. arc2.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  28455. //Save the excel file.
  28456. excelbook.Save("d:\\test\\tstarcs.xls");
  28457. [VB..NET]
  28458. 'Instantiate a new Workbook.
  28459. Dim excelbook As Workbook = New Workbook()
  28460. 'Add an arc shape.
  28461. Dim arc1 As Aspose.Cells.ArcShape = excelbook.Worksheets(0).Shapes.AddArc(2, 0, 2, 0, 130, 130)
  28462. 'Set the placement of the arc.
  28463. arc1.Placement = PlacementType.FreeFloating
  28464. 'Set the fill format.
  28465. arc1.FillFormat.ForeColor = Color.Blue
  28466. 'Set the line style.
  28467. arc1.LineFormat.Style = MsoLineStyle.Single
  28468. 'Set the line weight.
  28469. arc1.LineFormat.Weight = 1
  28470. 'Set the color of the arc line.
  28471. arc1.LineFormat.ForeColor = Color.Blue
  28472. 'Set the dash style of the arc.
  28473. arc1.LineFormat.DashStyle = MsoLineDashStyle.Solid
  28474. 'Add another arc shape.
  28475. Dim arc2 As Aspose.Cells.ArcShape = excelbook.Worksheets(0).Shapes.AddArc(9, 0, 2, 0, 130, 130)
  28476. 'Set the placement of the arc.
  28477. arc2.Placement = PlacementType.FreeFloating
  28478. 'Set the line style.
  28479. arc2.LineFormat.Style = MsoLineStyle.Single
  28480. 'Set the line weight.
  28481. arc2.LineFormat.Weight = 1
  28482. 'Set the color of the arc line.
  28483. arc2.LineFormat.ForeColor = Color.Blue
  28484. 'Set the dash style of the arc.
  28485. arc2.LineFormat.DashStyle = MsoLineDashStyle.Solid
  28486. 'Save the excel file.
  28487. excelbook.Save("d:\test\tstarcs.xls")
  28488. </code>
  28489. </example>
  28490. </member>
  28491. <member name="P:Aspose.Cells.Drawing.ArcShape.BeginArrowheadStyle">
  28492. <summary>
  28493. Gets and sets the begin arrow head style of the line.
  28494. </summary>
  28495. <remarks>NOTE: This member is now obsolete. Instead,
  28496. please use Shape.Line.BeginArrowheadStyle property.
  28497. This property will be removed 12 months later since August 2016.
  28498. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28499. </member>
  28500. <member name="P:Aspose.Cells.Drawing.ArcShape.BeginArrowheadWidth">
  28501. <summary>
  28502. Gets and sets the begin arrow head width of the line.
  28503. </summary>
  28504. <remarks>NOTE: This member is now obsolete. Instead,
  28505. please use Shape.Line.BeginArrowheadWidth property.
  28506. This property will be removed 12 months later since August 2016.
  28507. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28508. </member>
  28509. <member name="P:Aspose.Cells.Drawing.ArcShape.BeginArrowheadLength">
  28510. <summary>
  28511. Gets and sets the begin arrow head length of the line.
  28512. </summary>
  28513. <remarks>NOTE: This member is now obsolete. Instead,
  28514. please use Shape.Line.BeginArrowheadLength property.
  28515. This property will be removed 12 months later since August 2016.
  28516. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28517. </member>
  28518. <member name="P:Aspose.Cells.Drawing.ArcShape.EndArrowheadStyle">
  28519. <summary>
  28520. Gets and sets the end arrow head style of the line.
  28521. </summary>
  28522. <remarks>NOTE: This member is now obsolete. Instead,
  28523. please use Shape.Line.EndArrowheadStyle property.
  28524. This property will be removed 12 months later since August 2016.
  28525. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28526. </member>
  28527. <member name="P:Aspose.Cells.Drawing.ArcShape.EndArrowheadWidth">
  28528. <summary>
  28529. Gets and sets the end arrow head width of the line.
  28530. </summary>
  28531. <remarks>NOTE: This member is now obsolete. Instead,
  28532. please use Shape.Line.EndArrowheadWidth property.
  28533. This property will be removed 12 months later since August 2016.
  28534. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28535. </member>
  28536. <member name="P:Aspose.Cells.Drawing.ArcShape.EndArrowheadLength">
  28537. <summary>
  28538. Gets and sets the end arrow head length of the line.
  28539. </summary>
  28540. <remarks>NOTE: This member is now obsolete. Instead,
  28541. please use Shape.Line.EndArrowheadLength property.
  28542. This property will be removed 12 months later since August 2016.
  28543. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28544. </member>
  28545. <member name="T:Aspose.Cells.Drawing.Area">
  28546. <summary>
  28547. Encapsulates the object that represents an area format.
  28548. </summary>
  28549. <example>
  28550. <code>
  28551. [C#]
  28552. //Instantiating a Workbook object
  28553. Workbook workbook = new Workbook();
  28554. //Adding a new worksheet to the Workbook object
  28555. int sheetIndex = workbook.Worksheets.Add();
  28556. //Obtaining the reference of the newly added worksheet by passing its sheet index
  28557. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  28558. //Adding a sample value to "A1" cell
  28559. worksheet.Cells["A1"].PutValue(50);
  28560. //Adding a sample value to "A2" cell
  28561. worksheet.Cells["A2"].PutValue(100);
  28562. //Adding a sample value to "A3" cell
  28563. worksheet.Cells["A3"].PutValue(150);
  28564. //Adding a sample value to "B1" cell
  28565. worksheet.Cells["B1"].PutValue(60);
  28566. //Adding a sample value to "B2" cell
  28567. worksheet.Cells["B2"].PutValue(32);
  28568. //Adding a sample value to "B3" cell
  28569. worksheet.Cells["B3"].PutValue(50);
  28570. //Adding a chart to the worksheet
  28571. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  28572. //Accessing the instance of the newly added chart
  28573. Chart chart = worksheet.Charts[chartIndex];
  28574. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  28575. chart.NSeries.Add("A1:B3", true);
  28576. //Setting the foreground color of the plot area
  28577. chart.PlotArea.Area.ForegroundColor = Color.Blue;
  28578. //Setting the foreground color of the chart area
  28579. chart.ChartArea.Area.ForegroundColor = Color.Yellow;
  28580. //Setting the foreground color of the 1st NSeries area
  28581. chart.NSeries[0].Area.ForegroundColor = Color.Red;
  28582. //Setting the foreground color of the area of the 1st NSeries point
  28583. chart.NSeries[0].Points[0].Area.ForegroundColor = Color.Cyan;
  28584. //Saving the Excel file
  28585. workbook.Save("C:\\book1.xls");
  28586. [Visual Basic]
  28587. 'Instantiating a Workbook object
  28588. Dim workbook As Workbook = New Workbook()
  28589. 'Adding a new worksheet to the Workbook object
  28590. Dim sheetIndex As Integer = workbook.Worksheets.Add()
  28591. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  28592. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  28593. 'Adding a sample value to "A1" cell
  28594. worksheet.Cells("A1").PutValue(50)
  28595. 'Adding a sample value to "A2" cell
  28596. worksheet.Cells("A2").PutValue(100)
  28597. 'Adding a sample value to "A3" cell
  28598. worksheet.Cells("A3").PutValue(150)
  28599. 'Adding a sample value to "B1" cell
  28600. worksheet.Cells("B1").PutValue(60)
  28601. 'Adding a sample value to "B2" cell
  28602. worksheet.Cells("B2").PutValue(32)
  28603. 'Adding a sample value to "B3" cell
  28604. worksheet.Cells("B3").PutValue(50)
  28605. 'Adding a chart to the worksheet
  28606. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  28607. 'Accessing the instance of the newly added chart
  28608. Dim chart As Chart = worksheet.Charts(chartIndex)
  28609. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  28610. chart.NSeries.Add("A1:B3", True)
  28611. 'Setting the foreground color of the plot area
  28612. chart.PlotArea.Area.ForegroundColor = Color.Blue
  28613. 'Setting the foreground color of the chart area
  28614. chart.ChartArea.Area.ForegroundColor = Color.Yellow
  28615. 'Setting the foreground color of the 1st NSeries area
  28616. chart.NSeries(0).Area.ForegroundColor = Color.Red
  28617. 'Setting the foreground color of the area of the 1st NSeries point
  28618. chart.NSeries(0).Points(0).Area.ForegroundColor = Color.Cyan
  28619. 'Saving the Excel file
  28620. workbook.Save("C:\book1.xls")
  28621. </code>
  28622. </example>
  28623. </member>
  28624. <member name="P:Aspose.Cells.Drawing.Area.BackgroundColor">
  28625. <summary>
  28626. Gets or sets the background <see cref="T:System.Drawing.Color" /> of the <see cref="T:Aspose.Cells.Drawing.Area" />.
  28627. </summary>
  28628. </member>
  28629. <member name="P:Aspose.Cells.Drawing.Area.ForegroundColor">
  28630. <summary>
  28631. Gets or sets the foreground <see cref="T:System.Drawing.Color" />.
  28632. </summary>
  28633. </member>
  28634. <member name="P:Aspose.Cells.Drawing.Area.Formatting">
  28635. <summary>
  28636. Represents the formatting of the area.
  28637. </summary>
  28638. </member>
  28639. <member name="P:Aspose.Cells.Drawing.Area.InvertIfNegative">
  28640. <summary>
  28641. If the property is true and the value of chart point is a negative number,
  28642. the foreground color and background color will be exchanged.
  28643. </summary>
  28644. <example>
  28645. <code>
  28646. [C#]
  28647. //Instantiating a Workbook object
  28648. Workbook workbook = new Workbook();
  28649. //Adding a new worksheet to the Workbook object
  28650. int sheetIndex = workbook.Worksheets.Add();
  28651. //Obtaining the reference of the newly added worksheet by passing its sheet index
  28652. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  28653. //Adding a sample value to "A1" cell
  28654. worksheet.Cells["A1"].PutValue(50);
  28655. //Adding a sample value to "A2" cell
  28656. worksheet.Cells["A2"].PutValue(-100);
  28657. //Adding a sample value to "A3" cell
  28658. worksheet.Cells["A3"].PutValue(150);
  28659. //Adding a chart to the worksheet
  28660. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  28661. //Accessing the instance of the newly added chart
  28662. Chart chart = worksheet.Charts[chartIndex];
  28663. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "A3"
  28664. chart.NSeries.Add("A1:A3", true);
  28665. chart.NSeries[0].Area.InvertIfNegative = true;
  28666. //Setting the foreground color of the 1st NSeries area
  28667. chart.NSeries[0].Area.ForegroundColor = Color.Red;
  28668. //Setting the background color of the 1st NSeries area.
  28669. //The displayed area color of second chart point will be the background color.
  28670. chart.NSeries[0].Area.BackgroundColor = Color.Yellow;
  28671. //Saving the Excel file
  28672. workbook.Save("C:\\book1.xls");
  28673. [Visual Basic]
  28674. 'Instantiating a Workbook object
  28675. Dim workbook As Workbook = New Workbook()
  28676. 'Adding a new worksheet to the Workbook object
  28677. Dim sheetIndex As Integer = workbook.Worksheets.Add()
  28678. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  28679. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  28680. 'Adding a sample value to "A1" cell
  28681. worksheet.Cells("A1").PutValue(50)
  28682. 'Adding a sample value to "A2" cell
  28683. worksheet.Cells("A2").PutValue(-100)
  28684. 'Adding a sample value to "A3" cell
  28685. worksheet.Cells("A3").PutValue(150)
  28686. 'Adding a chart to the worksheet
  28687. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  28688. 'Accessing the instance of the newly added chart
  28689. Dim chart As Chart = worksheet.Charts(chartIndex)
  28690. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "A3"
  28691. chart.NSeries.Add("A1:A3", True)
  28692. chart.NSeries(0).Area.InvertIfNegative = True
  28693. 'Setting the foreground color of the 1st NSeries area
  28694. chart.NSeries(0).Area.ForegroundColor = Color.Red
  28695. 'Setting the background color of the 1st NSeries area.
  28696. 'The displayed area color of second chart point will be the background color.
  28697. chart.NSeries(0).Area.BackgroundColor = Color.Yellow
  28698. 'Saving the Excel file
  28699. workbook.Save("C:\book1.xls")
  28700. </code>
  28701. </example>
  28702. </member>
  28703. <member name="P:Aspose.Cells.Drawing.Area.FillFormat">
  28704. <summary>
  28705. Represents a <seealso cref="P:Aspose.Cells.Drawing.Area.FillFormat" /> object that contains fill formatting properties for the specified chart or shape.
  28706. </summary>
  28707. </member>
  28708. <member name="P:Aspose.Cells.Drawing.Area.Transparency">
  28709. <summary>
  28710. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
  28711. </summary>
  28712. </member>
  28713. <member name="T:Aspose.Cells.Charts.Series">
  28714. <summary>
  28715. Encapsulates the object that represents a single data series in a chart.
  28716. </summary>
  28717. <example>
  28718. <code>
  28719. [C#]
  28720. //Instantiating a Workbook object
  28721. Workbook workbook = new Workbook();
  28722. //Adding a new worksheet to the Excel object
  28723. int sheetIndex = workbook.Worksheets.Add();
  28724. //Obtaining the reference of the newly added worksheet by passing its sheet index
  28725. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  28726. //Adding a sample value to "A1" cell
  28727. worksheet.Cells["A1"].PutValue(50);
  28728. //Adding a sample value to "A2" cell
  28729. worksheet.Cells["A2"].PutValue(100);
  28730. //Adding a sample value to "A3" cell
  28731. worksheet.Cells["A3"].PutValue(150);
  28732. //Adding a sample value to "A4" cell
  28733. worksheet.Cells["A4"].PutValue(200);
  28734. //Adding a sample value to "B1" cell
  28735. worksheet.Cells["B1"].PutValue(60);
  28736. //Adding a sample value to "B2" cell
  28737. worksheet.Cells["B2"].PutValue(32);
  28738. //Adding a sample value to "B3" cell
  28739. worksheet.Cells["B3"].PutValue(50);
  28740. //Adding a sample value to "B4" cell
  28741. worksheet.Cells["B4"].PutValue(40);
  28742. //Adding a sample value to "C1" cell as category data
  28743. worksheet.Cells["C1"].PutValue("Q1");
  28744. //Adding a sample value to "C2" cell as category data
  28745. worksheet.Cells["C2"].PutValue("Q2");
  28746. //Adding a sample value to "C3" cell as category data
  28747. worksheet.Cells["C3"].PutValue("Y1");
  28748. //Adding a sample value to "C4" cell as category data
  28749. worksheet.Cells["C4"].PutValue("Y2");
  28750. //Adding a chart to the worksheet
  28751. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  28752. //Accessing the instance of the newly added chart
  28753. Chart chart = worksheet.Charts[chartIndex];
  28754. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  28755. chart.NSeries.Add("A1:B4", true);
  28756. //Setting the data source for the category data of NSeries
  28757. chart.NSeries.CategoryData = "C1:C4";
  28758. Series series = chart.NSeries[1];
  28759. //Setting the values of the series.
  28760. series.Values = "=B1:B4";
  28761. //Changing the chart type of the series.
  28762. series.Type = ChartType.Line;
  28763. //Setting marker properties.
  28764. series.MarkerStyle = ChartMarkerType.Circle;
  28765. series.MarkerForegroundColorSetType = FormattingType.Automatic;
  28766. series.MarkerForegroundColor = System.Drawing.Color.Black;
  28767. series.MarkerBackgroundColorSetType = FormattingType.Automatic;
  28768. //Saving the Excel file
  28769. workbook.Save("C:\\book1.xls");
  28770. [Visual Basic]
  28771. 'Instantiating a Workbook object
  28772. Dim workbook As Workbook = New Workbook()
  28773. 'Adding a new worksheet to the Excel object
  28774. Dim sheetIndex As Int32 = workbook.Worksheets.Add()
  28775. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  28776. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  28777. 'Adding a sample value to "A1" cell
  28778. worksheet.Cells("A1").PutValue(50)
  28779. 'Adding a sample value to "A2" cell
  28780. worksheet.Cells("A2").PutValue(100)
  28781. 'Adding a sample value to "A3" cell
  28782. worksheet.Cells("A3").PutValue(150)
  28783. 'Adding a sample value to "A4" cell
  28784. worksheet.Cells("A4").PutValue(200)
  28785. 'Adding a sample value to "B1" cell
  28786. worksheet.Cells("B1").PutValue(60)
  28787. 'Adding a sample value to "B2" cell
  28788. worksheet.Cells("B2").PutValue(32)
  28789. 'Adding a sample value to "B3" cell
  28790. worksheet.Cells("B3").PutValue(50)
  28791. 'Adding a sample value to "B4" cell
  28792. worksheet.Cells("B4").PutValue(40)
  28793. 'Adding a sample value to "C1" cell as category data
  28794. worksheet.Cells("C1").PutValue("Q1")
  28795. 'Adding a sample value to "C2" cell as category data
  28796. worksheet.Cells("C2").PutValue("Q2")
  28797. 'Adding a sample value to "C3" cell as category data
  28798. worksheet.Cells("C3").PutValue("Y1")
  28799. 'Adding a sample value to "C4" cell as category data
  28800. worksheet.Cells("C4").PutValue("Y2")
  28801. 'Adding a chart to the worksheet
  28802. Dim chartIndex As Int32 = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  28803. 'Accessing the instance of the newly added chart
  28804. Dim chart As Chart = worksheet.Charts(chartIndex)
  28805. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  28806. chart.NSeries.Add("A1:B4", True)
  28807. 'Setting the data source for the category data of NSeries
  28808. chart.NSeries.CategoryData = "C1:C4"
  28809. Dim series As Series = chart.NSeries(1)
  28810. 'Setting the values of the series.
  28811. series.Values = "=B1:B4"
  28812. 'Changing the chart type of the series.
  28813. series.Type = ChartType.Line
  28814. 'Setting marker properties.
  28815. series.MarkerStyle = ChartMarkerType.Circle
  28816. series.MarkerForegroundColorSetType = FormattingType.Automatic
  28817. series.MarkerForegroundColor = System.Drawing.Color.Black
  28818. series.MarkerBackgroundColorSetType = FormattingType.Automatic
  28819. 'Saving the Excel file
  28820. workbook.Save("C:\\book1.xls")
  28821. </code>
  28822. </example>
  28823. </member>
  28824. <member name="M:Aspose.Cells.Charts.Series.Move(System.Int32)">
  28825. <summary>
  28826. Moves the series up or down.
  28827. </summary>
  28828. <param name="count">The number of moving up or down.
  28829. Move the series up if this is less than zero;
  28830. Move the series down if this is greater than zero.
  28831. </param>
  28832. </member>
  28833. <member name="P:Aspose.Cells.Charts.Series.LayoutProperties">
  28834. <summary>
  28835. Represents the properties of layout.
  28836. </summary>
  28837. </member>
  28838. <member name="P:Aspose.Cells.Charts.Series.Points">
  28839. <summary>
  28840. Gets the collection of points in a series in a chart.
  28841. </summary>
  28842. <remarks>
  28843. When the chart is Pie of Pie or Bar of Pie, the last point is other point in first pie plot.
  28844. </remarks>
  28845. </member>
  28846. <member name="P:Aspose.Cells.Charts.Series.Area">
  28847. <summary>
  28848. Represents the background area of Series object.
  28849. </summary>
  28850. </member>
  28851. <member name="P:Aspose.Cells.Charts.Series.Border">
  28852. <summary>
  28853. Represents border of Series object.
  28854. </summary>
  28855. </member>
  28856. <member name="P:Aspose.Cells.Charts.Series.Name">
  28857. <summary>
  28858. Gets or sets the name of the data series.
  28859. </summary>
  28860. <example>
  28861. <code>
  28862. [C#]
  28863. //Reference name to a cell
  28864. chart.NSeries[0].Name = "=A1";
  28865. //Set a string to name
  28866. chart.NSeries[0].Name = "First Series";
  28867. [Visual Basic]
  28868. 'Reference name to a cell
  28869. chart.NSeries[0].Name = "=A1"
  28870. 'Set a string to name
  28871. chart.NSeries[0].Name = "First Series"
  28872. </code>
  28873. </example>
  28874. </member>
  28875. <member name="P:Aspose.Cells.Charts.Series.DisplayName">
  28876. <summary>
  28877. Gets the series's name that displays on the chart graph.
  28878. </summary>
  28879. </member>
  28880. <member name="P:Aspose.Cells.Charts.Series.CountOfDataValues">
  28881. <summary>
  28882. Gets the number of the data values.
  28883. </summary>
  28884. </member>
  28885. <member name="P:Aspose.Cells.Charts.Series.IsVerticalValues">
  28886. <summary>
  28887. Indicates whether the data source is vertical.
  28888. </summary>
  28889. </member>
  28890. <member name="P:Aspose.Cells.Charts.Series.Values">
  28891. <summary>
  28892. Represents the data of the chart series.
  28893. </summary>
  28894. </member>
  28895. <member name="P:Aspose.Cells.Charts.Series.ValuesFormatCode">
  28896. <summary>
  28897. Represents format code of Values¡®s NumberList.
  28898. </summary>
  28899. </member>
  28900. <member name="P:Aspose.Cells.Charts.Series.XValues">
  28901. <summary>
  28902. Represents the x values of the chart series.
  28903. </summary>
  28904. </member>
  28905. <member name="P:Aspose.Cells.Charts.Series.BubbleSizes">
  28906. <summary>
  28907. Gets or sets the bubble sizes values of the chart series.
  28908. </summary>
  28909. </member>
  28910. <member name="P:Aspose.Cells.Charts.Series.TrendLines">
  28911. <summary>
  28912. Returns an object that represents a collection of all the trendlines for the series.
  28913. </summary>
  28914. </member>
  28915. <member name="P:Aspose.Cells.Charts.Series.Smooth">
  28916. <summary>
  28917. Represents curve smoothing.
  28918. True if curve smoothing is turned on for the line chart or scatter chart.
  28919. Applies only to line and scatter connected by lines charts.
  28920. </summary>
  28921. </member>
  28922. <member name="P:Aspose.Cells.Charts.Series.Shadow">
  28923. <summary>
  28924. True if the series has a shadow.
  28925. </summary>
  28926. </member>
  28927. <member name="P:Aspose.Cells.Charts.Series.Has3DEffect">
  28928. <summary>
  28929. True if the series has a three-dimensional appearance.
  28930. Applies only to bubble charts.
  28931. </summary>
  28932. </member>
  28933. <member name="P:Aspose.Cells.Charts.Series.Bar3DShapeType">
  28934. <summary>
  28935. Gets or sets the 3D shape type used with the 3-D bar or column chart.
  28936. </summary>
  28937. </member>
  28938. <member name="P:Aspose.Cells.Charts.Series.BarShape">
  28939. <summary>
  28940. Gets or sets the 3D shape type used with the 3-D bar or column chart.
  28941. </summary>
  28942. <remarks>NOTE: This member is now obsolete. Instead,
  28943. please use ASeries.Bar3DShapeType property.
  28944. This property will be removed 12 months later since June 2010.
  28945. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28946. </member>
  28947. <member name="P:Aspose.Cells.Charts.Series.DataLabels">
  28948. <summary>
  28949. Represents the DataLabels object for the specified ASeries.
  28950. </summary>
  28951. </member>
  28952. <member name="P:Aspose.Cells.Charts.Series.Type">
  28953. <summary>
  28954. Gets or sets a data series' type.
  28955. </summary>
  28956. </member>
  28957. <member name="P:Aspose.Cells.Charts.Series.Marker">
  28958. <summary>
  28959. Gets the <see cref="P:Aspose.Cells.Charts.Series.Marker">marker</see>.
  28960. </summary>
  28961. </member>
  28962. <member name="P:Aspose.Cells.Charts.Series.MarkerStyle">
  28963. <summary>
  28964. Represents the marker style in a line chart, scatter chart, or radar chart.
  28965. </summary>
  28966. <remarks>NOTE: This member is now obsolete. Instead,
  28967. please use Marker.MarkerStyle property.
  28968. This property will be removed 12 months later since August 2012.
  28969. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28970. </member>
  28971. <member name="P:Aspose.Cells.Charts.Series.MarkerSize">
  28972. <summary>
  28973. Represents the marker size in a line chart, scatter chart, or radar chart.
  28974. </summary>
  28975. <remarks>NOTE: This member is now obsolete. Instead,
  28976. please use Marker.MarkerSize property.
  28977. This property will be removed 12 months later since August 2012.
  28978. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28979. </member>
  28980. <member name="P:Aspose.Cells.Charts.Series.MarkerForegroundColor">
  28981. <summary>
  28982. Represents the marker foreground color in a line chart, scatter chart, or radar chart.
  28983. </summary>
  28984. <remarks>NOTE: This member is now obsolete. Instead,
  28985. please use Marker.MarkerForegroundColor property.
  28986. This property will be removed 12 months later since August 2012.
  28987. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  28988. </member>
  28989. <member name="P:Aspose.Cells.Charts.Series.MarkerForegroundColorSetType">
  28990. <summary>
  28991. Gets or sets the marker foreground color set type.
  28992. </summary>
  28993. <remarks>NOTE: This member is now obsolete. Instead,
  28994. please use Marker.MarkerForegroundColorSetType property.
  28995. This property will be removed 12 months later since August 2012.
  28996. Aspose apologizes for any inconvenience you may have experienced.
  28997. FormattingType.Automatic is same as ChartLineFormattingType.Automatic.
  28998. FormattingType.None is same as ChartLineFormattingType.None.
  28999. FormattingType.InnerCustom is same as ChartLineFormattingType.Solid.
  29000. </remarks>
  29001. </member>
  29002. <member name="P:Aspose.Cells.Charts.Series.MarkerBackgroundColor">
  29003. <summary>
  29004. Represents the marker background color in a line chart, scatter chart, or radar chart.
  29005. </summary>
  29006. <remarks>NOTE: This member is now obsolete. Instead,
  29007. please use Marker.MarkerBackgroundColor property.
  29008. This property will be removed 12 months later since August 2012.
  29009. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  29010. </member>
  29011. <member name="P:Aspose.Cells.Charts.Series.MarkerBackgroundColorSetType">
  29012. <summary>
  29013. Gets or sets the marker background color set type.
  29014. </summary>
  29015. <remarks>NOTE: This member is now obsolete. Instead,
  29016. please use Marker.MarkerBackgroundColorSetType property.
  29017. This property will be removed 12 months later since August 2012.
  29018. Aspose apologizes for any inconvenience you may have experienced.
  29019. FormattingType.Automatic is same as ChartLineFormattingType.Automatic.
  29020. FormattingType.None is same as ChartLineFormattingType.None.
  29021. FormattingType.InnerCustom is same as ChartLineFormattingType.Solid.
  29022. </remarks>
  29023. </member>
  29024. <member name="P:Aspose.Cells.Charts.Series.PlotOnSecondAxis">
  29025. <summary>
  29026. Indicates if this series is plotted on second value axis.
  29027. </summary>
  29028. </member>
  29029. <member name="P:Aspose.Cells.Charts.Series.XErrorBar">
  29030. <summary>
  29031. Represents X direction error bar of the series.
  29032. </summary>
  29033. </member>
  29034. <member name="P:Aspose.Cells.Charts.Series.YErrorBar">
  29035. <summary>
  29036. Represents Y direction error bar of the series.
  29037. </summary>
  29038. </member>
  29039. <member name="P:Aspose.Cells.Charts.Series.HasHiLoLines">
  29040. <summary>
  29041. True if the line chart has high-low lines.
  29042. Applies only to line charts.
  29043. </summary>
  29044. </member>
  29045. <member name="P:Aspose.Cells.Charts.Series.HiLoLines">
  29046. <summary>
  29047. Returns a HiLoLines object that represents the high-low lines for a series on a line chart.
  29048. Applies only to line charts.
  29049. </summary>
  29050. </member>
  29051. <member name="P:Aspose.Cells.Charts.Series.HasSeriesLines">
  29052. <summary>
  29053. True if a stacked column chart or bar chart has series lines or
  29054. if a Pie of Pie chart or Bar of Pie chart has connector lines between the two sections.
  29055. Applies only to stacked column charts, bar charts, Pie of Pie charts, or Bar of Pie charts.
  29056. </summary>
  29057. </member>
  29058. <member name="P:Aspose.Cells.Charts.Series.SeriesLines">
  29059. <summary>
  29060. Returns a SeriesLines object that represents the series lines for a stacked bar chart or a stacked column chart.
  29061. Applies only to stacked bar and stacked column charts.
  29062. </summary>
  29063. </member>
  29064. <member name="P:Aspose.Cells.Charts.Series.HasDropLines">
  29065. <summary>
  29066. True if the chart has drop lines.
  29067. Applies only to line chart or area charts.
  29068. </summary>
  29069. </member>
  29070. <member name="P:Aspose.Cells.Charts.Series.DropLines">
  29071. <summary>
  29072. Returns a <see cref="T:Aspose.Cells.Drawing.Line" /> object that represents the drop lines for a series on the line chart or area chart.
  29073. Applies only to line chart or area charts.
  29074. </summary>
  29075. </member>
  29076. <member name="P:Aspose.Cells.Charts.Series.HasUpDownBars">
  29077. <summary>
  29078. True if a line chart has up and down bars.
  29079. Applies only to line charts.
  29080. </summary>
  29081. </member>
  29082. <member name="P:Aspose.Cells.Charts.Series.UpBars">
  29083. <summary>
  29084. Returns an DropBars object that represents the up bars on a line chart.
  29085. Applies only to line charts.
  29086. </summary>
  29087. </member>
  29088. <member name="P:Aspose.Cells.Charts.Series.DownBars">
  29089. <summary>
  29090. Returns a <see cref="T:Aspose.Cells.Charts.DropBars" /> object that represents the down bars on a line chart.
  29091. Applies only to line charts.
  29092. </summary>
  29093. </member>
  29094. <member name="P:Aspose.Cells.Charts.Series.IsColorVaried">
  29095. <summary>
  29096. Represents if the color of points is varied.
  29097. The chart must contain only one series.
  29098. </summary>
  29099. </member>
  29100. <member name="P:Aspose.Cells.Charts.Series.GapWidth">
  29101. <summary>
  29102. Returns or sets the space between bar or column clusters, as a percentage of the bar or column width.
  29103. The value of this property must be between 0 and 500.
  29104. </summary>
  29105. </member>
  29106. <member name="P:Aspose.Cells.Charts.Series.FirstSliceAngle">
  29107. <summary>
  29108. Gets or sets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical).
  29109. Applies only to pie, 3-D pie, and doughnut charts, 0 to 360.
  29110. </summary>
  29111. </member>
  29112. <member name="P:Aspose.Cells.Charts.Series.Overlap">
  29113. <summary>
  29114. Specifies how bars and columns are positioned.
  29115. Can be a value between ¨C 100 and 100.
  29116. Applies only to 2-D bar and 2-D column charts.
  29117. </summary>
  29118. </member>
  29119. <member name="P:Aspose.Cells.Charts.Series.SecondPlotSize">
  29120. <summary>
  29121. Returns or sets the size of the secondary section of either a pie of pie chart or a bar of pie chart,
  29122. as a percentage of the size of the primary pie.
  29123. Can be a value from 5 to 200.
  29124. </summary>
  29125. </member>
  29126. <member name="P:Aspose.Cells.Charts.Series.SplitType">
  29127. <summary>
  29128. Returns or sets a value that how to determine which data points are in the second pie or bar on a pie of pie or bar of
  29129. pie chart.
  29130. </summary>
  29131. </member>
  29132. <member name="P:Aspose.Cells.Charts.Series.SplitValue">
  29133. <summary>
  29134. Returns or sets a value that shall be used to determine which data points are in the second pie or bar on
  29135. a pie of pie or bar of pie chart.
  29136. </summary>
  29137. </member>
  29138. <member name="P:Aspose.Cells.Charts.Series.IsAutoSplit">
  29139. <summary>
  29140. Indicates whether the threshold value is automatic.
  29141. </summary>
  29142. </member>
  29143. <member name="P:Aspose.Cells.Charts.Series.BubbleScale">
  29144. <summary>
  29145. Gets or sets the scale factor for bubbles in the specified chart group.
  29146. It can be an integer value from 0 (zero) to 300,
  29147. corresponding to a percentage of the default size.
  29148. Applies only to bubble charts.
  29149. </summary>
  29150. </member>
  29151. <member name="P:Aspose.Cells.Charts.Series.SizeRepresents">
  29152. <summary>
  29153. Gets or sets what the bubble size represents on a bubble chart.
  29154. </summary>
  29155. <remarks>
  29156. BubbleSizeRepresents.SizeIsArea means the value <see cref="P:Aspose.Cells.Charts.Series.BubbleSizes" /> is the area of the bubble.
  29157. BubbleSizeRepresents.SizeIsWidth means the value <see cref="P:Aspose.Cells.Charts.Series.BubbleSizes" /> is the width of the bubble.
  29158. </remarks>
  29159. </member>
  29160. <member name="P:Aspose.Cells.Charts.Series.ShowNegativeBubbles">
  29161. <summary>
  29162. True if negative bubbles are shown for the chart group. Valid only for bubble charts.
  29163. </summary>
  29164. </member>
  29165. <member name="P:Aspose.Cells.Charts.Series.DoughnutHoleSize">
  29166. <summary>
  29167. Returns or sets the size of the hole in a doughnut chart group.
  29168. The hole size is expressed as a percentage of the chart size, between 10 and 90 percent.
  29169. </summary>
  29170. </member>
  29171. <member name="P:Aspose.Cells.Charts.Series.Explosion">
  29172. <summary>
  29173. The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter.
  29174. </summary>
  29175. </member>
  29176. <member name="P:Aspose.Cells.Charts.Series.HasRadarAxisLabels">
  29177. <summary>
  29178. True if a radar chart has category axis labels. Applies only to radar charts.
  29179. </summary>
  29180. </member>
  29181. <member name="P:Aspose.Cells.Charts.Series.HasLeaderLines">
  29182. <summary>
  29183. True if the series has leader lines.
  29184. </summary>
  29185. </member>
  29186. <member name="P:Aspose.Cells.Charts.Series.LeaderLines">
  29187. <summary>
  29188. Represents leader lines on a chart. Leader lines connect data labels to data points.
  29189. This object isn¡¯t a collection; there¡¯s no object that represents a single leader line.
  29190. </summary>
  29191. </member>
  29192. <member name="P:Aspose.Cells.Charts.Series.LegendEntry">
  29193. <summary>
  29194. Gets the legend entry according to this series.
  29195. </summary>
  29196. </member>
  29197. <member name="P:Aspose.Cells.Charts.Series.ShapeProperties">
  29198. <summary>
  29199. Gets the <seealso cref="T:Aspose.Cells.Drawing.ShapePropertyCollection" /> object that holds the visual shape properties of the Series.
  29200. </summary>
  29201. </member>
  29202. <member name="T:Aspose.Cells.FindOptions">
  29203. <summary>
  29204. Represents find options.
  29205. </summary>
  29206. <example>
  29207. <code>
  29208. [C#]
  29209. //Instantiate the workbook object
  29210. Workbook workbook = new Workbook("C:\\book1.xls");
  29211. //Get Cells collection
  29212. Cells cells = workbook.Worksheets[0].Cells;
  29213. //Instantiate FindOptions Object
  29214. FindOptions findOptions = new FindOptions();
  29215. //Create a Cells Area
  29216. CellArea ca = new CellArea();
  29217. ca.StartRow = 8;
  29218. ca.StartColumn = 2;
  29219. ca.EndRow = 17;
  29220. ca.EndColumn = 13;
  29221. //Set cells area for find options
  29222. findOptions.SetRange(ca);
  29223. //Set searching properties
  29224. findOptions.SearchBackward = false;
  29225. findOptions.SeachOrderByRows = true;
  29226. findOptions.LookInType = LookInType.Values;
  29227. //Find the cell with 0 value
  29228. Cell cell = cells.Find(0, null, findOptions);
  29229. [VB.NET]
  29230. 'Instantiate the workbook object
  29231. Dim workbook As New Workbook("C:\book1.xls")
  29232. 'Get Cells collection
  29233. Dim cells As Cells = workbook.Worksheets(0).Cells
  29234. 'Instantiate FindOptions Object
  29235. Dim findOptions As New FindOptions()
  29236. 'Create a Cells Area
  29237. Dim ca As New CellArea()
  29238. ca.StartRow = 8
  29239. ca.StartColumn = 2
  29240. ca.EndRow = 17
  29241. ca.EndColumn = 13
  29242. 'Set cells area for find options
  29243. findOptions.SetRange(ca)
  29244. 'Set searching properties
  29245. findOptions.SearchBackward = True
  29246. findOptions.SeachOrderByRows = True
  29247. findOptions.LookInType = LookInType.Values
  29248. 'Find the cell with 0 value
  29249. Dim cell As Cell = cells.Find(0, Nothing, findOptions)
  29250. </code>
  29251. </example>
  29252. </member>
  29253. <member name="M:Aspose.Cells.FindOptions.GetRange">
  29254. <summary>
  29255. Gets and sets the searched range.
  29256. </summary>
  29257. <returns>
  29258. Returns the searched range.
  29259. </returns>
  29260. </member>
  29261. <member name="M:Aspose.Cells.FindOptions.SetRange(Aspose.Cells.CellArea)">
  29262. <summary>
  29263. Sets the searched range.
  29264. </summary>
  29265. <param name="ca">the searched range.</param>
  29266. </member>
  29267. <member name="P:Aspose.Cells.FindOptions.IsCaseSensitive">
  29268. <summary>
  29269. Indicates if the searched string is case sensitive.
  29270. </summary>
  29271. <remarks>NOTE: This member is now obsolete. Instead,
  29272. please use FindOptions.CaseSensitive property.
  29273. This property will be removed 12 months later since June 2010.
  29274. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  29275. </member>
  29276. <member name="P:Aspose.Cells.FindOptions.CaseSensitive">
  29277. <summary>
  29278. Indicates if the searched string is case sensitive.
  29279. </summary>
  29280. </member>
  29281. <member name="P:Aspose.Cells.FindOptions.LookAtType">
  29282. <summary>
  29283. Look at type.
  29284. </summary>
  29285. </member>
  29286. <member name="P:Aspose.Cells.FindOptions.IsRangeSet">
  29287. <summary>
  29288. Indicates whether the searched range is set.
  29289. </summary>
  29290. </member>
  29291. <member name="P:Aspose.Cells.FindOptions.SearchNext">
  29292. <summary>
  29293. Search order. True: search next. False: search previous.
  29294. </summary>
  29295. <remarks>NOTE: This member is now obsolete. Instead,
  29296. please use FindOptions.SearchBackward property.
  29297. This property will be removed 12 months later since November 2018.
  29298. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  29299. </member>
  29300. <member name="P:Aspose.Cells.FindOptions.SearchBackward">
  29301. <summary>
  29302. Whether search backward for cells.
  29303. </summary>
  29304. </member>
  29305. <member name="P:Aspose.Cells.FindOptions.SeachOrderByRows">
  29306. <summary>
  29307. Indicates whether search order by rows or columns.
  29308. </summary>
  29309. </member>
  29310. <member name="P:Aspose.Cells.FindOptions.LookInType">
  29311. <summary>
  29312. Look in type.
  29313. </summary>
  29314. </member>
  29315. <member name="P:Aspose.Cells.FindOptions.RegexKey">
  29316. <summary>
  29317. Indicates whether the searched key is regex. If true then the searched key will be taken as regex.
  29318. </summary>
  29319. </member>
  29320. <member name="P:Aspose.Cells.FindOptions.ValueTypeSensitive">
  29321. <summary>
  29322. Indicates whether searched cell value type should be same with the searched key.
  29323. </summary>
  29324. </member>
  29325. <member name="P:Aspose.Cells.FindOptions.Style">
  29326. <summary>
  29327. The format to search for.
  29328. </summary>
  29329. </member>
  29330. <member name="P:Aspose.Cells.FindOptions.ConvertNumericData">
  29331. <summary>
  29332. Gets or sets a value that indicates whether converting the searched string value to numeric data.
  29333. </summary>
  29334. </member>
  29335. <member name="T:Aspose.Cells.Drawing.AutoShapeType">
  29336. <summary>
  29337. Represents all built-in auto shape type.
  29338. </summary>
  29339. </member>
  29340. <member name="F:Aspose.Cells.Drawing.AutoShapeType.NotPrimitive">
  29341. <summary>
  29342. </summary>
  29343. </member>
  29344. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Rectangle">
  29345. <summary>
  29346. </summary>
  29347. </member>
  29348. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundedRectangle">
  29349. <summary>
  29350. </summary>
  29351. </member>
  29352. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Oval">
  29353. <summary>
  29354. </summary>
  29355. </member>
  29356. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Diamond">
  29357. <summary>
  29358. </summary>
  29359. </member>
  29360. <member name="F:Aspose.Cells.Drawing.AutoShapeType.IsoscelesTriangle">
  29361. <summary>
  29362. </summary>
  29363. </member>
  29364. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RightTriangle">
  29365. <summary>
  29366. </summary>
  29367. </member>
  29368. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Parallelogram">
  29369. <summary>
  29370. </summary>
  29371. </member>
  29372. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Trapezoid">
  29373. <summary>
  29374. </summary>
  29375. </member>
  29376. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Hexagon">
  29377. <summary>
  29378. </summary>
  29379. </member>
  29380. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Octagon">
  29381. <summary>
  29382. </summary>
  29383. </member>
  29384. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Cross">
  29385. <summary>
  29386. </summary>
  29387. </member>
  29388. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star5">
  29389. <summary>
  29390. </summary>
  29391. </member>
  29392. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RightArrow">
  29393. <summary>
  29394. </summary>
  29395. </member>
  29396. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HomePlate">
  29397. <summary>
  29398. </summary>
  29399. </member>
  29400. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Cube">
  29401. <summary>
  29402. </summary>
  29403. </member>
  29404. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Balloon">
  29405. <summary>
  29406. </summary>
  29407. </member>
  29408. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Seal">
  29409. <summary>
  29410. </summary>
  29411. </member>
  29412. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Arc">
  29413. <summary>
  29414. </summary>
  29415. </member>
  29416. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Line">
  29417. <summary>
  29418. </summary>
  29419. </member>
  29420. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Plaque">
  29421. <summary>
  29422. </summary>
  29423. </member>
  29424. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Can">
  29425. <summary>
  29426. </summary>
  29427. </member>
  29428. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Donut">
  29429. <summary>
  29430. </summary>
  29431. </member>
  29432. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextSimple">
  29433. <summary>
  29434. </summary>
  29435. </member>
  29436. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextOctagon">
  29437. <summary>
  29438. </summary>
  29439. </member>
  29440. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextHexagon">
  29441. <summary>
  29442. </summary>
  29443. </member>
  29444. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCurve">
  29445. <summary>
  29446. </summary>
  29447. </member>
  29448. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextWave">
  29449. <summary>
  29450. </summary>
  29451. </member>
  29452. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextRing">
  29453. <summary>
  29454. </summary>
  29455. </member>
  29456. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextOnCurve">
  29457. <summary>
  29458. </summary>
  29459. </member>
  29460. <member name="F:Aspose.Cells.Drawing.AutoShapeType.msosptTextOnRing">
  29461. <summary>
  29462. </summary>
  29463. </member>
  29464. <member name="F:Aspose.Cells.Drawing.AutoShapeType.StraightConnector">
  29465. <summary>
  29466. </summary>
  29467. </member>
  29468. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BentConnector2">
  29469. <summary>
  29470. </summary>
  29471. </member>
  29472. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ElbowConnector">
  29473. <summary>
  29474. </summary>
  29475. </member>
  29476. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BentConnector4">
  29477. <summary>
  29478. </summary>
  29479. </member>
  29480. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BentConnector5">
  29481. <summary>
  29482. </summary>
  29483. </member>
  29484. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedConnector2">
  29485. <summary>
  29486. </summary>
  29487. </member>
  29488. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedConnector">
  29489. <summary>
  29490. </summary>
  29491. </member>
  29492. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedConnector4">
  29493. <summary>
  29494. </summary>
  29495. </member>
  29496. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedConnector5">
  29497. <summary>
  29498. </summary>
  29499. </member>
  29500. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutNoBorder2">
  29501. <summary>
  29502. </summary>
  29503. </member>
  29504. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutNoBorder3">
  29505. <summary>
  29506. </summary>
  29507. </member>
  29508. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutNoBorder4">
  29509. <summary>
  29510. </summary>
  29511. </member>
  29512. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithAccentBar2">
  29513. <summary>
  29514. </summary>
  29515. </member>
  29516. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithAccentBar3">
  29517. <summary>
  29518. </summary>
  29519. </member>
  29520. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithAccentBar4">
  29521. <summary>
  29522. </summary>
  29523. </member>
  29524. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorder2">
  29525. <summary>
  29526. </summary>
  29527. </member>
  29528. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorder3">
  29529. <summary>
  29530. </summary>
  29531. </member>
  29532. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorder4">
  29533. <summary>
  29534. </summary>
  29535. </member>
  29536. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorderAndAccentBar2">
  29537. <summary>
  29538. </summary>
  29539. </member>
  29540. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorderAndAccentBar3">
  29541. <summary>
  29542. </summary>
  29543. </member>
  29544. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorderAndAccentBar4">
  29545. <summary>
  29546. </summary>
  29547. </member>
  29548. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DownRibbon">
  29549. <summary>
  29550. </summary>
  29551. </member>
  29552. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UpRibbon">
  29553. <summary>
  29554. </summary>
  29555. </member>
  29556. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Chevron">
  29557. <summary>
  29558. </summary>
  29559. </member>
  29560. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RegularPentagon">
  29561. <summary>
  29562. </summary>
  29563. </member>
  29564. <member name="F:Aspose.Cells.Drawing.AutoShapeType.NoSymbol">
  29565. <summary>
  29566. </summary>
  29567. </member>
  29568. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star8">
  29569. <summary>
  29570. </summary>
  29571. </member>
  29572. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star16">
  29573. <summary>
  29574. </summary>
  29575. </member>
  29576. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star32">
  29577. <summary>
  29578. </summary>
  29579. </member>
  29580. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RectangularCallout">
  29581. <summary>
  29582. </summary>
  29583. </member>
  29584. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundedRectangularCallout">
  29585. <summary>
  29586. </summary>
  29587. </member>
  29588. <member name="F:Aspose.Cells.Drawing.AutoShapeType.OvalCallout">
  29589. <summary>
  29590. </summary>
  29591. </member>
  29592. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Wave">
  29593. <summary>
  29594. </summary>
  29595. </member>
  29596. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FoldedCorner">
  29597. <summary>
  29598. </summary>
  29599. </member>
  29600. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftArrow">
  29601. <summary>
  29602. </summary>
  29603. </member>
  29604. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DownArrow">
  29605. <summary>
  29606. </summary>
  29607. </member>
  29608. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UpArrow">
  29609. <summary>
  29610. </summary>
  29611. </member>
  29612. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftRightArrow">
  29613. <summary>
  29614. </summary>
  29615. </member>
  29616. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UpDownArrow">
  29617. <summary>
  29618. </summary>
  29619. </member>
  29620. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Explosion1">
  29621. <summary>
  29622. </summary>
  29623. </member>
  29624. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Explosion2">
  29625. <summary>
  29626. </summary>
  29627. </member>
  29628. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LightningBolt">
  29629. <summary>
  29630. </summary>
  29631. </member>
  29632. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Heart">
  29633. <summary>
  29634. </summary>
  29635. </member>
  29636. <member name="F:Aspose.Cells.Drawing.AutoShapeType.PictureFrame">
  29637. <summary>
  29638. </summary>
  29639. </member>
  29640. <member name="F:Aspose.Cells.Drawing.AutoShapeType.QuadArrow">
  29641. <summary>
  29642. </summary>
  29643. </member>
  29644. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftArrowCallout">
  29645. <summary>
  29646. </summary>
  29647. </member>
  29648. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RightArrowCallout">
  29649. <summary>
  29650. </summary>
  29651. </member>
  29652. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UpArrowCallout">
  29653. <summary>
  29654. </summary>
  29655. </member>
  29656. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DownArrowCallout">
  29657. <summary>
  29658. </summary>
  29659. </member>
  29660. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftRightArrowCallout">
  29661. <summary>
  29662. </summary>
  29663. </member>
  29664. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UpDownArrowCallout">
  29665. <summary>
  29666. </summary>
  29667. </member>
  29668. <member name="F:Aspose.Cells.Drawing.AutoShapeType.QuadArrowCallout">
  29669. <summary>
  29670. </summary>
  29671. </member>
  29672. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Bevel">
  29673. <summary>
  29674. </summary>
  29675. </member>
  29676. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftBracket">
  29677. <summary>
  29678. </summary>
  29679. </member>
  29680. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RightBracket">
  29681. <summary>
  29682. </summary>
  29683. </member>
  29684. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftBrace">
  29685. <summary>
  29686. </summary>
  29687. </member>
  29688. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RightBrace">
  29689. <summary>
  29690. </summary>
  29691. </member>
  29692. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftUpArrow">
  29693. <summary>
  29694. </summary>
  29695. </member>
  29696. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BentUpArrow">
  29697. <summary>
  29698. </summary>
  29699. </member>
  29700. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BentArrow">
  29701. <summary>
  29702. </summary>
  29703. </member>
  29704. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star24">
  29705. <summary>
  29706. </summary>
  29707. </member>
  29708. <member name="F:Aspose.Cells.Drawing.AutoShapeType.StripedRightArrow">
  29709. <summary>
  29710. </summary>
  29711. </member>
  29712. <member name="F:Aspose.Cells.Drawing.AutoShapeType.NotchedRightArrow">
  29713. <summary>
  29714. </summary>
  29715. </member>
  29716. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BlockArc">
  29717. <summary>
  29718. </summary>
  29719. </member>
  29720. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SmileyFace">
  29721. <summary>
  29722. </summary>
  29723. </member>
  29724. <member name="F:Aspose.Cells.Drawing.AutoShapeType.VerticalScroll">
  29725. <summary>
  29726. </summary>
  29727. </member>
  29728. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HorizontalScroll">
  29729. <summary>
  29730. </summary>
  29731. </member>
  29732. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CircularArrow">
  29733. <summary>
  29734. </summary>
  29735. </member>
  29736. <member name="F:Aspose.Cells.Drawing.AutoShapeType.NotchedCircularArrow">
  29737. <summary>
  29738. A value that SHOULD NOT be used.
  29739. </summary>
  29740. </member>
  29741. <member name="F:Aspose.Cells.Drawing.AutoShapeType.UTurnArrow">
  29742. <summary>
  29743. </summary>
  29744. </member>
  29745. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedRightArrow">
  29746. <summary>
  29747. </summary>
  29748. </member>
  29749. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedLeftArrow">
  29750. <summary>
  29751. </summary>
  29752. </member>
  29753. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedUpArrow">
  29754. <summary>
  29755. </summary>
  29756. </member>
  29757. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedDownArrow">
  29758. <summary>
  29759. </summary>
  29760. </member>
  29761. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CloudCallout">
  29762. <summary>
  29763. </summary>
  29764. </member>
  29765. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedDownRibbon">
  29766. <summary>
  29767. </summary>
  29768. </member>
  29769. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CurvedUpRibbon">
  29770. <summary>
  29771. </summary>
  29772. </member>
  29773. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartProcess">
  29774. <summary>
  29775. </summary>
  29776. </member>
  29777. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartDecision">
  29778. <summary>
  29779. </summary>
  29780. </member>
  29781. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartData">
  29782. <summary>
  29783. </summary>
  29784. </member>
  29785. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartPredefinedProcess">
  29786. <summary>
  29787. </summary>
  29788. </member>
  29789. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartInternalStorage">
  29790. <summary>
  29791. </summary>
  29792. </member>
  29793. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartDocument">
  29794. <summary>
  29795. </summary>
  29796. </member>
  29797. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartMultidocument">
  29798. <summary>
  29799. </summary>
  29800. </member>
  29801. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartTerminator">
  29802. <summary>
  29803. </summary>
  29804. </member>
  29805. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartPreparation">
  29806. <summary>
  29807. </summary>
  29808. </member>
  29809. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartManualInput">
  29810. <summary>
  29811. </summary>
  29812. </member>
  29813. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartManualOperation">
  29814. <summary>
  29815. </summary>
  29816. </member>
  29817. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartConnector">
  29818. <summary>
  29819. </summary>
  29820. </member>
  29821. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartCard">
  29822. <summary>
  29823. </summary>
  29824. </member>
  29825. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartPunchedTape">
  29826. <summary>
  29827. </summary>
  29828. </member>
  29829. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartSummingJunction">
  29830. <summary>
  29831. </summary>
  29832. </member>
  29833. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartOr">
  29834. <summary>
  29835. </summary>
  29836. </member>
  29837. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartCollate">
  29838. <summary>
  29839. </summary>
  29840. </member>
  29841. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartSort">
  29842. <summary>
  29843. </summary>
  29844. </member>
  29845. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartExtract">
  29846. <summary>
  29847. </summary>
  29848. </member>
  29849. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartMerge">
  29850. <summary>
  29851. </summary>
  29852. </member>
  29853. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartOfflineStorage">
  29854. <summary>
  29855. </summary>
  29856. </member>
  29857. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartStoredData">
  29858. <summary>
  29859. </summary>
  29860. </member>
  29861. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartSequentialAccessStorage">
  29862. <summary>
  29863. </summary>
  29864. </member>
  29865. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartMagneticDisk">
  29866. <summary>
  29867. </summary>
  29868. </member>
  29869. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartDirectAccessStorage">
  29870. <summary>
  29871. </summary>
  29872. </member>
  29873. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartDisplay">
  29874. <summary>
  29875. </summary>
  29876. </member>
  29877. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartDelay">
  29878. <summary>
  29879. </summary>
  29880. </member>
  29881. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextPlainText">
  29882. <summary>
  29883. A plain text shape.
  29884. </summary>
  29885. </member>
  29886. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextStop">
  29887. <summary>
  29888. An octagonal text shape.
  29889. </summary>
  29890. </member>
  29891. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextTriangle">
  29892. <summary>
  29893. A triangular text shape pointing upwards.
  29894. </summary>
  29895. </member>
  29896. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextTriangleInverted">
  29897. <summary>
  29898. A triangular text shape pointing downwards.
  29899. </summary>
  29900. </member>
  29901. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextChevron">
  29902. <summary>
  29903. A chevron text shape pointing upwards.
  29904. </summary>
  29905. </member>
  29906. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextChevronInverted">
  29907. <summary>
  29908. A chevron text shape pointing downwards.
  29909. </summary>
  29910. </member>
  29911. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextRingInside">
  29912. <summary>
  29913. A circular text shape, as if reading an inscription on the inside of a ring.
  29914. </summary>
  29915. </member>
  29916. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextRingOutside">
  29917. <summary>
  29918. A circular text shape, as if reading an inscription on the outside of a ring.
  29919. </summary>
  29920. </member>
  29921. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchUpCurve">
  29922. <summary>
  29923. An upward arching curved text shape.
  29924. </summary>
  29925. </member>
  29926. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchDownCurve">
  29927. <summary>
  29928. A downward arching curved text shape.
  29929. </summary>
  29930. </member>
  29931. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCircleCurve">
  29932. <summary>
  29933. A circular text shape.
  29934. </summary>
  29935. </member>
  29936. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextButtonCurve">
  29937. <summary>
  29938. A text shape that resembles a button.
  29939. </summary>
  29940. </member>
  29941. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchUpPour">
  29942. <summary>
  29943. An upward arching text shape.
  29944. </summary>
  29945. </member>
  29946. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchDownPour">
  29947. <summary>
  29948. A downward arching text shape.
  29949. </summary>
  29950. </member>
  29951. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCirclePour">
  29952. <summary>
  29953. A circular text shape.
  29954. </summary>
  29955. </member>
  29956. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextButtonPour">
  29957. <summary>
  29958. A text shape that resembles a button.
  29959. </summary>
  29960. </member>
  29961. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCurveUp">
  29962. <summary>
  29963. An upward curving text shape.
  29964. </summary>
  29965. </member>
  29966. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCurveDown">
  29967. <summary>
  29968. A downward curving text shape.
  29969. </summary>
  29970. </member>
  29971. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCascadeUp">
  29972. <summary>
  29973. A cascading text shape pointed upwards.
  29974. </summary>
  29975. </member>
  29976. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCascadeDown">
  29977. <summary>
  29978. A cascading text shape pointed downwards.
  29979. </summary>
  29980. </member>
  29981. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextWave1">
  29982. <summary>
  29983. A wavy text shape.
  29984. </summary>
  29985. </member>
  29986. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextWave2">
  29987. <summary>
  29988. A wavy text shape.
  29989. </summary>
  29990. </member>
  29991. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextWave3">
  29992. <summary>
  29993. A wavy text shape.
  29994. </summary>
  29995. <remarks>
  29996. NOTE: This enum is now obsolete. Instead, please use AutoShape.TextDoubleWave1.
  29997. This property will be removed 12 months later since April 2016.
  29998. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  29999. </member>
  30000. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextWave4">
  30001. <summary>
  30002. A wavy text shape.
  30003. </summary>
  30004. <remarks>
  30005. NOTE: This enum is now obsolete. Instead, please use AutoShape.TextDoubleWave2.
  30006. This property will be removed 12 months later since April 2016.
  30007. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  30008. </member>
  30009. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDoubleWave1">
  30010. <summary>
  30011. A wavy text shape.
  30012. </summary>
  30013. </member>
  30014. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDoubleWave2">
  30015. <summary>
  30016. A wavy text shape.
  30017. </summary>
  30018. </member>
  30019. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextInflate">
  30020. <summary>
  30021. A text shape that expands vertically in the middle.
  30022. </summary>
  30023. </member>
  30024. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDeflate">
  30025. <summary>
  30026. A text shape that shrinks vertically in the middle.
  30027. </summary>
  30028. </member>
  30029. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextInflateBottom">
  30030. <summary>
  30031. A text shape that expands downward in the middle.
  30032. </summary>
  30033. </member>
  30034. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDeflateBottom">
  30035. <summary>
  30036. A text shape that shrinks upwards in the middle.
  30037. </summary>
  30038. </member>
  30039. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextInflateTop">
  30040. <summary>
  30041. A text shape that expands upward in the middle.
  30042. </summary>
  30043. </member>
  30044. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDeflateTop">
  30045. <summary>
  30046. A text shape that shrinks downward in the middle.
  30047. </summary>
  30048. </member>
  30049. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDeflateInflate">
  30050. <summary>
  30051. A text shape where lower lines expand upward. Upper lines shrink to compensate.
  30052. </summary>
  30053. </member>
  30054. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextDeflateInflateDeflate">
  30055. <summary>
  30056. A text shape where lines in the center expand vertically. Upper and lower lines shrink to compensate.
  30057. </summary>
  30058. </member>
  30059. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextFadeRight">
  30060. <summary>
  30061. A text shape that shrinks vertically on the right side.
  30062. </summary>
  30063. </member>
  30064. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextFadeLeft">
  30065. <summary>
  30066. A text shape that shrinks vertically on the left side.
  30067. </summary>
  30068. </member>
  30069. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextFadeUp">
  30070. <summary>
  30071. A text shape that shrinks horizontally on top.
  30072. </summary>
  30073. </member>
  30074. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextFadeDown">
  30075. <summary>
  30076. A text shape that shrinks horizontally on bottom.
  30077. </summary>
  30078. </member>
  30079. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextSlantUp">
  30080. <summary>
  30081. An upward slanted text shape.
  30082. </summary>
  30083. </member>
  30084. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextSlantDown">
  30085. <summary>
  30086. A downward slanted text shape.
  30087. </summary>
  30088. </member>
  30089. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCanUp">
  30090. <summary>
  30091. A text shape that is curved upwards as if being read on the side of a can.
  30092. </summary>
  30093. </member>
  30094. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextCanDown">
  30095. <summary>
  30096. A text shape that is curved downwards as if being read on the side of a can.
  30097. </summary>
  30098. </member>
  30099. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartAlternateProcess">
  30100. <summary>
  30101. </summary>
  30102. </member>
  30103. <member name="F:Aspose.Cells.Drawing.AutoShapeType.FlowChartOffpageConnector">
  30104. <summary>
  30105. </summary>
  30106. </member>
  30107. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutNoBorder1">
  30108. <summary>
  30109. </summary>
  30110. </member>
  30111. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithAccentBar1">
  30112. <summary>
  30113. </summary>
  30114. </member>
  30115. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorder1">
  30116. <summary>
  30117. </summary>
  30118. </member>
  30119. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineCalloutWithBorderAndAccentBar1">
  30120. <summary>
  30121. </summary>
  30122. </member>
  30123. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftRightUpArrow">
  30124. <summary>
  30125. </summary>
  30126. </member>
  30127. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Sun">
  30128. <summary>
  30129. </summary>
  30130. </member>
  30131. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Moon">
  30132. <summary>
  30133. </summary>
  30134. </member>
  30135. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DoubleBracket">
  30136. <summary>
  30137. A shape enclosed in brackets.
  30138. </summary>
  30139. </member>
  30140. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DoubleBrace">
  30141. <summary>
  30142. A shape enclosed in braces.
  30143. </summary>
  30144. </member>
  30145. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star4">
  30146. <summary>
  30147. </summary>
  30148. </member>
  30149. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DoubleWave">
  30150. <summary>
  30151. </summary>
  30152. </member>
  30153. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BlankActionButton">
  30154. <summary>
  30155. </summary>
  30156. </member>
  30157. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HomeActionButton">
  30158. <summary>
  30159. </summary>
  30160. </member>
  30161. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HelpActionButton">
  30162. <summary>
  30163. </summary>
  30164. </member>
  30165. <member name="F:Aspose.Cells.Drawing.AutoShapeType.InformationActionButton">
  30166. <summary>
  30167. </summary>
  30168. </member>
  30169. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ForwardNextActionButton">
  30170. <summary>
  30171. </summary>
  30172. </member>
  30173. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BackPreviousActionButton">
  30174. <summary>
  30175. </summary>
  30176. </member>
  30177. <member name="F:Aspose.Cells.Drawing.AutoShapeType.EndActionButton">
  30178. <summary>
  30179. </summary>
  30180. </member>
  30181. <member name="F:Aspose.Cells.Drawing.AutoShapeType.BeginningActionButton">
  30182. <summary>
  30183. </summary>
  30184. </member>
  30185. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ReturnActionButton">
  30186. <summary>
  30187. </summary>
  30188. </member>
  30189. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DocumentActionButton">
  30190. <summary>
  30191. </summary>
  30192. </member>
  30193. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SoundActionButton">
  30194. <summary>
  30195. </summary>
  30196. </member>
  30197. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MovieActionButton">
  30198. <summary>
  30199. </summary>
  30200. </member>
  30201. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HostControl">
  30202. <summary>
  30203. This value SHOULD NOT be used.
  30204. </summary>
  30205. </member>
  30206. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextBox">
  30207. <summary>
  30208. </summary>
  30209. </member>
  30210. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Heptagon">
  30211. <summary>
  30212. </summary>
  30213. </member>
  30214. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Decagon">
  30215. <summary>
  30216. </summary>
  30217. </member>
  30218. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Dodecagon">
  30219. <summary>
  30220. </summary>
  30221. </member>
  30222. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star6">
  30223. <summary>
  30224. </summary>
  30225. </member>
  30226. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star7">
  30227. <summary>
  30228. </summary>
  30229. </member>
  30230. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star10">
  30231. <summary>
  30232. </summary>
  30233. </member>
  30234. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Star12">
  30235. <summary>
  30236. </summary>
  30237. </member>
  30238. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundSingleCornerRectangle">
  30239. <summary>
  30240. </summary>
  30241. </member>
  30242. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundSameSideCornerRectangle">
  30243. <summary>
  30244. </summary>
  30245. </member>
  30246. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundDiagonalCornerRectangle">
  30247. <summary>
  30248. </summary>
  30249. </member>
  30250. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SnipRoundSingleCornerRectangle">
  30251. <summary>
  30252. </summary>
  30253. </member>
  30254. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SnipSingleCornerRectangle">
  30255. <summary>
  30256. </summary>
  30257. </member>
  30258. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SnipSameSideCornerRectangle">
  30259. <summary>
  30260. </summary>
  30261. </member>
  30262. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SnipDiagonalCornerRectangle">
  30263. <summary>
  30264. </summary>
  30265. </member>
  30266. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Teardrop">
  30267. <summary>
  30268. </summary>
  30269. </member>
  30270. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Pie">
  30271. <summary>
  30272. </summary>
  30273. </member>
  30274. <member name="F:Aspose.Cells.Drawing.AutoShapeType.HalfFrame">
  30275. <summary>
  30276. </summary>
  30277. </member>
  30278. <member name="F:Aspose.Cells.Drawing.AutoShapeType.L_Shape">
  30279. <summary>
  30280. </summary>
  30281. </member>
  30282. <member name="F:Aspose.Cells.Drawing.AutoShapeType.DiagonalStripe">
  30283. <summary>
  30284. </summary>
  30285. </member>
  30286. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Chord">
  30287. <summary>
  30288. </summary>
  30289. </member>
  30290. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Cloud">
  30291. <summary>
  30292. </summary>
  30293. </member>
  30294. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathPlus">
  30295. <summary>
  30296. </summary>
  30297. </member>
  30298. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathMinus">
  30299. <summary>
  30300. </summary>
  30301. </member>
  30302. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathMultiply">
  30303. <summary>
  30304. </summary>
  30305. </member>
  30306. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathDivide">
  30307. <summary>
  30308. </summary>
  30309. </member>
  30310. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathEqual">
  30311. <summary>
  30312. </summary>
  30313. </member>
  30314. <member name="F:Aspose.Cells.Drawing.AutoShapeType.MathNotEqual">
  30315. <summary>
  30316. </summary>
  30317. </member>
  30318. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LineInv">
  30319. <summary>
  30320. </summary>
  30321. </member>
  30322. <member name="F:Aspose.Cells.Drawing.AutoShapeType.NonIsoscelesTrapezoid">
  30323. <summary>
  30324. </summary>
  30325. </member>
  30326. <member name="F:Aspose.Cells.Drawing.AutoShapeType.PieWedge">
  30327. <summary>
  30328. </summary>
  30329. </member>
  30330. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftCircularArrow">
  30331. <summary>
  30332. </summary>
  30333. </member>
  30334. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftRightCircularArrow">
  30335. <summary>
  30336. </summary>
  30337. </member>
  30338. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SwooshArrow">
  30339. <summary>
  30340. </summary>
  30341. </member>
  30342. <member name="F:Aspose.Cells.Drawing.AutoShapeType.LeftRightRibbon">
  30343. <summary>
  30344. </summary>
  30345. </member>
  30346. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextNoShape">
  30347. <summary>
  30348. </summary>
  30349. </member>
  30350. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Gear6">
  30351. <summary>
  30352. </summary>
  30353. </member>
  30354. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Gear9">
  30355. <summary>
  30356. </summary>
  30357. </member>
  30358. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Funnel">
  30359. <summary>
  30360. </summary>
  30361. </member>
  30362. <member name="F:Aspose.Cells.Drawing.AutoShapeType.CornerTabs">
  30363. <summary>
  30364. </summary>
  30365. </member>
  30366. <member name="F:Aspose.Cells.Drawing.AutoShapeType.SquareTabs">
  30367. <summary>
  30368. </summary>
  30369. </member>
  30370. <member name="F:Aspose.Cells.Drawing.AutoShapeType.PlaqueTabs">
  30371. <summary>
  30372. </summary>
  30373. </member>
  30374. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ChartX">
  30375. <summary>
  30376. </summary>
  30377. </member>
  30378. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ChartStar">
  30379. <summary>
  30380. </summary>
  30381. </member>
  30382. <member name="F:Aspose.Cells.Drawing.AutoShapeType.ChartPlus">
  30383. <summary>
  30384. </summary>
  30385. </member>
  30386. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Frame">
  30387. <summary>
  30388. </summary>
  30389. </member>
  30390. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Model3D">
  30391. <summary>
  30392. </summary>
  30393. </member>
  30394. <member name="F:Aspose.Cells.Drawing.AutoShapeType.RoundCallout">
  30395. <summary>
  30396. There is no such type in Excel
  30397. </summary>
  30398. </member>
  30399. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchLeftPour">
  30400. <summary>
  30401. There is no such type in Excel
  30402. </summary>
  30403. </member>
  30404. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchRightPour">
  30405. <summary>
  30406. There is no such type in Excel
  30407. </summary>
  30408. </member>
  30409. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchLeftCurve">
  30410. <summary>
  30411. There is no such type in Excel
  30412. </summary>
  30413. </member>
  30414. <member name="F:Aspose.Cells.Drawing.AutoShapeType.TextArchRightCurve">
  30415. <summary>
  30416. There is no such type in Excel
  30417. </summary>
  30418. </member>
  30419. <member name="F:Aspose.Cells.Drawing.AutoShapeType.Unknown">
  30420. <summary>
  30421. </summary>
  30422. </member>
  30423. <member name="T:Aspose.Cells.Charts.Axis">
  30424. <summary>
  30425. Encapsulates the object that represents a chart's axis.
  30426. </summary>
  30427. <example>
  30428. <code>
  30429. [C#]
  30430. //Instantiating a Workbook object
  30431. Workbook workbook = new Workbook();
  30432. //Adding a new worksheet to the Excel object
  30433. int sheetIndex = workbook.Worksheets.Add();
  30434. //Obtaining the reference of the newly added worksheet by passing its sheet index
  30435. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  30436. //Adding a sample value to "A1" cell
  30437. worksheet.Cells["A1"].PutValue(50);
  30438. //Adding a sample value to "A2" cell
  30439. worksheet.Cells["A2"].PutValue(100);
  30440. //Adding a sample value to "A3" cell
  30441. worksheet.Cells["A3"].PutValue(150);
  30442. //Adding a sample value to "B1" cell
  30443. worksheet.Cells["B1"].PutValue(4);
  30444. //Adding a sample value to "B2" cell
  30445. worksheet.Cells["B2"].PutValue(20);
  30446. //Adding a sample value to "B3" cell
  30447. worksheet.Cells["B3"].PutValue(50);
  30448. //Adding a chart to the worksheet
  30449. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 5);
  30450. //Accessing the instance of the newly added chart
  30451. Chart chart = worksheet.Charts[chartIndex];
  30452. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  30453. chart.NSeries.Add("A1:B3", true);
  30454. //Set the max value of value axis
  30455. chart.ValueAxis.MaxValue = 200;
  30456. //Set the min value of value axis
  30457. chart.ValueAxis.MinValue = 0;
  30458. //Set the major unit
  30459. chart.ValueAxis.MajorUnit = 25;
  30460. //Category(X) axis crosses at the maxinum value.
  30461. chart.ValueAxis.Crosses = CrossType.Maximum;
  30462. //Set he number of categories or series between tick-mark labels.
  30463. chart.CategoryAxis.TickLabelSpacing = 2;
  30464. //Saving the Excel file
  30465. workbook.Save("C:\\book1.xls");
  30466. [Visual Basic]
  30467. 'Instantiating a Workbook object
  30468. Dim workbook As Workbook = New Workbook()
  30469. 'Adding a new worksheet to the Excel object
  30470. Dim sheetIndex As Int32 = workbook.Worksheets.Add()
  30471. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  30472. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  30473. 'Adding a sample value to "A1" cell
  30474. worksheet.Cells("A1").PutValue(50)
  30475. 'Adding a sample value to "A2" cell
  30476. worksheet.Cells("A2").PutValue(100)
  30477. 'Adding a sample value to "A3" cell
  30478. worksheet.Cells("A3").PutValue(150)
  30479. 'Adding a sample value to "B1" cell
  30480. worksheet.Cells("B1").PutValue(4)
  30481. 'Adding a sample value to "B2" cell
  30482. worksheet.Cells("B2").PutValue(20)
  30483. 'Adding a sample value to "B3" cell
  30484. worksheet.Cells("B3").PutValue(50)
  30485. 'Adding a chart to the worksheet
  30486. Dim chartIndex As Int32 = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 5)
  30487. 'Accessing the instance of the newly added chart
  30488. Dim chart As Chart = worksheet.Charts(chartIndex)
  30489. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  30490. chart.NSeries.Add("A1:B3", True)
  30491. 'Set the max value of value axis
  30492. chart.ValueAxis.MaxValue = 200
  30493. 'Set the min value of value axis
  30494. chart.ValueAxis.MinValue = 0
  30495. 'Set the major unit
  30496. chart.ValueAxis.MajorUnit = 25
  30497. 'Category(X) axis crosses at the maxinum value.
  30498. chart.ValueAxis.Crosses = CrossType.Maximum
  30499. 'Set he number of categories or series between tick-mark labels.
  30500. chart.CategoryAxis.TickLabelSpacing = 2
  30501. 'Saving the Excel file
  30502. workbook.Save("C:\book1.xls")
  30503. </code>
  30504. </example>
  30505. </member>
  30506. <member name="P:Aspose.Cells.Charts.Axis.Area">
  30507. <summary>
  30508. Gets the <see cref="P:Aspose.Cells.Charts.Axis.Area" />.
  30509. </summary>
  30510. </member>
  30511. <member name="P:Aspose.Cells.Charts.Axis.IsAutomaticMinValue">
  30512. <summary>
  30513. Indicates whether the min value is automatically assigned.
  30514. </summary>
  30515. </member>
  30516. <member name="P:Aspose.Cells.Charts.Axis.MinValue">
  30517. <summary>
  30518. Represents the minimum value on the value axis.
  30519. </summary>
  30520. <remarks>
  30521. The minValue type only can be double or DateTime
  30522. </remarks>
  30523. </member>
  30524. <member name="P:Aspose.Cells.Charts.Axis.IsAutomaticMaxValue">
  30525. <summary>
  30526. Indicates whether the max value is automatically assigned.
  30527. </summary>
  30528. </member>
  30529. <member name="P:Aspose.Cells.Charts.Axis.MaxValue">
  30530. <summary>
  30531. Represents the maximum value on the value axis.
  30532. </summary>
  30533. <remarks>
  30534. The maxValue type only can be double or DateTime
  30535. </remarks>
  30536. </member>
  30537. <member name="P:Aspose.Cells.Charts.Axis.IsAutomaticMajorUnit">
  30538. <summary>
  30539. Indicates whether the major unit of the axis is automatically assigned.
  30540. </summary>
  30541. </member>
  30542. <member name="P:Aspose.Cells.Charts.Axis.MajorUnit">
  30543. <summary>
  30544. Represents the major units for the axis.
  30545. </summary>
  30546. <remarks> The major units must be greater than zero.</remarks>
  30547. </member>
  30548. <member name="P:Aspose.Cells.Charts.Axis.IsAutomaticMinorUnit">
  30549. <summary>
  30550. Indicates whether the minor unit of the axis is automatically assigned.
  30551. </summary>
  30552. </member>
  30553. <member name="P:Aspose.Cells.Charts.Axis.MinorUnit">
  30554. <summary>
  30555. Represents the minor units for the axis.
  30556. </summary>
  30557. <remarks> The minor units must be greater than zero.</remarks>
  30558. </member>
  30559. <member name="P:Aspose.Cells.Charts.Axis.AxisLine">
  30560. <summary>
  30561. Gets the appearance of an Axis.
  30562. </summary>
  30563. </member>
  30564. <member name="P:Aspose.Cells.Charts.Axis.MajorTickMark">
  30565. <summary>
  30566. Represents the type of major tick mark for the specified axis.
  30567. </summary>
  30568. </member>
  30569. <member name="P:Aspose.Cells.Charts.Axis.MinorTickMark">
  30570. <summary>
  30571. Represents the type of minor tick mark for the specified axis.
  30572. </summary>
  30573. </member>
  30574. <member name="P:Aspose.Cells.Charts.Axis.TickLabelPosition">
  30575. <summary>
  30576. Represents the position of tick-mark labels on the specified axis.
  30577. </summary>
  30578. </member>
  30579. <member name="P:Aspose.Cells.Charts.Axis.CrossAt">
  30580. <summary>
  30581. Represents the point on the value axis where the category axis crosses it.
  30582. </summary>
  30583. <remarks>The number should be a integer when it applies to category axis.
  30584. And the value must be between 1 and 31999.</remarks>
  30585. </member>
  30586. <member name="P:Aspose.Cells.Charts.Axis.CrossType">
  30587. <summary>
  30588. Represents the <see cref="P:Aspose.Cells.Charts.Axis.CrossType" /> on the specified axis where the other axis crosses.
  30589. </summary>
  30590. </member>
  30591. <member name="P:Aspose.Cells.Charts.Axis.LogBase">
  30592. <summary>
  30593. Represents the logarithmic base. Default value is 10.Only applies for Excel2007.
  30594. </summary>
  30595. </member>
  30596. <member name="P:Aspose.Cells.Charts.Axis.IsLogarithmic">
  30597. <summary>
  30598. Represents if the value axis scale type is logarithmic or not.
  30599. </summary>
  30600. </member>
  30601. <member name="P:Aspose.Cells.Charts.Axis.IsPlotOrderReversed">
  30602. <summary>
  30603. Represents if Microsoft Excel plots data points from last to first.
  30604. </summary>
  30605. </member>
  30606. <member name="P:Aspose.Cells.Charts.Axis.AxisBetweenCategories">
  30607. <summary>
  30608. Represents if the value axis crosses the category axis between categories.
  30609. </summary>
  30610. <remarks>This property applies only to category axes, and it doesn't apply to 3-D charts.
  30611. </remarks>
  30612. </member>
  30613. <member name="P:Aspose.Cells.Charts.Axis.TickLabels">
  30614. <summary>
  30615. Returns a <see cref="P:Aspose.Cells.Charts.Axis.TickLabels" /> object that represents the tick-mark labels for the specified axis.
  30616. </summary>
  30617. </member>
  30618. <member name="P:Aspose.Cells.Charts.Axis.TickLabelSpacing">
  30619. <summary>
  30620. Represents the number of categories or series between tick-mark labels. Applies only to category and series axes.
  30621. </summary>
  30622. <remarks>The number must be between 1 and 31999.</remarks>
  30623. </member>
  30624. <member name="P:Aspose.Cells.Charts.Axis.IsAutoTickLabelSpacing">
  30625. <summary>
  30626. Indicates whether ticklabel spacing is automatic
  30627. </summary>
  30628. </member>
  30629. <member name="P:Aspose.Cells.Charts.Axis.TickMarkSpacing">
  30630. <summary>
  30631. Returns or sets the number of categories or series between tick marks. Applies only to category and series axes.
  30632. </summary>
  30633. <remarks>The number must be between 1 and 31999.</remarks>
  30634. </member>
  30635. <member name="P:Aspose.Cells.Charts.Axis.DisplayUnit">
  30636. <summary>
  30637. Represents the unit label for the specified axis.
  30638. </summary>
  30639. </member>
  30640. <member name="P:Aspose.Cells.Charts.Axis.CustUnit">
  30641. <summary>
  30642. Specifies a custom value for the display unit.
  30643. </summary>
  30644. </member>
  30645. <member name="P:Aspose.Cells.Charts.Axis.DisplayUnitLabel">
  30646. <summary>
  30647. Represents a unit label on an axis in the specified chart.
  30648. Unit labels are useful for charting large values¡ª for example, in the millions or billions.
  30649. </summary>
  30650. </member>
  30651. <member name="P:Aspose.Cells.Charts.Axis.IsDisplayUnitLabelShown">
  30652. <summary>
  30653. Represents if the display unit label is shown on the specified axis.
  30654. </summary>
  30655. <remarks>The default value is True.</remarks>
  30656. </member>
  30657. <member name="P:Aspose.Cells.Charts.Axis.Title">
  30658. <summary>
  30659. Gets the axis' title.
  30660. </summary>
  30661. </member>
  30662. <member name="P:Aspose.Cells.Charts.Axis.CategoryType">
  30663. <summary>
  30664. Represents the category axis type.
  30665. </summary>
  30666. </member>
  30667. <member name="P:Aspose.Cells.Charts.Axis.BaseUnitScale">
  30668. <summary>
  30669. Represents the base unit scale for the category axis.
  30670. </summary>
  30671. <remarks>Setting this property only takes effect when the CategoryType property is set to TimeScale.</remarks>
  30672. </member>
  30673. <member name="P:Aspose.Cells.Charts.Axis.MajorUnitScale">
  30674. <summary>
  30675. Represents the major unit scale for the category axis.
  30676. </summary>
  30677. <example>
  30678. <code>
  30679. [C#]
  30680. chart.CategoryAxis.CategoryType = CategoryType.TimeScale;
  30681. chart.CategoryAxis.MajorUnitScale = TimeUnit.Months;
  30682. chart.CategoryAxis.MajorUnit = 2;
  30683. [Visual Basic]
  30684. chart.CategoryAxis.CategoryType = CategoryType.TimeScale
  30685. chart.CategoryAxis.MajorUnitScale = TimeUnit.Months
  30686. chart.CategoryAxis.MajorUnit = 2
  30687. </code>
  30688. </example>
  30689. </member>
  30690. <member name="P:Aspose.Cells.Charts.Axis.MinorUnitScale">
  30691. <summary>
  30692. Represents the major unit scale for the category axis.
  30693. </summary>
  30694. <example>
  30695. <code>
  30696. [C#]
  30697. chart.CategoryAxis.CategoryType = CategoryType.TimeScale;
  30698. chart.CategoryAxis.MinorUnitScale = TimeUnit.Months;
  30699. chart.CategoryAxis.MinorUnit = 2;
  30700. [Visual Basic]
  30701. chart.CategoryAxis.CategoryType = CategoryType.TimeScale
  30702. chart.CategoryAxis.MinorUnitScale = TimeUnit.Months
  30703. chart.CategoryAxis.MinorUnit = 2
  30704. </code>
  30705. </example>
  30706. </member>
  30707. <member name="P:Aspose.Cells.Charts.Axis.IsVisible">
  30708. <summary>
  30709. Represents if the axis is visible.
  30710. </summary>
  30711. </member>
  30712. <member name="P:Aspose.Cells.Charts.Axis.MajorGridLines">
  30713. <summary>
  30714. Represents major gridlines on a chart axis.
  30715. </summary>
  30716. <example>
  30717. <code>
  30718. [C#]
  30719. chart.ValueAxis.MajorGridLines.IsVisible = false;
  30720. chart.CategoryAxis.MajorGridLines.IsVisible = true;
  30721. [Visual Basic]
  30722. chart.ValueAxis.MajorGridLines.IsVisible = false
  30723. chart.CategoryAxis.MajorGridLines.IsVisible = true
  30724. </code>
  30725. </example>
  30726. </member>
  30727. <member name="P:Aspose.Cells.Charts.Axis.MinorGridLines">
  30728. <summary>
  30729. Represents minor gridlines on a chart axis.
  30730. </summary>
  30731. </member>
  30732. <member name="P:Aspose.Cells.Charts.Axis.HasMultiLevelLabels">
  30733. <summary>
  30734. Indicates whether the labels shall be shown as multi level.
  30735. </summary>
  30736. <remarks>
  30737. Only valid for category axis.
  30738. </remarks>
  30739. </member>
  30740. <member name="P:Aspose.Cells.Charts.Axis.AxisLabels">
  30741. <summary>
  30742. Gets the labels of the axis after call Chart.Calculate() method.
  30743. </summary>
  30744. </member>
  30745. <member name="T:Aspose.Cells.Charts.BackgroundMode">
  30746. <summary>
  30747. Represents the display mode of the background.
  30748. </summary>
  30749. </member>
  30750. <member name="F:Aspose.Cells.Charts.BackgroundMode.Automatic">
  30751. <summary>
  30752. Automatic
  30753. </summary>
  30754. </member>
  30755. <member name="F:Aspose.Cells.Charts.BackgroundMode.Opaque">
  30756. <summary>
  30757. Opaque
  30758. </summary>
  30759. </member>
  30760. <member name="F:Aspose.Cells.Charts.BackgroundMode.Transparent">
  30761. <summary>
  30762. Transparent
  30763. </summary>
  30764. </member>
  30765. <member name="T:Aspose.Cells.BackgroundType">
  30766. <summary>
  30767. Enumerates cell background pattern types.
  30768. </summary>
  30769. </member>
  30770. <member name="F:Aspose.Cells.BackgroundType.DiagonalCrosshatch">
  30771. <summary>
  30772. Represents diagonal crosshatch pattern.
  30773. </summary>
  30774. </member>
  30775. <member name="F:Aspose.Cells.BackgroundType.DiagonalStripe">
  30776. <summary>
  30777. Represents diagonal stripe pattern.
  30778. </summary>
  30779. </member>
  30780. <member name="F:Aspose.Cells.BackgroundType.Gray6">
  30781. <summary>
  30782. Represents 6.25% gray pattern
  30783. </summary>
  30784. </member>
  30785. <member name="F:Aspose.Cells.BackgroundType.Gray12">
  30786. <summary>
  30787. Represents 12.5% gray pattern
  30788. </summary>
  30789. </member>
  30790. <member name="F:Aspose.Cells.BackgroundType.Gray25">
  30791. <summary>
  30792. Represents 25% gray pattern.
  30793. </summary>
  30794. </member>
  30795. <member name="F:Aspose.Cells.BackgroundType.Gray50">
  30796. <summary>
  30797. Represents 50% gray pattern.
  30798. </summary>
  30799. </member>
  30800. <member name="F:Aspose.Cells.BackgroundType.Gray75">
  30801. <summary>
  30802. Represents 75% gray pattern.
  30803. </summary>
  30804. </member>
  30805. <member name="F:Aspose.Cells.BackgroundType.HorizontalStripe">
  30806. <summary>
  30807. Represents horizontal stripe pattern.
  30808. </summary>
  30809. </member>
  30810. <member name="F:Aspose.Cells.BackgroundType.None">
  30811. <summary>
  30812. Represents no background.
  30813. </summary>
  30814. </member>
  30815. <member name="F:Aspose.Cells.BackgroundType.ReverseDiagonalStripe">
  30816. <summary>
  30817. Represents reverse diagonal stripe pattern.
  30818. </summary>
  30819. </member>
  30820. <member name="F:Aspose.Cells.BackgroundType.Solid">
  30821. <summary>
  30822. Represents solid pattern.
  30823. </summary>
  30824. </member>
  30825. <member name="F:Aspose.Cells.BackgroundType.ThickDiagonalCrosshatch">
  30826. <summary>
  30827. Represents thick diagonal crosshatch pattern.
  30828. </summary>
  30829. </member>
  30830. <member name="F:Aspose.Cells.BackgroundType.ThinDiagonalCrosshatch">
  30831. <summary>
  30832. Represents thin diagonal crosshatch pattern.
  30833. </summary>
  30834. </member>
  30835. <member name="F:Aspose.Cells.BackgroundType.ThinDiagonalStripe">
  30836. <summary>
  30837. Represents thin diagonal stripe pattern.
  30838. </summary>
  30839. </member>
  30840. <member name="F:Aspose.Cells.BackgroundType.ThinHorizontalCrosshatch">
  30841. <summary>
  30842. Represents thin horizontal crosshatch pattern.
  30843. </summary>
  30844. </member>
  30845. <member name="F:Aspose.Cells.BackgroundType.ThinHorizontalStripe">
  30846. <summary>
  30847. Represents thin horizontal stripe pattern.
  30848. </summary>
  30849. </member>
  30850. <member name="F:Aspose.Cells.BackgroundType.ThinReverseDiagonalStripe">
  30851. <summary>
  30852. Represents thin reverse diagonal stripe pattern.
  30853. </summary>
  30854. </member>
  30855. <member name="F:Aspose.Cells.BackgroundType.ThinVerticalStripe">
  30856. <summary>
  30857. Represents thin vertical stripe pattern.
  30858. </summary>
  30859. </member>
  30860. <member name="F:Aspose.Cells.BackgroundType.VerticalStripe">
  30861. <summary>
  30862. Represents vertical stripe pattern.
  30863. </summary>
  30864. </member>
  30865. <member name="T:Aspose.Cells.Charts.Bar3DShapeType">
  30866. <summary>
  30867. Represents the shape used with the 3-D bar or column chart.
  30868. </summary>
  30869. </member>
  30870. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.Box">
  30871. <summary>
  30872. Box
  30873. </summary>
  30874. </member>
  30875. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.PyramidToPoint">
  30876. <summary>
  30877. PyramidToPoint
  30878. </summary>
  30879. </member>
  30880. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.PyramidToMax">
  30881. <summary>
  30882. PyramidToMax
  30883. </summary>
  30884. </member>
  30885. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.Cylinder">
  30886. <summary>
  30887. Cylinder
  30888. </summary>
  30889. </member>
  30890. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.ConeToPoint">
  30891. <summary>
  30892. ConeToPoint
  30893. </summary>
  30894. </member>
  30895. <member name="F:Aspose.Cells.Charts.Bar3DShapeType.ConeToMax">
  30896. <summary>
  30897. ConeToMax
  30898. </summary>
  30899. </member>
  30900. <member name="T:Aspose.Cells.Border">
  30901. <summary>
  30902. Encapsulates the object that represents the cell border.
  30903. </summary>
  30904. <example>
  30905. <code>
  30906. [C#]
  30907. Style style = cell.GetStyle();
  30908. //Set top border style and color
  30909. Border border = style.Borders[BorderType.TopBorder];
  30910. border.LineStyle = CellBorderType.Medium;
  30911. border.Color = Color.Red;
  30912. cell.SetStyle(style);
  30913. [Visual Basic]
  30914. Dim style as Style = cell.GetStyle()
  30915. 'Set top border style and color
  30916. Dim border as Border = style.Borders(BorderType.TopBorder)
  30917. border.LineStyle = CellBorderType.Medium
  30918. border.Color = Color.Red
  30919. cell.SetStyle(style);
  30920. </code>
  30921. </example>
  30922. </member>
  30923. <member name="P:Aspose.Cells.Border.ThemeColor">
  30924. <summary>
  30925. Gets and sets the theme color of the border.
  30926. </summary>
  30927. </member>
  30928. <member name="P:Aspose.Cells.Border.Color">
  30929. <summary>
  30930. Gets or sets the <see cref="T:System.Drawing.Color" /> of the border.
  30931. </summary>
  30932. </member>
  30933. <member name="P:Aspose.Cells.Border.ArgbColor">
  30934. <summary>
  30935. Gets and sets the color with a 32-bit ARGB value.
  30936. </summary>
  30937. </member>
  30938. <member name="P:Aspose.Cells.Border.LineStyle">
  30939. <summary>
  30940. Gets or sets the cell border type.
  30941. </summary>
  30942. </member>
  30943. <member name="T:Aspose.Cells.BorderCollection">
  30944. <summary>
  30945. Encapsulates a collection of <see cref="T:Aspose.Cells.Border" /> objects.
  30946. </summary>
  30947. <example>
  30948. <code>
  30949. [C#]
  30950. //Instantiating a Workbook object
  30951. Workbook workbook = new Workbook();
  30952. //Adding a new worksheet to the Excel object
  30953. workbook.Worksheets.Add();
  30954. //Obtaining the reference of the newly added worksheet by passing its sheet index
  30955. Worksheet worksheet = workbook.Worksheets[0];
  30956. //Accessing the "A1" cell from the worksheet
  30957. Cell cell = worksheet.Cells["A1"];
  30958. //Adding some value to the "A1" cell
  30959. cell.PutValue("Visit Aspose!");
  30960. Style style = cell.GetStyle();
  30961. //Setting the line style of the top border
  30962. style.Borders[BorderType.TopBorder].LineStyle = CellBorderType.Thick;
  30963. //Setting the color of the top border
  30964. style.Borders[BorderType.TopBorder].Color = Color.Black;
  30965. //Setting the line style of the bottom border
  30966. style.Borders[BorderType.BottomBorder].LineStyle = CellBorderType.Thick;
  30967. //Setting the color of the bottom border
  30968. style.Borders[BorderType.BottomBorder].Color = Color.Black;
  30969. //Setting the line style of the left border
  30970. style.Borders[BorderType.LeftBorder].LineStyle = CellBorderType.Thick;
  30971. //Setting the color of the left border
  30972. style.Borders[BorderType.LeftBorder].Color = Color.Black;
  30973. //Setting the line style of the right border
  30974. style.Borders[BorderType.RightBorder].LineStyle = CellBorderType.Thick;
  30975. //Setting the color of the right border
  30976. style.Borders[BorderType.RightBorder].Color = Color.Black;
  30977. cell.SetStyle(style);
  30978. //Saving the Excel file
  30979. workbook.Save("C:\\book1.xls");
  30980. [VB.NET]
  30981. 'Instantiating a Workbook object
  30982. Dim workbook As Workbook = New Workbook()
  30983. 'Adding a new worksheet to the Workbook object
  30984. workbook.Worksheets.Add()
  30985. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  30986. Dim worksheet As Worksheet = workbook.Worksheets(0)
  30987. 'Accessing the "A1" cell from the worksheet
  30988. Dim cell As Cell = worksheet.Cells("A1")
  30989. 'Adding some value to the "A1" cell
  30990. cell.PutValue("Visit Aspose!")
  30991. Dim style as Style = cell.GetStyle()
  30992. 'Setting the line style of the top border
  30993. style.Borders(BorderType.TopBorder).LineStyle = CellBorderType.Thick
  30994. 'Setting the color of the top border
  30995. style.Borders(BorderType.TopBorder).Color = Color.Black
  30996. 'Setting the line style of the bottom border
  30997. style.Borders(BorderType.BottomBorder).LineStyle = CellBorderType.Thick
  30998. 'Setting the color of the bottom border
  30999. style.Borders(BorderType.BottomBorder).Color = Color.Black
  31000. 'Setting the line style of the left border
  31001. style.Borders(BorderType.LeftBorder).LineStyle = CellBorderType.Thick
  31002. 'Setting the color of the left border
  31003. style.Borders(BorderType.LeftBorder).Color = Color.Black
  31004. 'Setting the line style of the right border
  31005. style.Borders(BorderType.RightBorder).LineStyle = CellBorderType.Thick
  31006. 'Setting the color of the right border
  31007. style.Borders(BorderType.RightBorder).Color = Color.Black
  31008. cell.SetStyle(style)
  31009. 'Saving the Excel file
  31010. workbook.Save("C:\book1.xls")
  31011. </code>
  31012. </example>
  31013. </member>
  31014. <member name="M:Aspose.Cells.BorderCollection.SetColor(System.Drawing.Color)">
  31015. <summary>
  31016. Sets the <see cref="T:System.Drawing.Color" /> of all borders in the collection.
  31017. </summary>
  31018. <param name="color">Borders' <see cref="T:System.Drawing.Color" />.</param>
  31019. </member>
  31020. <member name="M:Aspose.Cells.BorderCollection.SetStyle(Aspose.Cells.CellBorderType)">
  31021. <summary>
  31022. Sets the style of all borders of the collection.
  31023. </summary>
  31024. <param name="style">Borders' style</param>
  31025. </member>
  31026. <member name="P:Aspose.Cells.BorderCollection.Item(Aspose.Cells.BorderType)">
  31027. <summary>
  31028. Gets the <see cref="T:Aspose.Cells.Border" /> element at the specified index.
  31029. </summary>
  31030. <param name="borderType">The border to be retrieved.</param>
  31031. <returns>The element at the specified index.</returns>
  31032. </member>
  31033. <member name="P:Aspose.Cells.BorderCollection.DiagonalColor">
  31034. <summary>
  31035. Gets or sets the <see cref="T:System.Drawing.Color" /> of Diagonal lines.
  31036. </summary>
  31037. </member>
  31038. <member name="P:Aspose.Cells.BorderCollection.DiagonalStyle">
  31039. <summary>
  31040. Gets or sets the style of Diagonal lines.
  31041. </summary>
  31042. </member>
  31043. <member name="T:Aspose.Cells.BorderType">
  31044. <summary>
  31045. Enumerates the border line and diagonal line types.
  31046. </summary>
  31047. </member>
  31048. <member name="F:Aspose.Cells.BorderType.BottomBorder">
  31049. <summary>
  31050. Represents bottom border line.
  31051. </summary>
  31052. </member>
  31053. <member name="F:Aspose.Cells.BorderType.DiagonalDown">
  31054. <summary>
  31055. Represents the diagonal line from top left to right bottom.
  31056. </summary>
  31057. </member>
  31058. <member name="F:Aspose.Cells.BorderType.DiagonalUp">
  31059. <summary>
  31060. Represents the diagonal line from bottom left to right top.
  31061. </summary>
  31062. </member>
  31063. <member name="F:Aspose.Cells.BorderType.LeftBorder">
  31064. <summary>
  31065. Represents left border line.
  31066. </summary>
  31067. </member>
  31068. <member name="F:Aspose.Cells.BorderType.RightBorder">
  31069. <summary>
  31070. Represents right border line exists.
  31071. </summary>
  31072. </member>
  31073. <member name="F:Aspose.Cells.BorderType.TopBorder">
  31074. <summary>
  31075. Represents top border line.
  31076. </summary>
  31077. </member>
  31078. <member name="F:Aspose.Cells.BorderType.Horizontal">
  31079. <summary>
  31080. Only for dynamic style,such as conditional formatting.
  31081. </summary>
  31082. </member>
  31083. <member name="F:Aspose.Cells.BorderType.Vertical">
  31084. <summary>
  31085. Only for dynamic style,such as conditional formatting.
  31086. </summary>
  31087. </member>
  31088. <member name="T:Aspose.Cells.Charts.BubbleSizeRepresents">
  31089. <summary>
  31090. Represents what the bubble size represents on a bubble chart.
  31091. </summary>
  31092. </member>
  31093. <member name="F:Aspose.Cells.Charts.BubbleSizeRepresents.SizeIsArea">
  31094. <summary>
  31095. Represents the value of <see cref="P:Aspose.Cells.Charts.Series.BubbleSizes" /> is area of the bubble.
  31096. </summary>
  31097. </member>
  31098. <member name="F:Aspose.Cells.Charts.BubbleSizeRepresents.SizeIsWidth">
  31099. <summary>
  31100. Represents the value of <see cref="P:Aspose.Cells.Charts.Series.BubbleSizes" /> is width of the bubble.
  31101. </summary>
  31102. </member>
  31103. <member name="T:Aspose.Cells.Drawing.Button">
  31104. <summary>
  31105. Represents the Forms control: Button
  31106. </summary>
  31107. <example>
  31108. <code>
  31109. [C#]
  31110. //Create a new Workbook.
  31111. Workbook workbook = new Workbook();
  31112. //Get the first worksheet in the workbook.
  31113. Worksheet sheet = workbook.Worksheets[0];
  31114. //Add a new button to the worksheet.
  31115. Aspose.Cells.Button button = sheet.Shapes.AddButton(2, 0, 2, 0, 28, 80);
  31116. //Set the caption of the button.
  31117. button.Text = "Aspose";
  31118. //Set the Placement Type, the way the
  31119. //button is attached to the cells.
  31120. button.Placement = PlacementType.FreeFloating;
  31121. //Set the font name.
  31122. button.Font.Name = "Tahoma";
  31123. //Set the caption string bold.
  31124. button.Font.IsBold = true;
  31125. //Set the color to blue.
  31126. button.Font.Color = Color.Blue;
  31127. //Set the hyperlink for the button.
  31128. button.AddHyperlink("http://www.aspose.com/");
  31129. //Saves the file.
  31130. workbook.Save(@"d:\test\tstbutton.xls");
  31131. [VB.NET]
  31132. 'Create a new Workbook.
  31133. Dim workbook As Workbook = New Workbook()
  31134. 'Get the first worksheet in the workbook.
  31135. Dim sheet As Worksheet = workbook.Worksheets(0)
  31136. 'Add a new button to the worksheet.
  31137. Dim button As Aspose.Cells.Button = sheet.Shapes.AddButton(2, 0, 2, 0, 28, 80)
  31138. 'Set the caption of the button.
  31139. button.Text = "Aspose"
  31140. 'Set the Placement Type, the way the
  31141. 'button is attached to the cells.
  31142. button.Placement = PlacementType.FreeFloating
  31143. 'Set the font name.
  31144. button.Font.Name = "Tahoma"
  31145. 'Set the caption string bold.
  31146. button.Font.IsBold = True
  31147. 'Set the color to blue.
  31148. button.Font.Color = Color.Blue
  31149. 'Set the hyperlink for the button.
  31150. button.AddHyperlink("http://www.aspose.com/")
  31151. 'Saves the file.
  31152. workbook.Save("d:\test\tstbutton.xls")
  31153. </code>
  31154. </example>
  31155. </member>
  31156. <member name="T:Aspose.Cells.CalcModeType">
  31157. <summary>
  31158. Represents the mode type of calculating formulas.
  31159. </summary>
  31160. </member>
  31161. <member name="F:Aspose.Cells.CalcModeType.Automatic">
  31162. <summary>
  31163. </summary>
  31164. </member>
  31165. <member name="F:Aspose.Cells.CalcModeType.AutomaticExceptTable">
  31166. <summary>
  31167. </summary>
  31168. </member>
  31169. <member name="F:Aspose.Cells.CalcModeType.Manual">
  31170. <summary>
  31171. </summary>
  31172. </member>
  31173. <member name="T:Aspose.Cells.CellArea">
  31174. <summary>
  31175. Represent an area of cells.
  31176. </summary>
  31177. <example>
  31178. <code>
  31179. [C#]
  31180. //Create Cell Area
  31181. CellArea ca = new CellArea();
  31182. ca.StartRow = 0;
  31183. ca.EndRow = 0;
  31184. ca.StartColumn = 0;
  31185. ca.EndColumn = 0;
  31186. [VB.NET]
  31187. 'Create Cell Area
  31188. Dim ca As CellArea = New CellArea()
  31189. ca.StartRow = 0
  31190. ca.EndRow = 0
  31191. ca.StartColumn = 0
  31192. ca.EndColumn = 0
  31193. </code>
  31194. </example>
  31195. </member>
  31196. <member name="F:Aspose.Cells.CellArea.StartRow">
  31197. <summary>
  31198. Gets or set the start row of this area.
  31199. </summary>
  31200. </member>
  31201. <member name="F:Aspose.Cells.CellArea.EndRow">
  31202. <summary>
  31203. Gets or set the end row of this area.
  31204. </summary>
  31205. </member>
  31206. <member name="F:Aspose.Cells.CellArea.StartColumn">
  31207. <summary>
  31208. Gets or set the start column of this area.
  31209. </summary>
  31210. </member>
  31211. <member name="F:Aspose.Cells.CellArea.EndColumn">
  31212. <summary>
  31213. Gets or set the end column of this area.
  31214. </summary>
  31215. </member>
  31216. <member name="M:Aspose.Cells.CellArea.CompareTo(System.Object)">
  31217. <summary>
  31218. Internal use only.
  31219. </summary>
  31220. <param name="obj">
  31221. </param>
  31222. <returns>
  31223. </returns>
  31224. </member>
  31225. <member name="M:Aspose.Cells.CellArea.ToString">
  31226. <summary>
  31227. Returns a string represents the current Worksheet object.
  31228. </summary>
  31229. <returns>
  31230. </returns>
  31231. </member>
  31232. <member name="M:Aspose.Cells.CellArea.CreateCellArea(System.Int32,System.Int32,System.Int32,System.Int32)">
  31233. <summary>
  31234. Creates a cell area.
  31235. </summary>
  31236. <param name="startRow">The start row.</param>
  31237. <param name="startColumn">The start column.</param>
  31238. <param name="endRow">The end row.</param>
  31239. <param name="endColumn">The end column.</param>
  31240. <returns>Return a <see cref="T:Aspose.Cells.CellArea" />.</returns>
  31241. </member>
  31242. <member name="M:Aspose.Cells.CellArea.CreateCellArea(System.String,System.String)">
  31243. <summary>
  31244. Creates a cell area.
  31245. </summary>
  31246. <param name="startCellName">The top-left cell of the range.</param>
  31247. <param name="endCellName">The bottom-right cell of the range.</param>
  31248. <returns>Return a <see cref="T:Aspose.Cells.CellArea" />.</returns>
  31249. </member>
  31250. <member name="T:Aspose.Cells.CellBorderType">
  31251. <summary>
  31252. Enumerates a cell's border type.
  31253. </summary>
  31254. </member>
  31255. <member name="F:Aspose.Cells.CellBorderType.DashDot">
  31256. <summary>
  31257. Represents thin dash-dotted line.
  31258. </summary>
  31259. </member>
  31260. <member name="F:Aspose.Cells.CellBorderType.DashDotDot">
  31261. <summary>
  31262. Represents thin dash-dot-dotted line.
  31263. </summary>
  31264. </member>
  31265. <member name="F:Aspose.Cells.CellBorderType.Dashed">
  31266. <summary>
  31267. Represents dashed line.
  31268. </summary>
  31269. </member>
  31270. <member name="F:Aspose.Cells.CellBorderType.Dotted">
  31271. <summary>
  31272. Represents dotted line.
  31273. </summary>
  31274. </member>
  31275. <member name="F:Aspose.Cells.CellBorderType.Double">
  31276. <summary>
  31277. Represents double line.
  31278. </summary>
  31279. </member>
  31280. <member name="F:Aspose.Cells.CellBorderType.Hair">
  31281. <summary>
  31282. Represents hair line.
  31283. </summary>
  31284. </member>
  31285. <member name="F:Aspose.Cells.CellBorderType.MediumDashDot">
  31286. <summary>
  31287. Represents medium dash-dotted line.
  31288. </summary>
  31289. </member>
  31290. <member name="F:Aspose.Cells.CellBorderType.MediumDashDotDot">
  31291. <summary>
  31292. Represents medium dash-dot-dotted line.
  31293. </summary>
  31294. </member>
  31295. <member name="F:Aspose.Cells.CellBorderType.MediumDashed">
  31296. <summary>
  31297. Represents medium dashed line.
  31298. </summary>
  31299. </member>
  31300. <member name="F:Aspose.Cells.CellBorderType.None">
  31301. <summary>
  31302. Represents no line.
  31303. </summary>
  31304. </member>
  31305. <member name="F:Aspose.Cells.CellBorderType.Medium">
  31306. <summary>
  31307. Represents medium line.
  31308. </summary>
  31309. </member>
  31310. <member name="F:Aspose.Cells.CellBorderType.SlantedDashDot">
  31311. <summary>
  31312. Represents slanted medium dash-dotted line.
  31313. </summary>
  31314. </member>
  31315. <member name="F:Aspose.Cells.CellBorderType.Thick">
  31316. <summary>
  31317. Represents thick line.
  31318. </summary>
  31319. </member>
  31320. <member name="F:Aspose.Cells.CellBorderType.Thin">
  31321. <summary>
  31322. Represents thin line.
  31323. </summary>
  31324. </member>
  31325. <member name="T:Aspose.Cells.Drawing.CellsDrawing">
  31326. <summary>
  31327. Represents the auto shape and drawing object.
  31328. </summary>
  31329. </member>
  31330. <member name="T:Aspose.Cells.CellsException">
  31331. <summary>
  31332. The exception that is thrown when Aspose.Cells specified error occurs.
  31333. </summary>
  31334. </member>
  31335. <member name="P:Aspose.Cells.CellsException.Code">
  31336. <summary>
  31337. Represents custom exception code.
  31338. </summary>
  31339. </member>
  31340. <member name="T:Aspose.Cells.CellValueType">
  31341. <summary>
  31342. Specifies a cell value type.
  31343. </summary>
  31344. </member>
  31345. <member name="F:Aspose.Cells.CellValueType.IsBool">
  31346. <summary>
  31347. Cell value is boolean.
  31348. </summary>
  31349. </member>
  31350. <member name="F:Aspose.Cells.CellValueType.IsDateTime">
  31351. <summary>
  31352. Cell value is datetime.
  31353. </summary>
  31354. </member>
  31355. <member name="F:Aspose.Cells.CellValueType.IsError">
  31356. <summary>
  31357. Cell contains error value
  31358. </summary>
  31359. </member>
  31360. <member name="F:Aspose.Cells.CellValueType.IsNull">
  31361. <summary>
  31362. Blank cell.
  31363. </summary>
  31364. </member>
  31365. <member name="F:Aspose.Cells.CellValueType.IsNumeric">
  31366. <summary>
  31367. Cell value is numeric.
  31368. </summary>
  31369. </member>
  31370. <member name="F:Aspose.Cells.CellValueType.IsString">
  31371. <summary>
  31372. Cell value is string.
  31373. </summary>
  31374. </member>
  31375. <member name="F:Aspose.Cells.CellValueType.IsUnknown">
  31376. <summary>
  31377. Cell value type is unknown.
  31378. </summary>
  31379. </member>
  31380. <member name="T:Aspose.Cells.Charts.Chart">
  31381. <summary>
  31382. Encapsulates the object that represents a single Excel chart.
  31383. </summary>
  31384. <example>
  31385. <code>
  31386. [C#]
  31387. Workbook workbook = new Workbook();
  31388. Worksheet sheet = workbook.Worksheets[0];
  31389. Cells cells = sheet.Cells;
  31390. cells[0,1].PutValue("Income");
  31391. cells[1,0].PutValue("Company A");
  31392. cells[2,0].PutValue("Company B");
  31393. cells[3,0].PutValue("Company C");
  31394. cells[1,1].PutValue(10000);
  31395. cells[2,1].PutValue(20000);
  31396. cells[3,1].PutValue(30000);
  31397. int chartIndex = sheet.Charts.Add(ChartType.Column, 9, 9, 21, 15);
  31398. Chart chart = sheet.Charts[chartIndex];
  31399. chart.NSeries.Add("B2:B4", true);
  31400. chart.NSeries.CategoryData = "A2:A4";
  31401. ASeries aSeries = chart.NSeries[0];
  31402. aSeries.Name = "=B1";
  31403. chart.IsLegendShown = true;
  31404. chart.Title.Text = "Income Analysis";
  31405. [Visual Basic]
  31406. Dim workbook as Workbook = new Workbook()
  31407. Dim sheet as Worksheet = workbook.Worksheets(0)
  31408. Dim cells as Cells = sheet.Cells
  31409. cells(0,1).PutValue("Income")
  31410. cells(1,0).PutValue("Company A")
  31411. cells(2,0).PutValue("Company B")
  31412. cells(3,0).PutValue("Company C")
  31413. cells(1,1).PutValue(10000)
  31414. cells(2,1).PutValue(20000)
  31415. cells(3,1).PutValue(30000)
  31416. Dim chartIndex as Integer = sheet.Charts.Add(ChartType.Column, 9, 9, 21, 15)
  31417. Dim chart as Chart = sheet.Charts(chartIndex)
  31418. chart.NSeries.Add("B2:B4", true)
  31419. chart.NSeries.CategoryData = "A2:A4"
  31420. Dim aSeries as ASeries = chart.NSeries(0)
  31421. aSeries.Name = "=B1"
  31422. chart.IsLegendShown = true
  31423. chart.Title.Text = "Income Analysis"
  31424. </code>
  31425. </example>
  31426. </member>
  31427. <member name="M:Aspose.Cells.Charts.Chart.IsChartDataChanged">
  31428. <summary>
  31429. Detects if a chart's data source has changed.
  31430. </summary>
  31431. <remarks>
  31432. The method detects the changes in the chart's data source before rendering the chart to image format.
  31433. At first Chart.toImage call, the chart source data (e.g. XValuesParseData, ValuesParseData) will be recorded.
  31434. Before calling the Chart.toImage method again, call IsChartDataChanged method to check if Chart needs re-rendering.
  31435. </remarks>
  31436. <returns>Returns true if the chart has changed otherwise returns false</returns>
  31437. </member>
  31438. <member name="M:Aspose.Cells.Charts.Chart.RefreshPivotData">
  31439. <summary>
  31440. Refreshes pivot chart's data from it's pivot data source.
  31441. </summary>
  31442. <remarks>
  31443. We will gather data from pivot data source to the pivot chart cache.
  31444. This method is only used to gather all data to a pivot chart.
  31445. </remarks>
  31446. </member>
  31447. <member name="M:Aspose.Cells.Charts.Chart.Move(System.Int32,System.Int32,System.Int32,System.Int32)">
  31448. <summary>
  31449. Moves the chart to a specified location.
  31450. </summary>
  31451. <param name="upperLeftColumn">Upper left column index.</param>
  31452. <param name="upperLeftRow">Upper left row index.</param>
  31453. <param name="lowerRightColumn">Lower right column index</param>
  31454. <param name="lowerRightRow">Lower right row index</param>
  31455. </member>
  31456. <member name="M:Aspose.Cells.Charts.Chart.Calculate">
  31457. <summary>
  31458. Calculates the custom position of plot area, axes if the position of them are auto assigned.
  31459. </summary>
  31460. </member>
  31461. <member name="M:Aspose.Cells.Charts.Chart.ToImage">
  31462. <summary>
  31463. Gets a 32-bit <c>Bitmap</c> object of the chart.
  31464. </summary>
  31465. <returns>the picture of the chart.</returns>
  31466. <remarks>
  31467. If the width or height is zero or the chart is not supported according to Supported Charts List, it will return null.
  31468. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31469. </remarks>
  31470. </member>
  31471. <member name="M:Aspose.Cells.Charts.Chart.ToImage(Aspose.Cells.Rendering.ImageOrPrintOptions)">
  31472. <summary>
  31473. Gets a 32-bit <c>Bitmap</c> object of the chart.
  31474. <c>ImageOrPrintOptions.ImageFormat</c>, ImageOrPrintOptions.TiffCompression and ImageOrPrintOptions.Quality attributes are ignored.
  31475. </summary>
  31476. <param name="options">Additional image creation options</param>
  31477. <returns>the picture of the chart.</returns>
  31478. <remarks>
  31479. Returns a 32-bit bitmap object, so ImageOrPrintOptions.ImageFormat, ImageOrPrintOptions.TiffCompression and ImageOrPrintOptions.Quality
  31480. attributes do not affect the method.
  31481. If the width or height is zero or the chart is not supported according to Supported Charts List, it will return null.
  31482. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31483. </remarks>
  31484. <example>
  31485. Gets a bitmap object with 200 x dpi and 300 y dpi.
  31486. <code>
  31487. [C#]
  31488. ImageOrPrintOptions options = new ImageOrPrintOptions();
  31489. options.HorizontalResolution = 200;
  31490. options.VerticalResolution = 300;
  31491. Workbook book = new Workbook(@"c:\test.xls");
  31492. Bitmap chartObject = book.Worksheets[0].Charts[0].ToImage(options);
  31493. [VB]
  31494. Dim options As ImageOrPrintOptions = New ImageOrPrintOptions()
  31495. options.HorizontalResolution = 200
  31496. options.VerticalResolution = 300
  31497. Dim book As Workbook = New Workbook("c:\test.xls")
  31498. Dim chartObject As Bitmap = book.Worksheets(0).Charts(0).ToImage(options)
  31499. </code></example>
  31500. </member>
  31501. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.String)">
  31502. <summary>
  31503. Creates the chart image and saves it to a file.
  31504. The extension of the file name determines the format of the image.
  31505. </summary>
  31506. <param name="imageFile">The image file name with full path.</param>
  31507. <remarks>
  31508. <p>The format of the image is specified by using the extension of the file name.
  31509. For example, if you specify "myfile.png", then the image will be saved
  31510. in the PNG format. The following file extensions are recognized:
  31511. .bmp, .gif, .png, .jpg, .jpeg, .tiff, .tif, .emf.</p>
  31512. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31513. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31514. </remarks>
  31515. </member>
  31516. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.String,System.Drawing.Imaging.ImageFormat)">
  31517. <summary>
  31518. Creates the chart image and saves it to a file in the specified format.
  31519. </summary>
  31520. <param name="imageFile">The image file name with full path.</param>
  31521. <param name="imageFormat">The format in which to save the image.</param>
  31522. <remarks>
  31523. <p>The format of the image is specified by using <c>imageFormat</c>.
  31524. The following formats are supported:
  31525. ImageFormat.Bmp, ImageFormat.Gif, ImageFormat.Png, ImageFormat.Jpeg, ImageFormat.Tiff, ImageFormat.Emf.</p>
  31526. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31527. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31528. </remarks>
  31529. </member>
  31530. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.String,System.Int64)">
  31531. <summary>
  31532. Creates the chart image and saves it to a file in the Jpeg format.
  31533. </summary>
  31534. <param name="imageFile">The image file name with full path.</param>
  31535. <param name="jpegQuality">Jpeg quality.</param>
  31536. <remarks>
  31537. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31538. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31539. </remarks>
  31540. </member>
  31541. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.IO.Stream,System.Int64)">
  31542. <summary>
  31543. Creates the chart image and saves it to a stream in the Jpeg format.
  31544. </summary>
  31545. <param name="stream">The output stream.</param>
  31546. <param name="jpegQuality">Jpeg quality.</param>
  31547. <remarks>
  31548. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31549. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31550. </remarks>
  31551. </member>
  31552. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
  31553. <summary>
  31554. Creates the chart image and saves it to a stream in the specified format.
  31555. </summary>
  31556. <param name="stream">The output stream.</param>
  31557. <param name="imageFormat">The format in which to save the image.</param>
  31558. <remarks>
  31559. <p>The format of the image is specified by using <c>imageFormat</c>.
  31560. The following formats are supported:
  31561. ImageFormat.Bmp, ImageFormat.Gif, ImageFormat.Png, ImageFormat.Jpeg, ImageFormat.Tiff, ImageFormat.Emf.</p>
  31562. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31563. Please refer <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31564. </remarks>
  31565. </member>
  31566. <member name="M:Aspose.Cells.Charts.Chart.ToPdf(System.String)">
  31567. <summary>
  31568. Saves the chart to a pdf file.
  31569. </summary>
  31570. <param name="fileName">the pdf file name with full path</param>
  31571. </member>
  31572. <member name="M:Aspose.Cells.Charts.Chart.ToPdf(System.String,System.Single,System.Single,Aspose.Cells.PageLayoutAlignmentType,Aspose.Cells.PageLayoutAlignmentType)">
  31573. <summary>
  31574. Saves the chart to a pdf file.
  31575. </summary>
  31576. <param name="fileName">the pdf file name with full path</param>
  31577. <param name="desiredPageWidth">The desired page width in inches.</param>
  31578. <param name="desiredPageHeight">The desired page height in inches.</param>
  31579. <param name="hAlignmentType">The chart horizontal alignment type in the output page.</param>
  31580. <param name="vAlignmentType">The chart vertical alignment type in the output page.</param>
  31581. </member>
  31582. <member name="M:Aspose.Cells.Charts.Chart.ToPdf(System.IO.Stream)">
  31583. <summary>
  31584. Creates the chart pdf and saves it to a stream.
  31585. </summary>
  31586. <param name="stream">The output stream.</param>
  31587. </member>
  31588. <member name="M:Aspose.Cells.Charts.Chart.ToPdf(System.IO.Stream,System.Single,System.Single,Aspose.Cells.PageLayoutAlignmentType,Aspose.Cells.PageLayoutAlignmentType)">
  31589. <summary>
  31590. Creates the chart pdf and saves it to a stream.
  31591. </summary>
  31592. <param name="stream">The output stream.</param>
  31593. <param name="desiredPageWidth">The desired page width in inches.</param>
  31594. <param name="desiredPageHeight">The desired page height in inches.</param>
  31595. <param name="hAlignmentType">The chart horizontal alignment type in the output page.</param>
  31596. <param name="vAlignmentType">The chart vertical alignment type in the output page.</param>
  31597. </member>
  31598. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.String,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  31599. <summary>
  31600. Creates the chart image and saves it to a file.
  31601. The extension of the file name determines the format of the image.
  31602. </summary>
  31603. <param name="imageFile">The image file name with full path.</param>
  31604. <param name="options">Additional image creation options</param>
  31605. <remarks>
  31606. <p>The format of the image is specified by using the extension of the file name.
  31607. For example, if you specify "myfile.png", then the image will be saved
  31608. in the PNG format. The following file extensions are recognized:
  31609. .bmp, .gif, .png, .jpg, .jpeg, .tiff, .tif, .emf.</p>
  31610. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31611. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31612. </remarks>
  31613. <example>
  31614. Saves to Tiff with 300 dpi and CCITT4 compression.
  31615. <code>
  31616. [C#]
  31617. ImageOrPrintOptions options = new ImageOrPrintOptions();
  31618. options.HorizontalResolution = 300;
  31619. options.VerticalResolution = 300;
  31620. options.TiffCompression = TiffCompression.CompressionCCITT4;
  31621. Workbook book = new Workbook(@"c:\test.xls");
  31622. book.Worksheets[0].Charts[0].ToImage(@"c:\chart.Tiff", options);
  31623. [VB]
  31624. Dim options As ImageOrPrintOptions = New ImageOrPrintOptions()
  31625. options.HorizontalResolution = 300
  31626. options.VerticalResolution = 300
  31627. options.TiffCompression = TiffCompression.CompressionCCITT4
  31628. Dim book As Workbook = New Workbook("c:\test.xls")
  31629. book.Worksheets(0).Charts(0).ToImage("c:\chart.Tiff", options)
  31630. </code>
  31631. Saves to Jpeg with 300 dpi and 80 image quality.
  31632. <code>
  31633. [C#]
  31634. ImageOrPrintOptions options = new ImageOrPrintOptions();
  31635. options.HorizontalResolution = 300;
  31636. options.VerticalResolution = 300;
  31637. options.Quality = 80;
  31638. Workbook book = new Workbook(@"c:\test.xls");
  31639. book.Worksheets[0].Charts[0].ToImage(@"c:\chart.Jpeg", options);
  31640. [VB]
  31641. Dim options As ImageOrPrintOptions = New ImageOrPrintOptions()
  31642. options.HorizontalResolution = 300
  31643. options.VerticalResolution = 300
  31644. options.Quality = 80
  31645. Dim book As Workbook = New Workbook("c:\test.xls")
  31646. book.Worksheets(0).Charts(0).ToImage("c:\chart.Jpeg", options)
  31647. </code></example>
  31648. </member>
  31649. <member name="M:Aspose.Cells.Charts.Chart.ToImage(System.IO.Stream,Aspose.Cells.Rendering.ImageOrPrintOptions)">
  31650. <summary>
  31651. Creates the chart image and saves it to a stream in the specified format.
  31652. </summary>
  31653. <param name="stream">The output stream.</param>
  31654. <param name="options">Additional image creation options</param>
  31655. <remarks>
  31656. <p>The format of the image is specified by using <c>options.ImageFormat</c>.
  31657. The following formats are supported:
  31658. ImageFormat.Bmp, ImageFormat.Gif, ImageFormat.Png, ImageFormat.Jpeg, ImageFormat.Tiff, ImageFormat.Emf.</p>
  31659. If the width or height is zero or the chart is not supported according to Supported Charts List, this method will do nothing.
  31660. Please refer to <a href="http://www.aspose.com/documentation/.net-components/aspose.cells-for-.net/converting-chart-to-image.html">Supported Charts List</a> for more details.
  31661. </remarks>
  31662. </member>
  31663. <member name="M:Aspose.Cells.Charts.Chart.HasAxis(Aspose.Cells.Charts.AxisType,System.Boolean)">
  31664. <summary>
  31665. Returns which axes exist on the chart.
  31666. </summary>
  31667. <remarks>
  31668. Normally, Pie, PieExploded, PiePie,PieBar, Pie3D, Pie3DExploded,Doughnut, DoughnutExploded is no axis.
  31669. </remarks>
  31670. </member>
  31671. <member name="M:Aspose.Cells.Charts.Chart.SetChartDataRange(System.String,System.Boolean)">
  31672. <summary>
  31673. Specifies data range for a chart.
  31674. </summary>
  31675. <param name="area">Specifies values from which to plot the data series</param>
  31676. <param name="isVertical">Specifies whether to plot the series from a range of cell values by row or by column.</param>
  31677. </member>
  31678. <member name="P:Aspose.Cells.Charts.Chart.Style">
  31679. <summary>
  31680. Gets and sets the builtin style.
  31681. </summary>
  31682. <remarks>
  31683. It should be between 1 and 48.
  31684. Return -1 if it's not be set.
  31685. </remarks>
  31686. </member>
  31687. <member name="P:Aspose.Cells.Charts.Chart.ChartObject">
  31688. <summary>
  31689. Represents the chartShape;
  31690. </summary>
  31691. </member>
  31692. <member name="P:Aspose.Cells.Charts.Chart.HidePivotFieldButtons">
  31693. <summary>
  31694. Indicates whether hide the pivot chart field buttons only when the chart is PivotChart
  31695. </summary>
  31696. </member>
  31697. <member name="P:Aspose.Cells.Charts.Chart.PivotOptions">
  31698. <summary>
  31699. Specifies the pivot controls that appear on the chart
  31700. </summary>
  31701. </member>
  31702. <member name="P:Aspose.Cells.Charts.Chart.PivotSource">
  31703. <summary>
  31704. The source is the data of the pivotTable.
  31705. If PivotSource is not empty ,the chart is PivotChart.
  31706. </summary>
  31707. <remarks>If the pivot table "PivotTable1" in the Worksheet "Sheet1" in the file "Book1.xls".
  31708. The pivotSource could be "[Book1.xls]Sheet1!PivotTable1" if the chart and the PivotTable is not in the same workbook.
  31709. If you set this property ,the previous data source setting will be lost.
  31710. </remarks>
  31711. </member>
  31712. <member name="P:Aspose.Cells.Charts.Chart.PlotBy">
  31713. <summary>
  31714. Gets and sets whether plot by row or column.
  31715. </summary>
  31716. </member>
  31717. <member name="P:Aspose.Cells.Charts.Chart.PlotEmptyCellsType">
  31718. <summary>
  31719. Gets and sets how to plot the empty cells.
  31720. </summary>
  31721. </member>
  31722. <member name="P:Aspose.Cells.Charts.Chart.PlotVisibleCells">
  31723. <summary>
  31724. Indicates whether only plot visible cells.
  31725. </summary>
  31726. </member>
  31727. <member name="P:Aspose.Cells.Charts.Chart.DisplayNaAsBlank">
  31728. <summary>
  31729. Indicates whether displaying #N/A as blank value.
  31730. </summary>
  31731. </member>
  31732. <member name="P:Aspose.Cells.Charts.Chart.Name">
  31733. <summary>
  31734. Gets and sets the name of the chart.
  31735. </summary>
  31736. </member>
  31737. <member name="P:Aspose.Cells.Charts.Chart.SizeWithWindow">
  31738. <summary>
  31739. True if Microsoft Excel resizes the chart to match the size of the chart sheet window.
  31740. </summary>
  31741. </member>
  31742. <member name="P:Aspose.Cells.Charts.Chart.Worksheet">
  31743. <summary>
  31744. Gets the worksheet which contains this chart.
  31745. </summary>
  31746. </member>
  31747. <member name="P:Aspose.Cells.Charts.Chart.Shapes">
  31748. <summary>
  31749. Returns all drawing shapes in this chart.
  31750. </summary>
  31751. </member>
  31752. <member name="P:Aspose.Cells.Charts.Chart.PrintSize">
  31753. <summary>
  31754. Gets and sets the printed chart size.
  31755. </summary>
  31756. </member>
  31757. <member name="P:Aspose.Cells.Charts.Chart.Type">
  31758. <summary>
  31759. Gets or sets a chart's type.
  31760. </summary>
  31761. </member>
  31762. <member name="P:Aspose.Cells.Charts.Chart.NSeries">
  31763. <summary>
  31764. Gets a <see cref="T:Aspose.Cells.Charts.SeriesCollection" /> collection representing the data series in the chart.
  31765. </summary>
  31766. </member>
  31767. <member name="P:Aspose.Cells.Charts.Chart.Title">
  31768. <summary>
  31769. Gets the chart's title.
  31770. </summary>
  31771. </member>
  31772. <member name="P:Aspose.Cells.Charts.Chart.SubTitle">
  31773. <summary>
  31774. Gets the chart's sub-title.
  31775. Only for ODS format file.
  31776. </summary>
  31777. </member>
  31778. <member name="P:Aspose.Cells.Charts.Chart.PlotArea">
  31779. <summary>
  31780. Gets the chart's plot area which includes axis tick labels.
  31781. </summary>
  31782. <remarks>
  31783. </remarks>
  31784. </member>
  31785. <member name="P:Aspose.Cells.Charts.Chart.ChartArea">
  31786. <summary>
  31787. Gets the chart area in the worksheet
  31788. </summary>
  31789. </member>
  31790. <member name="P:Aspose.Cells.Charts.Chart.CategoryAxis">
  31791. <summary>
  31792. Gets the chart's X axis.
  31793. </summary>
  31794. </member>
  31795. <member name="P:Aspose.Cells.Charts.Chart.ValueAxis">
  31796. <summary>
  31797. Gets the chart's Y axis.
  31798. </summary>
  31799. </member>
  31800. <member name="P:Aspose.Cells.Charts.Chart.SecondValueAxis">
  31801. <summary>
  31802. Gets the chart's second Y axis.
  31803. </summary>
  31804. </member>
  31805. <member name="P:Aspose.Cells.Charts.Chart.SecondCategoryAxis">
  31806. <summary>
  31807. Gets the chart's second X axis.
  31808. </summary>
  31809. </member>
  31810. <member name="P:Aspose.Cells.Charts.Chart.SeriesAxis">
  31811. <summary>
  31812. Gets the chart's series axis.
  31813. </summary>
  31814. </member>
  31815. <member name="P:Aspose.Cells.Charts.Chart.Legend">
  31816. <summary>
  31817. Gets the chart legend.
  31818. </summary>
  31819. </member>
  31820. <member name="P:Aspose.Cells.Charts.Chart.ChartDataTable">
  31821. <summary>
  31822. Represents the chart data table.
  31823. </summary>
  31824. </member>
  31825. <member name="P:Aspose.Cells.Charts.Chart.ShowLegend">
  31826. <summary>
  31827. Gets or sets a value indicating whether the chart legend will be displayed. Default is true.
  31828. </summary>
  31829. </member>
  31830. <member name="P:Aspose.Cells.Charts.Chart.IsRectangularCornered">
  31831. <summary>
  31832. Gets or sets a value indicating whether the chart area is rectangular cornered.
  31833. Default is true.
  31834. </summary>
  31835. </member>
  31836. <member name="P:Aspose.Cells.Charts.Chart.ShowDataTable">
  31837. <summary>
  31838. Gets or sets a value indicating whether the chart displays a data table.
  31839. </summary>
  31840. </member>
  31841. <member name="P:Aspose.Cells.Charts.Chart.FirstSliceAngle">
  31842. <summary>
  31843. Gets or sets the angle of the first pie-chart or doughnut-chart slice, in degrees (clockwise from vertical). Applies only to pie, 3-D pie, and doughnut charts, 0 to 360.
  31844. </summary>
  31845. </member>
  31846. <member name="P:Aspose.Cells.Charts.Chart.GapWidth">
  31847. <summary>
  31848. Returns or sets the space between bar or column clusters, as a percentage of the bar or column width.
  31849. The value of this property must be between 0 and 500.
  31850. </summary>
  31851. </member>
  31852. <member name="P:Aspose.Cells.Charts.Chart.GapDepth">
  31853. <summary>
  31854. Gets or sets the distance between the data series in a 3-D chart, as a percentage of the marker width.
  31855. The value of this property must be between 0 and 500.
  31856. </summary>
  31857. </member>
  31858. <member name="P:Aspose.Cells.Charts.Chart.Floor">
  31859. <summary>
  31860. Returns a <see cref="P:Aspose.Cells.Charts.Chart.Floor" /> object that represents the walls of a 3-D chart.
  31861. </summary>
  31862. <remarks>This property doesn't apply to 3-D pie charts.</remarks>
  31863. </member>
  31864. <member name="P:Aspose.Cells.Charts.Chart.Walls">
  31865. <summary>
  31866. Returns a <see cref="P:Aspose.Cells.Charts.Chart.Walls" /> object that represents the walls of a 3-D chart.
  31867. </summary>
  31868. <remarks>This property doesn't apply to 3-D pie charts.</remarks>
  31869. </member>
  31870. <member name="P:Aspose.Cells.Charts.Chart.BackWall">
  31871. <summary>
  31872. Returns a <see cref="P:Aspose.Cells.Charts.Chart.Walls" /> object that represents the back wall of a 3-D chart.
  31873. </summary>
  31874. </member>
  31875. <member name="P:Aspose.Cells.Charts.Chart.SideWall">
  31876. <summary>
  31877. Returns a <see cref="P:Aspose.Cells.Charts.Chart.Walls" /> object that represents the side wall of a 3-D chart.
  31878. </summary>
  31879. </member>
  31880. <member name="P:Aspose.Cells.Charts.Chart.WallsAndGridlines2D">
  31881. <summary>
  31882. True if gridlines are drawn two-dimensionally on a 3-D chart.
  31883. </summary>
  31884. </member>
  31885. <member name="P:Aspose.Cells.Charts.Chart.RotationAngle">
  31886. <summary>
  31887. Represents the rotation of the 3-D chart view (the rotation of the plot area around the z-axis, in degrees).
  31888. </summary>
  31889. <remarks>
  31890. The value of this property must be from 0 to 360, except for 3-D bar charts, where the value must be from 0 to 44.
  31891. The default value is 20. Applies only to 3-D charts.
  31892. </remarks>
  31893. </member>
  31894. <member name="P:Aspose.Cells.Charts.Chart.Elevation">
  31895. <summary>
  31896. Represents the elevation of the 3-D chart view, in degrees.
  31897. </summary>
  31898. <remarks>
  31899. The chart elevation is the height at which you view the chart, in degrees.
  31900. The default is 15 for most chart types.
  31901. The value of this property must be between -90 and 90, except for 3-D bar charts, where it must be between 0 and 44.
  31902. </remarks>
  31903. </member>
  31904. <member name="P:Aspose.Cells.Charts.Chart.RightAngleAxes">
  31905. <summary>
  31906. True if the chart axes are at right angles.Applies only for 3-D charts(except Column3D and 3-D Pie Charts).
  31907. </summary>
  31908. <remarks>
  31909. If this property is True, the Perspective property is ignored.
  31910. </remarks>
  31911. </member>
  31912. <member name="P:Aspose.Cells.Charts.Chart.AutoScaling">
  31913. <summary>
  31914. True if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D chart.
  31915. The RightAngleAxes property must be True.
  31916. </summary>
  31917. </member>
  31918. <member name="P:Aspose.Cells.Charts.Chart.HeightPercent">
  31919. <summary>
  31920. Returns or sets the height of a 3-D chart as a percentage of the chart width (between 5 and 500 percent).
  31921. </summary>
  31922. </member>
  31923. <member name="P:Aspose.Cells.Charts.Chart.Perspective">
  31924. <summary>
  31925. Returns or sets the perspective for the 3-D chart view. Must be between 0 and 100.
  31926. This property is ignored if the RightAngleAxes property is True.
  31927. </summary>
  31928. </member>
  31929. <member name="P:Aspose.Cells.Charts.Chart.Is3D">
  31930. <summary>
  31931. Indicates whether the chart is a 3d chart.
  31932. </summary>
  31933. </member>
  31934. <member name="P:Aspose.Cells.Charts.Chart.DepthPercent">
  31935. <summary>
  31936. Represents the depth of a 3-D chart as a percentage of the chart width (between 20 and 2000 percent).
  31937. </summary>
  31938. </member>
  31939. <member name="P:Aspose.Cells.Charts.Chart.ActualChartSize">
  31940. <summary>
  31941. Gets actual size of chart
  31942. </summary>
  31943. </member>
  31944. <member name="P:Aspose.Cells.Charts.Chart.Placement">
  31945. <summary>
  31946. Represents the way the chart is attached to the cells below it.
  31947. </summary>
  31948. </member>
  31949. <member name="P:Aspose.Cells.Charts.Chart.PageSetup">
  31950. <summary>
  31951. Represents the page setup description in this chart.
  31952. </summary>
  31953. </member>
  31954. <member name="P:Aspose.Cells.Charts.Chart.Line">
  31955. <summary>
  31956. Gets the line.
  31957. </summary>
  31958. </member>
  31959. <member name="T:Aspose.Cells.Charts.ChartArea">
  31960. <summary>
  31961. Encapsulates the object that represents the chart area in the worksheet.
  31962. </summary>
  31963. <example>
  31964. <code>
  31965. [C#]
  31966. //Instantiating a Workbook object
  31967. Workbook workbook = new Workbook();
  31968. //Obtaining the reference of the first worksheet
  31969. Worksheet worksheet = workbook.Worksheets[0];
  31970. //Adding a sample value to "A1" cell
  31971. worksheet.Cells["A1"].PutValue(50);
  31972. //Adding a sample value to "A2" cell
  31973. worksheet.Cells["A2"].PutValue(100);
  31974. //Adding a sample value to "A3" cell
  31975. worksheet.Cells["A3"].PutValue(150);
  31976. //Adding a sample value to "B1" cell
  31977. worksheet.Cells["B1"].PutValue(60);
  31978. //Adding a sample value to "B2" cell
  31979. worksheet.Cells["B2"].PutValue(32);
  31980. //Adding a sample value to "B3" cell
  31981. worksheet.Cells["B3"].PutValue(50);
  31982. //Adding a chart to the worksheet
  31983. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  31984. //Accessing the instance of the newly added chart
  31985. Chart chart = worksheet.Charts[chartIndex];
  31986. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  31987. chart.NSeries.Add("A1:B3", true);
  31988. //Getting Chart Area
  31989. ChartArea chartArea = chart.ChartArea;
  31990. //Setting the foreground color of the chart area
  31991. chartArea.Area.ForegroundColor = Color.Yellow;
  31992. //Setting Chart Area Shadow
  31993. chartArea.Shadow = true;
  31994. //Saving the Excel file
  31995. workbook.Save("D:\\book1.xls");
  31996. [VB.NET]
  31997. 'Instantiating a Workbook object
  31998. Dim workbook As New Workbook()
  31999. 'Obtaining the reference of the first worksheet
  32000. Dim worksheet As Worksheet = workbook.Worksheets(0)
  32001. 'Adding a sample value to "A1" cell
  32002. worksheet.Cells("A1").PutValue(50)
  32003. 'Adding a sample value to "A2" cell
  32004. worksheet.Cells("A2").PutValue(100)
  32005. 'Adding a sample value to "A3" cell
  32006. worksheet.Cells("A3").PutValue(150)
  32007. 'Adding a sample value to "B1" cell
  32008. worksheet.Cells("B1").PutValue(60)
  32009. 'Adding a sample value to "B2" cell
  32010. worksheet.Cells("B2").PutValue(32)
  32011. 'Adding a sample value to "B3" cell
  32012. worksheet.Cells("B3").PutValue(50)
  32013. 'Adding a chart to the worksheet
  32014. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  32015. 'Accessing the instance of the newly added chart
  32016. Dim chart As Chart = worksheet.Charts(chartIndex)
  32017. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32018. chart.NSeries.Add("A1:B3", True)
  32019. 'Getting Chart Area
  32020. Dim chartArea As ChartArea = chart.ChartArea
  32021. 'Setting the foreground color of the chart area
  32022. chartArea.Area.ForegroundColor = Color.Yellow
  32023. 'Setting Chart Area Shadow
  32024. chartArea.Shadow = True
  32025. 'Saving the Excel file
  32026. workbook.Save("D:\book1.xls")
  32027. </code>
  32028. </example>
  32029. </member>
  32030. <member name="P:Aspose.Cells.Charts.ChartArea.X">
  32031. <summary>
  32032. Gets or gets the horizontal offset from its upper left corner column.
  32033. </summary>
  32034. </member>
  32035. <member name="P:Aspose.Cells.Charts.ChartArea.Y">
  32036. <summary>
  32037. Gets or gets the vertical offset from its upper left corner row.
  32038. </summary>
  32039. </member>
  32040. <member name="P:Aspose.Cells.Charts.ChartArea.Height">
  32041. <summary>
  32042. Gets or sets the vertical offset from its lower right corner row.
  32043. </summary>
  32044. </member>
  32045. <member name="P:Aspose.Cells.Charts.ChartArea.Width">
  32046. <summary>
  32047. Gets or sets the horizontal offset from its lower right corner column.
  32048. </summary>
  32049. </member>
  32050. <member name="P:Aspose.Cells.Charts.ChartArea.Font">
  32051. <summary>
  32052. Gets a <see cref="P:Aspose.Cells.Charts.ChartArea.Font" /> object of the specified chartarea object.
  32053. </summary>
  32054. </member>
  32055. <member name="T:Aspose.Cells.Charts.ChartDataTable">
  32056. <summary>
  32057. Represents a chart data table.
  32058. </summary>
  32059. <example>
  32060. <code>
  32061. [C#]
  32062. //Instantiating a Workbook object
  32063. Workbook workbook = new Workbook();
  32064. //Obtaining the reference of the first worksheet
  32065. Worksheet worksheet = workbook.Worksheets[0];
  32066. //Adding a sample value to "A1" cell
  32067. worksheet.Cells["A1"].PutValue(50);
  32068. //Adding a sample value to "A2" cell
  32069. worksheet.Cells["A2"].PutValue(100);
  32070. //Adding a sample value to "A3" cell
  32071. worksheet.Cells["A3"].PutValue(150);
  32072. //Adding a sample value to "B1" cell
  32073. worksheet.Cells["B1"].PutValue(60);
  32074. //Adding a sample value to "B2" cell
  32075. worksheet.Cells["B2"].PutValue(32);
  32076. //Adding a sample value to "B3" cell
  32077. worksheet.Cells["B3"].PutValue(50);
  32078. //Adding a chart to the worksheet
  32079. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 10);
  32080. //Accessing the instance of the newly added chart
  32081. Chart chart = worksheet.Charts[chartIndex];
  32082. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32083. chart.NSeries.Add("A1:B3", true);
  32084. chart.IsDataTableShown = true;
  32085. //Getting Chart Table
  32086. ChartDataTable chartTable = chart.ChartDataTable;
  32087. //Setting Chart Table Font Color
  32088. chartTable.Font.Color = System.Drawing.Color.Red;
  32089. //Setting Legend Key VisibilityOptions
  32090. chartTable.ShowLegendKey = false;
  32091. //Saving the Excel file
  32092. workbook.Save("D:\\book1.xls");
  32093. [VB.NET]
  32094. 'Instantiating a Workbook object
  32095. Dim workbook As New Workbook()
  32096. 'Obtaining the reference of the first worksheet
  32097. Dim worksheet As Worksheet = workbook.Worksheets(0)
  32098. 'Adding a sample value to "A1" cell
  32099. worksheet.Cells("A1").PutValue(50)
  32100. 'Adding a sample value to "A2" cell
  32101. worksheet.Cells("A2").PutValue(100)
  32102. 'Adding a sample value to "A3" cell
  32103. worksheet.Cells("A3").PutValue(150)
  32104. 'Adding a sample value to "B1" cell
  32105. worksheet.Cells("B1").PutValue(60)
  32106. 'Adding a sample value to "B2" cell
  32107. worksheet.Cells("B2").PutValue(32)
  32108. 'Adding a sample value to "B3" cell
  32109. worksheet.Cells("B3").PutValue(50)
  32110. 'Adding a chart to the worksheet
  32111. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 25, 10)
  32112. 'Accessing the instance of the newly added chart
  32113. Dim chart As Chart = worksheet.Charts(chartIndex)
  32114. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32115. chart.NSeries.Add("A1:B3", True)
  32116. chart.IsDataTableShown = True
  32117. 'Getting Chart Table
  32118. Dim chartTable As ChartDataTable = chart.ChartDataTable
  32119. 'Setting Chart Table Font Color
  32120. chartTable.Font.Color = System.Drawing.Color.Red
  32121. 'Setting Legend Key VisibilityOptions
  32122. chartTable.ShowLegendKey = False
  32123. 'Saving the Excel file
  32124. workbook.Save("D:\book1.xls")
  32125. </code>
  32126. </example>
  32127. </member>
  32128. <member name="P:Aspose.Cells.Charts.ChartDataTable.Font">
  32129. <summary>
  32130. Gets a <see cref="P:Aspose.Cells.Charts.ChartDataTable.Font" /> object which represents the font setting of the specified chart data table.
  32131. </summary>
  32132. </member>
  32133. <member name="P:Aspose.Cells.Charts.ChartDataTable.AutoScaleFont">
  32134. <summary>
  32135. True if the text in the object changes font size when the object size changes.
  32136. The default value is True.
  32137. </summary>
  32138. </member>
  32139. <member name="P:Aspose.Cells.Charts.ChartDataTable.BackgroundMode">
  32140. <summary>
  32141. Gets and sets the display mode of the background
  32142. </summary>
  32143. </member>
  32144. <member name="P:Aspose.Cells.Charts.ChartDataTable.Background">
  32145. <summary>
  32146. Gets and sets the display mode of the background
  32147. </summary>
  32148. <remarks>NOTE: This member is now obsolete. Instead,
  32149. please use ChartDataTable.BackgroundMode property.
  32150. This property will be removed 12 months later since JANUARY 2012.
  32151. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  32152. </member>
  32153. <member name="P:Aspose.Cells.Charts.ChartDataTable.HasBorderHorizontal">
  32154. <summary>
  32155. True if the chart data table has horizontal cell borders
  32156. </summary>
  32157. </member>
  32158. <member name="P:Aspose.Cells.Charts.ChartDataTable.HasBorderVertical">
  32159. <summary>
  32160. True if the chart data table has vertical cell borders
  32161. </summary>
  32162. </member>
  32163. <member name="P:Aspose.Cells.Charts.ChartDataTable.HasBorderOutline">
  32164. <summary>
  32165. True if the chart data table has outline borders
  32166. </summary>
  32167. </member>
  32168. <member name="P:Aspose.Cells.Charts.ChartDataTable.ShowLegendKey">
  32169. <summary>
  32170. True if the data label legend key is visible.
  32171. </summary>
  32172. </member>
  32173. <member name="P:Aspose.Cells.Charts.ChartDataTable.Border">
  32174. <summary>
  32175. Returns a Border object that represents the border of the object
  32176. </summary>
  32177. </member>
  32178. <member name="T:Aspose.Cells.Charts.ChartMarkerType">
  32179. <summary>
  32180. Represents the marker style in a line chart, scatter chart, or radar chart.
  32181. </summary>
  32182. </member>
  32183. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Automatic">
  32184. <summary>
  32185. Automatic markers.
  32186. </summary>
  32187. </member>
  32188. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Circle">
  32189. <summary>
  32190. Circular markers.
  32191. </summary>
  32192. </member>
  32193. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Dash">
  32194. <summary>
  32195. Long bar markers
  32196. </summary>
  32197. </member>
  32198. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Diamond">
  32199. <summary>
  32200. Diamond-shaped markers.
  32201. </summary>
  32202. </member>
  32203. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Dot">
  32204. <summary>
  32205. Short bar markers.
  32206. </summary>
  32207. </member>
  32208. <member name="F:Aspose.Cells.Charts.ChartMarkerType.None">
  32209. <summary>
  32210. No markers.
  32211. </summary>
  32212. </member>
  32213. <member name="F:Aspose.Cells.Charts.ChartMarkerType.SquarePlus">
  32214. <summary>
  32215. Square markers with a plus sign.
  32216. </summary>
  32217. </member>
  32218. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Square">
  32219. <summary>
  32220. Square markers.
  32221. </summary>
  32222. </member>
  32223. <member name="F:Aspose.Cells.Charts.ChartMarkerType.SquareStar">
  32224. <summary>
  32225. Square markers with an asterisk.
  32226. </summary>
  32227. </member>
  32228. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Triangle">
  32229. <summary>
  32230. Triangular markers.
  32231. </summary>
  32232. </member>
  32233. <member name="F:Aspose.Cells.Charts.ChartMarkerType.SquareX">
  32234. <summary>
  32235. Square markers with an X.
  32236. </summary>
  32237. </member>
  32238. <member name="F:Aspose.Cells.Charts.ChartMarkerType.Picture">
  32239. <summary>
  32240. Picture
  32241. </summary>
  32242. </member>
  32243. <member name="T:Aspose.Cells.Charts.ChartPoint">
  32244. <summary>
  32245. Represents a single point in a series in a chart.
  32246. </summary>
  32247. <example>
  32248. <code>
  32249. [C#]
  32250. //Instantiating a Workbook object
  32251. Workbook workbook = new Workbook();
  32252. //Obtaining the reference of the first worksheet
  32253. Worksheet worksheet = workbook.Worksheets[0];
  32254. //Adding a sample value to "A1" cell
  32255. worksheet.Cells["A1"].PutValue(50);
  32256. //Adding a sample value to "A2" cell
  32257. worksheet.Cells["A2"].PutValue(100);
  32258. //Adding a sample value to "A3" cell
  32259. worksheet.Cells["A3"].PutValue(150);
  32260. //Adding a sample value to "B1" cell
  32261. worksheet.Cells["B1"].PutValue(60);
  32262. //Adding a sample value to "B2" cell
  32263. worksheet.Cells["B2"].PutValue(32);
  32264. //Adding a sample value to "B3" cell
  32265. worksheet.Cells["B3"].PutValue(50);
  32266. //Adding a chart to the worksheet
  32267. int chartIndex = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10);
  32268. //Accessing the instance of the newly added chart
  32269. Chart chart = worksheet.Charts[chartIndex];
  32270. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32271. chart.NSeries.Add("A1:B3", true);
  32272. //Show Data Labels
  32273. chart.NSeries[0].DataLabels.IsValueShown = true;
  32274. for (int i = 0; i &lt; chart.NSeries[0].Points.Count; i++)
  32275. {
  32276. //Get Data Point
  32277. ChartPoint point = chart.NSeries[0].Points[i];
  32278. //Set Pir Explosion
  32279. point.Explosion = 15;
  32280. //Set Border Color
  32281. point.Border.Color = System.Drawing.Color.Red;
  32282. }
  32283. //Saving the Excel file
  32284. workbook.Save("D:\\book1.xls");
  32285. [VB.NET]
  32286. 'Instantiating a Workbook object
  32287. Dim workbook As New Workbook()
  32288. 'Obtaining the reference of the first worksheet
  32289. Dim worksheet As Worksheet = workbook.Worksheets(0)
  32290. 'Adding a sample value to "A1" cell
  32291. worksheet.Cells("A1").PutValue(50)
  32292. 'Adding a sample value to "A2" cell
  32293. worksheet.Cells("A2").PutValue(100)
  32294. 'Adding a sample value to "A3" cell
  32295. worksheet.Cells("A3").PutValue(150)
  32296. 'Adding a sample value to "B1" cell
  32297. worksheet.Cells("B1").PutValue(60)
  32298. 'Adding a sample value to "B2" cell
  32299. worksheet.Cells("B2").PutValue(32)
  32300. 'Adding a sample value to "B3" cell
  32301. worksheet.Cells("B3").PutValue(50)
  32302. 'Adding a chart to the worksheet
  32303. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10)
  32304. 'Accessing the instance of the newly added chart
  32305. Dim chart As Chart = worksheet.Charts(chartIndex)
  32306. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32307. chart.NSeries.Add("A1:B3", True)
  32308. 'Show Data Labels
  32309. chart.NSeries(0).DataLabels.IsValueShown = True
  32310. For i As Integer = 0 To chart.NSeries(0).Points.Count - 1
  32311. 'Get Data Point
  32312. Dim point As ChartPoint = chart.NSeries(0).Points(i)
  32313. 'Set Pir Explosion
  32314. point.Explosion = 15
  32315. 'Set Border Color
  32316. point.Border.Color = System.Drawing.Color.Red
  32317. Next i
  32318. 'Saving the Excel file
  32319. workbook.Save("D:\book1.xls")
  32320. </code>
  32321. </example>
  32322. </member>
  32323. <member name="M:Aspose.Cells.Charts.ChartPoint.GetTopPointCount">
  32324. <summary>
  32325. Gets the number of top points after calls Chart.Calculate() method.
  32326. </summary>
  32327. </member>
  32328. <member name="M:Aspose.Cells.Charts.ChartPoint.GetTopPointXPx(System.Int32)">
  32329. <summary>
  32330. Gets x-coordinate of the top point of shape after calls Chart.Calculate() method.
  32331. Applies 3D charts: Column3D, Bar3D, Cone, Cylinder, Pyramid and Area3D
  32332. </summary>
  32333. </member>
  32334. <member name="M:Aspose.Cells.Charts.ChartPoint.GetTopPointYPx(System.Int32)">
  32335. <summary>
  32336. Gets y-coordinate of the top point of shape after calls Chart.Calculate() method.
  32337. Applies 3D charts: Column3D, Bar3D, Cone, Cylinder, Pyramid and Area3D
  32338. </summary>
  32339. </member>
  32340. <member name="M:Aspose.Cells.Charts.ChartPoint.GetBottomPointCount">
  32341. <summary>
  32342. Gets the number of bottom points after calls Chart.Calculate() method.
  32343. </summary>
  32344. </member>
  32345. <member name="M:Aspose.Cells.Charts.ChartPoint.GetBottomPointXPx(System.Int32)">
  32346. <summary>
  32347. Gets x-coordinate of the bottom point of shape after calls Chart.Calculate() method.
  32348. Applies 3D charts: Column3D, Bar3D, Cone, Cylinder, Pyramid
  32349. </summary>
  32350. </member>
  32351. <member name="M:Aspose.Cells.Charts.ChartPoint.GetBottomPointYPx(System.Int32)">
  32352. <summary>
  32353. Gets y-coordinate of the bottom point of shape after calls Chart.Calculate() method.
  32354. Applies 3D charts: Column3D, Bar3D, Cone, Cylinder, Pyramid
  32355. </summary>
  32356. </member>
  32357. <member name="M:Aspose.Cells.Charts.ChartPoint.GetOnCategoryAxisPointCount">
  32358. <summary>
  32359. Gets the number of the points on category axis after calls Chart.Calculate() method. Only applies to area chart.
  32360. </summary>
  32361. <remarks>
  32362. Area 2D chart return 1
  32363. Area 3D chart return 2.
  32364. </remarks>
  32365. </member>
  32366. <member name="M:Aspose.Cells.Charts.ChartPoint.GetOnCategoryAxisPointXPx(System.Int32)">
  32367. <summary>
  32368. Gets x-coordinate of the point on category axis after calls Chart.Calculate() method. Only applies to Area chart.
  32369. </summary>
  32370. <remarks>
  32371. Area 2D chart: index is 0.
  32372. Area 3D chart: index is 0 or 1.
  32373. </remarks>
  32374. </member>
  32375. <member name="M:Aspose.Cells.Charts.ChartPoint.GetOnCategoryAxisPointYPx(System.Int32)">
  32376. <summary>
  32377. Gets y-coordinate of the point on category axis after calls Chart.Calculate() method. Only applies to Area chart.
  32378. </summary>
  32379. <remarks>
  32380. Area 2D chart: index is 0.
  32381. Area 3D chart: index is 0 or 1.
  32382. </remarks>
  32383. </member>
  32384. <member name="P:Aspose.Cells.Charts.ChartPoint.Explosion">
  32385. <summary>
  32386. The distance of an open pie slice from the center of the pie chart is expressed as a percentage of the pie diameter.
  32387. </summary>
  32388. </member>
  32389. <member name="P:Aspose.Cells.Charts.ChartPoint.Shadow">
  32390. <summary>
  32391. True if the chartpoint has a shadow.
  32392. </summary>
  32393. </member>
  32394. <member name="P:Aspose.Cells.Charts.ChartPoint.Border">
  32395. <summary>
  32396. Gets the <see cref="T:Aspose.Cells.Drawing.Line">border</see>.
  32397. </summary>
  32398. </member>
  32399. <member name="P:Aspose.Cells.Charts.ChartPoint.Area">
  32400. <summary>
  32401. Gets the <see cref="P:Aspose.Cells.Charts.ChartPoint.Area">area</see>.
  32402. </summary>
  32403. </member>
  32404. <member name="P:Aspose.Cells.Charts.ChartPoint.Marker">
  32405. <summary>
  32406. Gets the <see cref="P:Aspose.Cells.Charts.ChartPoint.Marker">marker</see>.
  32407. </summary>
  32408. </member>
  32409. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerStyle">
  32410. <summary>
  32411. Represents the marker style in a line chart, scatter chart, or radar chart.
  32412. </summary>
  32413. <remarks>NOTE: This member is now obsolete. Instead,
  32414. please use Marker.MarkerStyle property.
  32415. This property will be removed 12 months later since August 2012.
  32416. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  32417. </member>
  32418. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerSize">
  32419. <summary>
  32420. Represents the marker size in a line chart, scatter chart, or radar chart.
  32421. </summary>
  32422. <remarks>NOTE: This member is now obsolete. Instead,
  32423. please use Marker.MarkerSize property.
  32424. This property will be removed 12 months later since August 2012.
  32425. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  32426. </member>
  32427. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerForegroundColor">
  32428. <summary>
  32429. Represents the marker foreground color in a line chart, scatter chart, or radar chart.
  32430. </summary>
  32431. <remarks>NOTE: This member is now obsolete. Instead,
  32432. please use Marker.MarkerForegroundColor property.
  32433. This property will be removed 12 months later since August 2012.
  32434. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  32435. </member>
  32436. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerForegroundColorSetType">
  32437. <summary>
  32438. Gets or sets the marker foreground color set type.
  32439. </summary>
  32440. <remarks>NOTE: This member is now obsolete. Instead,
  32441. please use Marker.MarkerForegroundColorSetType property.
  32442. This property will be removed 12 months later since August 2012.
  32443. Aspose apologizes for any inconvenience you may have experienced.
  32444. FormattingType.Automatic is same as ChartLineFormattingType.Automatic.
  32445. FormattingType.None is same as ChartLineFormattingType.None.
  32446. FormattingType.InnerCustom is same as ChartLineFormattingType.Solid.
  32447. </remarks>
  32448. </member>
  32449. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerBackgroundColor">
  32450. <summary>
  32451. Represents the marker background color in a line chart, scatter chart, or radar chart.
  32452. </summary>
  32453. <remarks>NOTE: This member is now obsolete. Instead,
  32454. please use Marker.MarkerBackgroundColor property.
  32455. This property will be removed 12 months later since August 2012.
  32456. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  32457. </member>
  32458. <member name="P:Aspose.Cells.Charts.ChartPoint.MarkerBackgroundColorSetType">
  32459. <summary>
  32460. Gets or sets the marker background color set type.
  32461. </summary>
  32462. <remarks>NOTE: This member is now obsolete. Instead,
  32463. please use Marker.MarkerBackgroundColorSetType property.
  32464. This property will be removed 12 months later since August 2012.
  32465. Aspose apologizes for any inconvenience you may have experienced.
  32466. FormattingType.Automatic is same as ChartLineFormattingType.Automatic.
  32467. FormattingType.None is same as ChartLineFormattingType.None.
  32468. FormattingType.InnerCustom is same as ChartLineFormattingType.Solid.
  32469. </remarks>
  32470. </member>
  32471. <member name="P:Aspose.Cells.Charts.ChartPoint.DataLabels">
  32472. <summary>
  32473. Returns a DataLabels object that represents the data label associated with the point.
  32474. </summary>
  32475. </member>
  32476. <member name="P:Aspose.Cells.Charts.ChartPoint.YValue">
  32477. <summary>
  32478. Gets or sets the Y value of the chart point.
  32479. </summary>
  32480. </member>
  32481. <member name="P:Aspose.Cells.Charts.ChartPoint.YValueType">
  32482. <summary>
  32483. Gets Y value type of the chart point.
  32484. </summary>
  32485. </member>
  32486. <member name="P:Aspose.Cells.Charts.ChartPoint.XValue">
  32487. <summary>
  32488. Gets or sets the X value of the chart point.
  32489. </summary>
  32490. </member>
  32491. <member name="P:Aspose.Cells.Charts.ChartPoint.XValueType">
  32492. <summary>
  32493. Gets X value type of the chart point.
  32494. </summary>
  32495. </member>
  32496. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeProperties">
  32497. <summary>
  32498. Gets the <seealso cref="T:Aspose.Cells.Drawing.ShapePropertyCollection" /> object that holds the visual shape properties of the ChartPoint.
  32499. </summary>
  32500. </member>
  32501. <member name="P:Aspose.Cells.Charts.ChartPoint.IsInSecondaryPlot">
  32502. <summary>
  32503. Gets or sets a value indicates whether this data points is in the second pie or bar
  32504. on a pie of pie or bar of pie chart
  32505. </summary>
  32506. </member>
  32507. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeX">
  32508. <summary>
  32509. Gets the x coordinate of the upper left corner in units of 1/4000 of chart's width after calls Chart.Calculate() method.
  32510. </summary>
  32511. </member>
  32512. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeY">
  32513. <summary>
  32514. Gets the y coordinate of the upper left corner in units of 1/4000 of chart's height after calls Chart.Calculate() method.
  32515. </summary>
  32516. </member>
  32517. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeWidth">
  32518. <summary>
  32519. Gets the width in units of 1/4000 of chart's width after calls Chart.Calculate() method.
  32520. </summary>
  32521. </member>
  32522. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeHeight">
  32523. <summary>
  32524. Gets the height in units of 1/4000 of chart's height after calls Chart.Calculate() method.
  32525. </summary>
  32526. </member>
  32527. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeXPx">
  32528. <summary>
  32529. Gets the x coordinate of the upper left corner in units of pixels after calls Chart.Calculate() method.
  32530. </summary>
  32531. </member>
  32532. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeYPx">
  32533. <summary>
  32534. Gets the y coordinate of the upper left corner in units of pixels after calls Chart.Calculate() method.
  32535. </summary>
  32536. </member>
  32537. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeWidthPx">
  32538. <summary>
  32539. Gets the width in units of pixels after calls Chart.Calculate() method.
  32540. </summary>
  32541. </member>
  32542. <member name="P:Aspose.Cells.Charts.ChartPoint.ShapeHeightPx">
  32543. <summary>
  32544. Gets the height in units of pixels after calls Chart.Calculate() method.
  32545. </summary>
  32546. </member>
  32547. <member name="P:Aspose.Cells.Charts.ChartPoint.BorderWidthPx">
  32548. <summary>
  32549. Gets the width of border in units of pixels after calls Chart.Calculate() method.
  32550. </summary>
  32551. </member>
  32552. <member name="P:Aspose.Cells.Charts.ChartPoint.RadiusPx">
  32553. <summary>
  32554. Gets the radius of bubble, pie or doughnut in units of pixels after calls Chart.Calculate() method.
  32555. </summary>
  32556. </member>
  32557. <member name="P:Aspose.Cells.Charts.ChartPoint.InnerRadiusPx">
  32558. <summary>
  32559. Gets the inner radius of doughnut slice in units of pixels after calls Chart.Calculate() method.
  32560. Applies to Doughnut chart.
  32561. </summary>
  32562. </member>
  32563. <member name="P:Aspose.Cells.Charts.ChartPoint.StartAngle">
  32564. <summary>
  32565. Gets the starting angle for the pie section, measured in degrees clockwise from the x-axis after calls Chart.Calculate() method.
  32566. Applies to Pie chart.
  32567. </summary>
  32568. </member>
  32569. <member name="P:Aspose.Cells.Charts.ChartPoint.EndAngle">
  32570. <summary>
  32571. Gets the ending angle for the pie section, measured in degrees clockwise from the x-axis after calls Chart.Calculate() method.
  32572. Applies to Pie chart.
  32573. </summary>
  32574. </member>
  32575. <member name="P:Aspose.Cells.Charts.ChartPoint.ArcStartPointXPx">
  32576. <summary>
  32577. Gets the x coordinate of starting point for the pie section after calls Chart.Calculate() method.
  32578. Applies to Pie and Doughnut chart.
  32579. </summary>
  32580. </member>
  32581. <member name="P:Aspose.Cells.Charts.ChartPoint.ArcStartPointYPx">
  32582. <summary>
  32583. Gets the y coordinate of starting point for the pie section after calls Chart.Calculate() method.
  32584. Applies to Pie and Doughnut chart.
  32585. </summary>
  32586. </member>
  32587. <member name="P:Aspose.Cells.Charts.ChartPoint.ArcEndPointXPx">
  32588. <summary>
  32589. Gets the x coordinate of ending point for the pie section after calls Chart.Calculate() method.
  32590. Applies to Pie and Doughnut chart.
  32591. </summary>
  32592. </member>
  32593. <member name="P:Aspose.Cells.Charts.ChartPoint.ArcEndPointYPx">
  32594. <summary>
  32595. Gets the y coordinate of ending point for the pie section after calls Chart.Calculate() method.
  32596. Applies to Pie and Doughnut chart.
  32597. </summary>
  32598. </member>
  32599. <member name="P:Aspose.Cells.Charts.ChartPoint.InnerArcStartPointXPx">
  32600. <summary>
  32601. Gets the x coordinate of starting point for the pie section after calls Chart.Calculate() method.
  32602. Applies to Doughnut chart.
  32603. </summary>
  32604. </member>
  32605. <member name="P:Aspose.Cells.Charts.ChartPoint.InnerArcStartPointYPx">
  32606. <summary>
  32607. Gets the y coordinate of starting point for the pie section after calls Chart.Calculate() method.
  32608. Applies to Doughnut chart.
  32609. </summary>
  32610. </member>
  32611. <member name="P:Aspose.Cells.Charts.ChartPoint.InnerArcEndPointXPx">
  32612. <summary>
  32613. Gets the x coordinate of ending point for the pie section after calls Chart.Calculate() method.
  32614. Applies to Doughnut chart.
  32615. </summary>
  32616. </member>
  32617. <member name="P:Aspose.Cells.Charts.ChartPoint.InnerArcEndPointYPx">
  32618. <summary>
  32619. Gets the y coordinate of ending point for the pie section after calls Chart.Calculate() method.
  32620. Applies to Doughnut chart.
  32621. </summary>
  32622. </member>
  32623. <member name="T:Aspose.Cells.Charts.ChartPointCollection">
  32624. <summary>
  32625. Represents a collection that contains all the points in one series.
  32626. </summary>
  32627. <example>
  32628. <code>
  32629. //Instantiating a Workbook object
  32630. Workbook workbook = new Workbook();
  32631. //Obtaining the reference of the first worksheet
  32632. Worksheet worksheet = workbook.Worksheets[0];
  32633. //Adding a sample value to "A1" cell
  32634. worksheet.Cells["A1"].PutValue(50);
  32635. //Adding a sample value to "A2" cell
  32636. worksheet.Cells["A2"].PutValue(100);
  32637. //Adding a sample value to "A3" cell
  32638. worksheet.Cells["A3"].PutValue(150);
  32639. //Adding a sample value to "B1" cell
  32640. worksheet.Cells["B1"].PutValue(60);
  32641. //Adding a sample value to "B2" cell
  32642. worksheet.Cells["B2"].PutValue(32);
  32643. //Adding a sample value to "B3" cell
  32644. worksheet.Cells["B3"].PutValue(50);
  32645. //Adding a chart to the worksheet
  32646. int chartIndex = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10);
  32647. //Accessing the instance of the newly added chart
  32648. Chart chart = worksheet.Charts[chartIndex];
  32649. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32650. chart.NSeries.Add("A1:B3", true);
  32651. //Show Data Labels
  32652. chart.NSeries[0].DataLabels.IsValueShown = true;
  32653. ChartPointCollection points = chart.NSeries[0].Points;
  32654. for (int i = 0; i &lt; points.Count; i++)
  32655. {
  32656. //Get Data Point
  32657. ChartPoint point = points[i];
  32658. //Set Pir Explosion
  32659. point.Explosion = 15;
  32660. //Set Border Color
  32661. point.Border.Color = System.Drawing.Color.Red;
  32662. }
  32663. //Saving the Excel file
  32664. workbook.Save("D:\\book1.xls");
  32665. [VB.NET]
  32666. 'Instantiating a Workbook object
  32667. Dim workbook As New Workbook()
  32668. 'Obtaining the reference of the first worksheet
  32669. Dim worksheet As Worksheet = workbook.Worksheets(0)
  32670. 'Adding a sample value to "A1" cell
  32671. worksheet.Cells("A1").PutValue(50)
  32672. 'Adding a sample value to "A2" cell
  32673. worksheet.Cells("A2").PutValue(100)
  32674. 'Adding a sample value to "A3" cell
  32675. worksheet.Cells("A3").PutValue(150)
  32676. 'Adding a sample value to "B1" cell
  32677. worksheet.Cells("B1").PutValue(60)
  32678. 'Adding a sample value to "B2" cell
  32679. worksheet.Cells("B2").PutValue(32)
  32680. 'Adding a sample value to "B3" cell
  32681. worksheet.Cells("B3").PutValue(50)
  32682. 'Adding a chart to the worksheet
  32683. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10)
  32684. 'Accessing the instance of the newly added chart
  32685. Dim chart As Chart = worksheet.Charts(chartIndex)
  32686. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32687. chart.NSeries.Add("A1:B3", True)
  32688. 'Show Data Labels
  32689. chart.NSeries(0).DataLabels.IsValueShown = True
  32690. Dim points As ChartPointCollection = chart.NSeries(0).Points
  32691. For i As Integer = 0 To points.Count - 1
  32692. 'Get Data Point
  32693. Dim point As ChartPoint = points(i)
  32694. 'Set Pir Explosion
  32695. point.Explosion = 15
  32696. 'Set Border Color
  32697. point.Border.Color = System.Drawing.Color.Red
  32698. Next i
  32699. 'Saving the Excel file
  32700. workbook.Save("D:\book1.xls")
  32701. </code>
  32702. </example>
  32703. </member>
  32704. <member name="M:Aspose.Cells.Charts.ChartPointCollection.GetEnumerator">
  32705. <summary>
  32706. Returns an enumerator for the entire <see cref="T:Aspose.Cells.Charts.ChartPointCollection" />.
  32707. </summary>
  32708. <returns>
  32709. </returns>
  32710. </member>
  32711. <member name="M:Aspose.Cells.Charts.ChartPointCollection.Clear">
  32712. <summary>
  32713. Remove all setting of the chart points.
  32714. </summary>
  32715. </member>
  32716. <member name="M:Aspose.Cells.Charts.ChartPointCollection.RemoveAt(System.Int32)">
  32717. <summary>
  32718. Removes point at the index of the series..
  32719. </summary>
  32720. <param name="index">The index of the point.</param>
  32721. </member>
  32722. <member name="P:Aspose.Cells.Charts.ChartPointCollection.Count">
  32723. <summary>
  32724. Gets the count of the chart point.
  32725. </summary>
  32726. </member>
  32727. <member name="P:Aspose.Cells.Charts.ChartPointCollection.Item(System.Int32)">
  32728. <summary>
  32729. Gets the <see cref="T:Aspose.Cells.Charts.ChartPoint" /> element at the specified index in the series.
  32730. </summary>
  32731. <param name="index">The index of chart point in the series.</param>
  32732. <returns>The ChartPoint object.</returns>
  32733. </member>
  32734. <member name="T:Aspose.Cells.Charts.ChartCollection">
  32735. <summary>
  32736. Encapsulates a collection of <see cref="T:Aspose.Cells.Charts.Chart" /> objects.
  32737. </summary>
  32738. <example>
  32739. <code>
  32740. [C#]
  32741. Workbook workbook = new Workbook();
  32742. ChartCollection charts = workbook.Worksheets[0].Charts;
  32743. [Visual Basic]
  32744. Dim workbook as Workbook = new Workbook()
  32745. Dim ChartCollection as Charts = workbook.Worksheets(0).Charts
  32746. </code>
  32747. </example>
  32748. </member>
  32749. <member name="M:Aspose.Cells.Charts.ChartCollection.AddFloatingChart(Aspose.Cells.Charts.ChartType,System.Int32,System.Int32,System.Int32,System.Int32)">
  32750. <summary>
  32751. Adds a chart to the collection.
  32752. </summary>
  32753. <param name="type">Chart type</param>
  32754. <param name="left">The x offset to corner</param>
  32755. <param name="top">The y offset to corner</param>
  32756. <param name="width">The chart width</param>
  32757. <param name="height">The chart height</param>
  32758. <returns>
  32759. <see cref="T:Aspose.Cells.Charts.Chart" /> object index.</returns>
  32760. </member>
  32761. <member name="M:Aspose.Cells.Charts.ChartCollection.Add(Aspose.Cells.Charts.ChartType,System.Int32,System.Int32,System.Int32,System.Int32)">
  32762. <summary>
  32763. Adds a chart to the collection.
  32764. </summary>
  32765. <param name="type">Chart type</param>
  32766. <param name="upperLeftRow">Upper left row index.</param>
  32767. <param name="upperLeftColumn">Upper left column index.</param>
  32768. <param name="lowerRightRow">Lower right row index</param>
  32769. <param name="lowerRightColumn">Lower right column index</param>
  32770. <returns>
  32771. <see cref="T:Aspose.Cells.Charts.Chart" /> object index.</returns>
  32772. </member>
  32773. <member name="M:Aspose.Cells.Charts.ChartCollection.RemoveAt(System.Int32)">
  32774. <summary>
  32775. Remove a chart at the specific index.
  32776. </summary>
  32777. <param name="index">The chart index.</param>
  32778. </member>
  32779. <member name="M:Aspose.Cells.Charts.ChartCollection.Clear">
  32780. <summary>
  32781. Clear all charts.
  32782. </summary>
  32783. </member>
  32784. <member name="P:Aspose.Cells.Charts.ChartCollection.Item(System.Int32)">
  32785. <summary>
  32786. Gets the <see cref="T:Aspose.Cells.Charts.Chart" /> element at the specified index.
  32787. </summary>
  32788. <param name="index">The zero based index of the element.</param>
  32789. <returns>The element at the specified index.</returns>
  32790. </member>
  32791. <member name="P:Aspose.Cells.Charts.ChartCollection.Item(System.String)">
  32792. <summary>
  32793. Gets the chart by the name.
  32794. </summary>
  32795. <param name="name"> The chart name.</param>
  32796. <returns>The chart.</returns>
  32797. <remarks>
  32798. The default chart name is null. So you have to explicitly set the name of the chart.
  32799. </remarks>
  32800. </member>
  32801. <member name="T:Aspose.Cells.Drawing.ChartShape">
  32802. <summary>
  32803. Represents the shape of the chart.
  32804. Properties and methods for the ChartObject object control the appearance and size of the embedded chart on the worksheet.
  32805. </summary>
  32806. <example>
  32807. <code>
  32808. [C#]
  32809. //Instantiating a Workbook object
  32810. Workbook workbook = new Workbook();
  32811. //Obtaining the reference of the first worksheet
  32812. Worksheet worksheet = workbook.Worksheets[0];
  32813. //Adding a sample value to "A1" cell
  32814. worksheet.Cells["A1"].PutValue(50);
  32815. //Adding a sample value to "A2" cell
  32816. worksheet.Cells["A2"].PutValue(100);
  32817. //Adding a sample value to "A3" cell
  32818. worksheet.Cells["A3"].PutValue(150);
  32819. //Adding a sample value to "B1" cell
  32820. worksheet.Cells["B1"].PutValue(60);
  32821. //Adding a sample value to "B2" cell
  32822. worksheet.Cells["B2"].PutValue(32);
  32823. //Adding a sample value to "B3" cell
  32824. worksheet.Cells["B3"].PutValue(50);
  32825. //Adding a chart to the worksheet
  32826. int chartIndex = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10);
  32827. //Accessing the instance of the newly added chart
  32828. Chart chart = worksheet.Charts[chartIndex];
  32829. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32830. chart.NSeries.Add("A1:B3", true);
  32831. //Show Data Labels
  32832. chart.NSeries[0].DataLabels.IsValueShown = true;
  32833. //Getting Chart Shape
  32834. ChartShape chartShape = chart.ChartObject;
  32835. //Set Lower Right Column
  32836. chartShape.LowerRightColumn = 10;
  32837. //Set LowerDeltaX
  32838. chartShape.LowerDeltaX = 1024;
  32839. //Saving the Excel file
  32840. workbook.Save("D:\\book1.xls");
  32841. [VB.NET]
  32842. 'Instantiating a Workbook object
  32843. Dim workbook As New Workbook()
  32844. 'Obtaining the reference of the first worksheet
  32845. Dim worksheet As Worksheet = workbook.Worksheets(0)
  32846. 'Adding a sample value to "A1" cell
  32847. worksheet.Cells("A1").PutValue(50)
  32848. 'Adding a sample value to "A2" cell
  32849. worksheet.Cells("A2").PutValue(100)
  32850. 'Adding a sample value to "A3" cell
  32851. worksheet.Cells("A3").PutValue(150)
  32852. 'Adding a sample value to "B1" cell
  32853. worksheet.Cells("B1").PutValue(60)
  32854. 'Adding a sample value to "B2" cell
  32855. worksheet.Cells("B2").PutValue(32)
  32856. 'Adding a sample value to "B3" cell
  32857. worksheet.Cells("B3").PutValue(50)
  32858. 'Adding a chart to the worksheet
  32859. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.PieExploded, 5, 0, 25, 10)
  32860. 'Accessing the instance of the newly added chart
  32861. Dim chart As Chart = worksheet.Charts(chartIndex)
  32862. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B3"
  32863. chart.NSeries.Add("A1:B3", True)
  32864. 'Show Data Labels
  32865. chart.NSeries(0).DataLabels.IsValueShown = True
  32866. 'Getting Chart Shape
  32867. Dim chartShape As ChartShape = chart.ChartObject
  32868. 'Set Lower Right Column
  32869. chartShape.LowerRightColumn = 10
  32870. 'Set LowerDeltaX
  32871. chartShape.LowerDeltaX = 1024
  32872. 'Saving the Excel file
  32873. workbook.Save("D:\book1.xls")
  32874. </code>
  32875. </example>
  32876. </member>
  32877. <member name="P:Aspose.Cells.Drawing.ChartShape.Chart">
  32878. <summary>
  32879. Returns a Chart object that represents the chart contained in the object.
  32880. </summary>
  32881. </member>
  32882. <member name="T:Aspose.Cells.Charts.ChartSplitType">
  32883. <summary>
  32884. Represents the way the two sections of either a pie of pie chart or a bar of pie chart are split.
  32885. </summary>
  32886. </member>
  32887. <member name="F:Aspose.Cells.Charts.ChartSplitType.Position">
  32888. <summary>
  32889. Represents the data points shall be split between the pie
  32890. and the second chart by putting the last Split Position
  32891. of the data points in the second chart
  32892. </summary>
  32893. </member>
  32894. <member name="F:Aspose.Cells.Charts.ChartSplitType.Value">
  32895. <summary>
  32896. Represents the data points shall be split between the pie
  32897. and the second chart by putting the data points with
  32898. value less than Split Position in the second chart.
  32899. </summary>
  32900. </member>
  32901. <member name="F:Aspose.Cells.Charts.ChartSplitType.PercentValue">
  32902. <summary>
  32903. Represents the data points shall be split between the pie
  32904. and the second chart by putting the points with
  32905. percentage less than Split Position percent in the
  32906. second chart.
  32907. </summary>
  32908. </member>
  32909. <member name="F:Aspose.Cells.Charts.ChartSplitType.Custom">
  32910. <summary>
  32911. Represents the data points shall be split between the pie
  32912. and the second chart according to the Custom Split
  32913. values.
  32914. </summary>
  32915. </member>
  32916. <member name="F:Aspose.Cells.Charts.ChartSplitType.Auto">
  32917. <summary>
  32918. Represents the data points shall be split using the default
  32919. mechanism for this chart type.
  32920. </summary>
  32921. </member>
  32922. <member name="T:Aspose.Cells.Charts.ChartType">
  32923. <summary>
  32924. Enumerates all chart types used in Excel.
  32925. </summary>
  32926. </member>
  32927. <member name="F:Aspose.Cells.Charts.ChartType.Area">
  32928. <summary>
  32929. Represents Area Chart.
  32930. </summary>
  32931. </member>
  32932. <member name="F:Aspose.Cells.Charts.ChartType.AreaStacked">
  32933. <summary>
  32934. Represents Stacked Area Chart.
  32935. </summary>
  32936. </member>
  32937. <member name="F:Aspose.Cells.Charts.ChartType.Area100PercentStacked">
  32938. <summary>
  32939. Represents 100% Stacked Area Chart.
  32940. </summary>
  32941. </member>
  32942. <member name="F:Aspose.Cells.Charts.ChartType.Area3D">
  32943. <summary>
  32944. Represents 3D Area Chart.
  32945. </summary>
  32946. </member>
  32947. <member name="F:Aspose.Cells.Charts.ChartType.Area3DStacked">
  32948. <summary>
  32949. Represents 3D Stacked Area Chart.
  32950. </summary>
  32951. </member>
  32952. <member name="F:Aspose.Cells.Charts.ChartType.Area3D100PercentStacked">
  32953. <summary>
  32954. Represents 3D 100% Stacked Area Chart.
  32955. </summary>
  32956. </member>
  32957. <member name="F:Aspose.Cells.Charts.ChartType.Bar">
  32958. <summary>
  32959. Represents Bar Chart: Clustered Bar Chart.
  32960. </summary>
  32961. </member>
  32962. <member name="F:Aspose.Cells.Charts.ChartType.BarStacked">
  32963. <summary>
  32964. Represents Stacked Bar Chart.
  32965. </summary>
  32966. </member>
  32967. <member name="F:Aspose.Cells.Charts.ChartType.Bar100PercentStacked">
  32968. <summary>
  32969. Represents 100% Stacked Bar Chart.
  32970. </summary>
  32971. </member>
  32972. <member name="F:Aspose.Cells.Charts.ChartType.Bar3DClustered">
  32973. <summary>
  32974. Represents 3D Colustered Bar Chart.
  32975. </summary>
  32976. </member>
  32977. <member name="F:Aspose.Cells.Charts.ChartType.Bar3DStacked">
  32978. <summary>
  32979. Represents 3D Stacked Bar Chart.
  32980. </summary>
  32981. </member>
  32982. <member name="F:Aspose.Cells.Charts.ChartType.Bar3D100PercentStacked">
  32983. <summary>
  32984. Represents 3D 100% Stacked Bar Chart.
  32985. </summary>
  32986. </member>
  32987. <member name="F:Aspose.Cells.Charts.ChartType.Bubble">
  32988. <summary>
  32989. Represents Bubble Chart.
  32990. </summary>
  32991. </member>
  32992. <member name="F:Aspose.Cells.Charts.ChartType.Bubble3D">
  32993. <summary>
  32994. Represents 3D Bubble Chart.
  32995. </summary>
  32996. </member>
  32997. <member name="F:Aspose.Cells.Charts.ChartType.Column">
  32998. <summary>
  32999. Represents Column Chart: Clustered Column Chart.
  33000. </summary>
  33001. </member>
  33002. <member name="F:Aspose.Cells.Charts.ChartType.ColumnStacked">
  33003. <summary>
  33004. Represents Stacked Column Chart.
  33005. </summary>
  33006. </member>
  33007. <member name="F:Aspose.Cells.Charts.ChartType.Column100PercentStacked">
  33008. <summary>
  33009. Represents 100% Stacked Column Chart.
  33010. </summary>
  33011. </member>
  33012. <member name="F:Aspose.Cells.Charts.ChartType.Column3D">
  33013. <summary>
  33014. Represents 3D Column Chart.
  33015. </summary>
  33016. </member>
  33017. <member name="F:Aspose.Cells.Charts.ChartType.Column3DClustered">
  33018. <summary>
  33019. Represents 3D Clustered Column Chart.
  33020. </summary>
  33021. </member>
  33022. <member name="F:Aspose.Cells.Charts.ChartType.Column3DStacked">
  33023. <summary>
  33024. Represents 3D Stacked Column Chart.
  33025. </summary>
  33026. </member>
  33027. <member name="F:Aspose.Cells.Charts.ChartType.Column3D100PercentStacked">
  33028. <summary>
  33029. Represents 3D 100% Stacked Column Chart.
  33030. </summary>
  33031. </member>
  33032. <member name="F:Aspose.Cells.Charts.ChartType.Cone">
  33033. <summary>
  33034. Represents Cone Chart.
  33035. </summary>
  33036. </member>
  33037. <member name="F:Aspose.Cells.Charts.ChartType.ConeStacked">
  33038. <summary>
  33039. Represents Stacked Cone Chart.
  33040. </summary>
  33041. </member>
  33042. <member name="F:Aspose.Cells.Charts.ChartType.Cone100PercentStacked">
  33043. <summary>
  33044. Represents 100% Stacked Cone Chart.
  33045. </summary>
  33046. </member>
  33047. <member name="F:Aspose.Cells.Charts.ChartType.ConicalBar">
  33048. <summary>
  33049. Represents Conical Bar Chart.
  33050. </summary>
  33051. </member>
  33052. <member name="F:Aspose.Cells.Charts.ChartType.ConicalBarStacked">
  33053. <summary>
  33054. Represents Stacked Conical Bar Chart.
  33055. </summary>
  33056. </member>
  33057. <member name="F:Aspose.Cells.Charts.ChartType.ConicalBar100PercentStacked">
  33058. <summary>
  33059. Represents 100% Stacked Conical Bar Chart.
  33060. </summary>
  33061. </member>
  33062. <member name="F:Aspose.Cells.Charts.ChartType.ConicalColumn3D">
  33063. <summary>
  33064. Represents 3D Conical Column Chart.
  33065. </summary>
  33066. </member>
  33067. <member name="F:Aspose.Cells.Charts.ChartType.Cylinder">
  33068. <summary>
  33069. Represents Cylinder Chart.
  33070. </summary>
  33071. </member>
  33072. <member name="F:Aspose.Cells.Charts.ChartType.CylinderStacked">
  33073. <summary>
  33074. Represents Stacked Cylinder Chart.
  33075. </summary>
  33076. </member>
  33077. <member name="F:Aspose.Cells.Charts.ChartType.Cylinder100PercentStacked">
  33078. <summary>
  33079. Represents 100% Stacked Cylinder Chart.
  33080. </summary>
  33081. </member>
  33082. <member name="F:Aspose.Cells.Charts.ChartType.CylindricalBar">
  33083. <summary>
  33084. Represents Cylindrical Bar Chart.
  33085. </summary>
  33086. </member>
  33087. <member name="F:Aspose.Cells.Charts.ChartType.CylindricalBarStacked">
  33088. <summary>
  33089. Represents Stacked Cylindrical Bar Chart.
  33090. </summary>
  33091. </member>
  33092. <member name="F:Aspose.Cells.Charts.ChartType.CylindricalBar100PercentStacked">
  33093. <summary>
  33094. Represents 100% Stacked Cylindrical Bar Chart.
  33095. </summary>
  33096. </member>
  33097. <member name="F:Aspose.Cells.Charts.ChartType.CylindricalColumn3D">
  33098. <summary>
  33099. Represents 3D Cylindrical Column Chart.
  33100. </summary>
  33101. </member>
  33102. <member name="F:Aspose.Cells.Charts.ChartType.Doughnut">
  33103. <summary>
  33104. Represents Doughnut Chart.
  33105. </summary>
  33106. </member>
  33107. <member name="F:Aspose.Cells.Charts.ChartType.DoughnutExploded">
  33108. <summary>
  33109. Represents Exploded Doughnut Chart.
  33110. </summary>
  33111. </member>
  33112. <member name="F:Aspose.Cells.Charts.ChartType.Line">
  33113. <summary>
  33114. Represents Line Chart.
  33115. </summary>
  33116. </member>
  33117. <member name="F:Aspose.Cells.Charts.ChartType.LineStacked">
  33118. <summary>
  33119. Represents Stacked Line Chart.
  33120. </summary>
  33121. </member>
  33122. <member name="F:Aspose.Cells.Charts.ChartType.Line100PercentStacked">
  33123. <summary>
  33124. Represents 100% Stacked Line Chart.
  33125. </summary>
  33126. </member>
  33127. <member name="F:Aspose.Cells.Charts.ChartType.LineWithDataMarkers">
  33128. <summary>
  33129. Represents Line Chart with data markers.
  33130. </summary>
  33131. </member>
  33132. <member name="F:Aspose.Cells.Charts.ChartType.LineStackedWithDataMarkers">
  33133. <summary>
  33134. Represents Stacked Line Chart with data markers.
  33135. </summary>
  33136. </member>
  33137. <member name="F:Aspose.Cells.Charts.ChartType.Line100PercentStackedWithDataMarkers">
  33138. <summary>
  33139. Represents 100% Stacked Line Chart with data markers.
  33140. </summary>
  33141. </member>
  33142. <member name="F:Aspose.Cells.Charts.ChartType.Line3D">
  33143. <summary>
  33144. Represents 3D Line Chart.
  33145. </summary>
  33146. </member>
  33147. <member name="F:Aspose.Cells.Charts.ChartType.Pie">
  33148. <summary>
  33149. Represents Pie Chart.
  33150. </summary>
  33151. </member>
  33152. <member name="F:Aspose.Cells.Charts.ChartType.Pie3D">
  33153. <summary>
  33154. Represents 3D Pie Chart.
  33155. </summary>
  33156. </member>
  33157. <member name="F:Aspose.Cells.Charts.ChartType.PiePie">
  33158. <summary>
  33159. Represents Pie of Pie Chart.
  33160. </summary>
  33161. </member>
  33162. <member name="F:Aspose.Cells.Charts.ChartType.PieExploded">
  33163. <summary>
  33164. Represents Exploded Pie Chart.
  33165. </summary>
  33166. </member>
  33167. <member name="F:Aspose.Cells.Charts.ChartType.Pie3DExploded">
  33168. <summary>
  33169. Represents 3D Exploded Pie Chart.
  33170. </summary>
  33171. </member>
  33172. <member name="F:Aspose.Cells.Charts.ChartType.PieBar">
  33173. <summary>
  33174. Represents Bar of Pie Chart.
  33175. </summary>
  33176. </member>
  33177. <member name="F:Aspose.Cells.Charts.ChartType.Pyramid">
  33178. <summary>
  33179. Represents Pyramid Chart.
  33180. </summary>
  33181. </member>
  33182. <member name="F:Aspose.Cells.Charts.ChartType.PyramidStacked">
  33183. <summary>
  33184. Represents Stacked Pyramid Chart.
  33185. </summary>
  33186. </member>
  33187. <member name="F:Aspose.Cells.Charts.ChartType.Pyramid100PercentStacked">
  33188. <summary>
  33189. Represents 100% Stacked Pyramid Chart.
  33190. </summary>
  33191. </member>
  33192. <member name="F:Aspose.Cells.Charts.ChartType.PyramidBar">
  33193. <summary>
  33194. Represents Pyramid Bar Chart.
  33195. </summary>
  33196. </member>
  33197. <member name="F:Aspose.Cells.Charts.ChartType.PyramidBarStacked">
  33198. <summary>
  33199. Represents Stacked Pyramid Bar Chart.
  33200. </summary>
  33201. </member>
  33202. <member name="F:Aspose.Cells.Charts.ChartType.PyramidBar100PercentStacked">
  33203. <summary>
  33204. Represents 100% Stacked Pyramid Bar Chart.
  33205. </summary>
  33206. </member>
  33207. <member name="F:Aspose.Cells.Charts.ChartType.PyramidColumn3D">
  33208. <summary>
  33209. Represents 3D Pyramid Column Chart.
  33210. </summary>
  33211. </member>
  33212. <member name="F:Aspose.Cells.Charts.ChartType.Radar">
  33213. <summary>
  33214. Represents Radar Chart.
  33215. </summary>
  33216. </member>
  33217. <member name="F:Aspose.Cells.Charts.ChartType.RadarWithDataMarkers">
  33218. <summary>
  33219. Represents Radar Chart with data markers.
  33220. </summary>
  33221. </member>
  33222. <member name="F:Aspose.Cells.Charts.ChartType.RadarFilled">
  33223. <summary>
  33224. Represents Filled Radar Chart.
  33225. </summary>
  33226. </member>
  33227. <member name="F:Aspose.Cells.Charts.ChartType.Scatter">
  33228. <summary>
  33229. Represents Scatter Chart.
  33230. </summary>
  33231. </member>
  33232. <member name="F:Aspose.Cells.Charts.ChartType.ScatterConnectedByCurvesWithDataMarker">
  33233. <summary>
  33234. Represents Scatter Chart connected by curves, with data markers.
  33235. </summary>
  33236. </member>
  33237. <member name="F:Aspose.Cells.Charts.ChartType.ScatterConnectedByCurvesWithoutDataMarker">
  33238. <summary>
  33239. Represents Scatter Chart connected by curves, without data markers.
  33240. </summary>
  33241. </member>
  33242. <member name="F:Aspose.Cells.Charts.ChartType.ScatterConnectedByLinesWithDataMarker">
  33243. <summary>
  33244. Represents Scatter Chart connected by lines, with data markers.
  33245. </summary>
  33246. </member>
  33247. <member name="F:Aspose.Cells.Charts.ChartType.ScatterConnectedByLinesWithoutDataMarker">
  33248. <summary>
  33249. Represents Scatter Chart connected by lines, without data markers.
  33250. </summary>
  33251. </member>
  33252. <member name="F:Aspose.Cells.Charts.ChartType.StockHighLowClose">
  33253. <summary>
  33254. Represents High-Low-Close Stock Chart.
  33255. </summary>
  33256. </member>
  33257. <member name="F:Aspose.Cells.Charts.ChartType.StockOpenHighLowClose">
  33258. <summary>
  33259. Represents Open-High-Low-Close Stock Chart.
  33260. </summary>
  33261. </member>
  33262. <member name="F:Aspose.Cells.Charts.ChartType.StockVolumeHighLowClose">
  33263. <summary>
  33264. Represents Volume-High-Low-Close Stock Chart.
  33265. </summary>
  33266. </member>
  33267. <member name="F:Aspose.Cells.Charts.ChartType.StockVolumeOpenHighLowClose">
  33268. <summary>
  33269. Represents Volume-Open-High-Low-Close Stock Chart.
  33270. </summary>
  33271. </member>
  33272. <member name="F:Aspose.Cells.Charts.ChartType.Surface3D">
  33273. <summary>
  33274. Represents Surface Chart: 3D Surface Chart.
  33275. </summary>
  33276. </member>
  33277. <member name="F:Aspose.Cells.Charts.ChartType.SurfaceWireframe3D">
  33278. <summary>
  33279. Represents Wireframe 3D Surface Chart.
  33280. </summary>
  33281. </member>
  33282. <member name="F:Aspose.Cells.Charts.ChartType.SurfaceContour">
  33283. <summary>
  33284. Represents Contour Chart.
  33285. </summary>
  33286. </member>
  33287. <member name="F:Aspose.Cells.Charts.ChartType.SurfaceContourWireframe">
  33288. <summary>
  33289. Represents Wireframe Contour Chart.
  33290. </summary>
  33291. </member>
  33292. <member name="F:Aspose.Cells.Charts.ChartType.BoxWhisker">
  33293. <summary>
  33294. The series is laid out as box and whisker.
  33295. </summary>
  33296. </member>
  33297. <member name="F:Aspose.Cells.Charts.ChartType.Funnel">
  33298. <summary>
  33299. The series is laid out as a funnel.
  33300. </summary>
  33301. </member>
  33302. <member name="F:Aspose.Cells.Charts.ChartType.ParetoLine">
  33303. <summary>
  33304. The series is laid out as pareto lines.
  33305. </summary>
  33306. </member>
  33307. <member name="F:Aspose.Cells.Charts.ChartType.Sunburst">
  33308. <summary>
  33309. The series is laid out as a sunburst.
  33310. </summary>
  33311. </member>
  33312. <member name="F:Aspose.Cells.Charts.ChartType.Treemap">
  33313. <summary>
  33314. The series is laid out as a treemap.
  33315. </summary>
  33316. </member>
  33317. <member name="F:Aspose.Cells.Charts.ChartType.Waterfall">
  33318. <summary>
  33319. The series is laid out as a waterfall.
  33320. </summary>
  33321. </member>
  33322. <member name="F:Aspose.Cells.Charts.ChartType.Histogram">
  33323. <summary>
  33324. The series is laid out as a histogram.
  33325. </summary>
  33326. </member>
  33327. <member name="F:Aspose.Cells.Charts.ChartType.Map">
  33328. <summary>
  33329. The series is laid out as a region map.
  33330. </summary>
  33331. </member>
  33332. <member name="T:Aspose.Cells.Drawing.CheckBox">
  33333. <summary>
  33334. Represents a check box object in a worksheet.
  33335. </summary>
  33336. <example>
  33337. <code>
  33338. [C#]
  33339. int index = excel.Worksheets[0].CheckBoxes.Add(15, 15, 20, 100);
  33340. CheckBox checkBox = excel.Worksheets[0].CheckBoxes[index];
  33341. checkBox.Text = "Check Box 1";
  33342. [Visual Basic]
  33343. Dim index as integer = excel.Worksheets(0).CheckBoxes.Add(15, 15, 20, 100)
  33344. Dim checkBox as CheckBox = excel.Worksheets(0).CheckBoxes[index];
  33345. checkBox.Text = "Check Box 1"
  33346. </code>
  33347. </example>
  33348. </member>
  33349. <member name="P:Aspose.Cells.Drawing.CheckBox.Value">
  33350. <summary>
  33351. Indicates if the checkbox is checked or not.
  33352. </summary>
  33353. </member>
  33354. <member name="P:Aspose.Cells.Drawing.CheckBox.CheckValue">
  33355. <summary>
  33356. Gets or set checkbox' value.
  33357. </summary>
  33358. <remarks>NOTE: This member is now obsolete. Instead,
  33359. please use CheckBox.CheckValueType property.
  33360. This property will be removed 12 months later since June 2010.
  33361. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  33362. </member>
  33363. <member name="P:Aspose.Cells.Drawing.CheckBox.CheckedValue">
  33364. <summary>
  33365. Gets or set checkbox' value.
  33366. </summary>
  33367. </member>
  33368. <member name="P:Aspose.Cells.Drawing.CheckBox.Shadow">
  33369. <summary>
  33370. Indicates whether the combobox has 3-D shading.
  33371. </summary>
  33372. </member>
  33373. <member name="T:Aspose.Cells.Drawing.CheckBoxCollection">
  33374. <summary>
  33375. Represents a collection of <see cref="T:Aspose.Cells.Drawing.CheckBox" /> objects in a worksheet.
  33376. </summary>
  33377. <example>
  33378. <code>
  33379. [C#]
  33380. int index = excel.Worksheets[0].CheckBoxes.Add(15, 15, 20, 100);
  33381. CheckBox checkBox = excel.Worksheets[0].CheckBoxes[index];
  33382. checkBox.Text = "Check Box 1";
  33383. [Visual Basic]
  33384. Dim index as integer = excel.Worksheets(0).CheckBoxes.Add(15, 15, 20, 100)
  33385. Dim checkBox as CheckBox = excel.Worksheets(0).CheckBoxes[index];
  33386. checkBox.Text = "Check Box 1"
  33387. </code>
  33388. </example>
  33389. </member>
  33390. <member name="M:Aspose.Cells.Drawing.CheckBoxCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32)">
  33391. <summary>
  33392. Adds a checkBox to the collection.
  33393. </summary>
  33394. <param name="upperLeftRow">Upper left row index.</param>
  33395. <param name="upperLeftColumn">Upper left column index.</param>
  33396. <param name="height">Height of checkBox, in unit of pixel.</param>
  33397. <param name="width">Width of checkBox, in unit of pixel.</param>
  33398. <returns>
  33399. <see cref="T:Aspose.Cells.Drawing.CheckBox" /> object index.</returns>
  33400. </member>
  33401. <member name="P:Aspose.Cells.Drawing.CheckBoxCollection.Item(System.Int32)">
  33402. <summary>
  33403. Gets the <see cref="T:Aspose.Cells.Drawing.CheckBox" /> element at the specified index.
  33404. </summary>
  33405. <param name="index">The zero based index of the element.</param>
  33406. <returns>The element at the specified index.</returns>
  33407. </member>
  33408. <member name="T:Aspose.Cells.Drawing.CheckValueType">
  33409. <summary>
  33410. Represents the check value type of the check box.
  33411. </summary>
  33412. </member>
  33413. <member name="F:Aspose.Cells.Drawing.CheckValueType.UnChecked">
  33414. <summary>
  33415. UnChecked
  33416. </summary>
  33417. </member>
  33418. <member name="F:Aspose.Cells.Drawing.CheckValueType.Checked">
  33419. <summary>
  33420. Checked
  33421. </summary>
  33422. </member>
  33423. <member name="F:Aspose.Cells.Drawing.CheckValueType.Mixed">
  33424. <summary>
  33425. Mixed
  33426. </summary>
  33427. </member>
  33428. <member name="T:Aspose.Cells.Drawing.ComboBox">
  33429. <summary>
  33430. Represents the control form ComboBox.
  33431. </summary>
  33432. <example>
  33433. <code>
  33434. [C#]
  33435. //Create a new Workbook.
  33436. Workbook workbook = new Workbook();
  33437. //Get the first worksheet.
  33438. Worksheet sheet = workbook.Worksheets[0];
  33439. //Get the worksheet cells collection.
  33440. Cells cells = sheet.Cells;
  33441. //Input a value.
  33442. cells["B3"].PutValue("Employee:");
  33443. //Set it bold.
  33444. cells["B3"].Style.Font.IsBold = true;
  33445. //Input some values that denote the input range
  33446. //for the combo box.
  33447. cells["A2"].PutValue("Emp001");
  33448. cells["A3"].PutValue("Emp002");
  33449. cells["A4"].PutValue("Emp003");
  33450. cells["A5"].PutValue("Emp004");
  33451. cells["A6"].PutValue("Emp005");
  33452. cells["A7"].PutValue("Emp006");
  33453. //Add a new combo box.
  33454. Aspose.Cells.ComboBox comboBox = sheet.Shapes.AddComboBox(2, 0, 2, 0, 22, 100);
  33455. //Set the linked cell;
  33456. comboBox.LinkedCell = "A1";
  33457. //Set the input range.
  33458. comboBox.InputRange = "A2:A7";
  33459. //Set no. of list lines displayed in the combo
  33460. //box's list portion.
  33461. comboBox.DropDownLines = 5;
  33462. //Set the combo box with 3-D shading.
  33463. comboBox.Shadow = true;
  33464. //AutoFit Columns
  33465. sheet.AutoFitColumns();
  33466. //Saves the file.
  33467. workbook.Save(@"d:\test\tstcombobox.xls");
  33468. [VB.NET]
  33469. 'Create a new Workbook.
  33470. Dim workbook As Workbook = New Workbook()
  33471. 'Get the first worksheet.
  33472. Dim sheet As Worksheet = workbook.Worksheets(0)
  33473. 'Get the worksheet cells collection.
  33474. Dim cells As Cells = sheet.Cells
  33475. 'Input a value.
  33476. cells("B3").PutValue("Employee:")
  33477. 'Set it bold.
  33478. cells("B3").Style.Font.IsBold = True
  33479. 'Input some values that denote the input range
  33480. 'for the combo box.
  33481. cells("A2").PutValue("Emp001")
  33482. cells("A3").PutValue("Emp002")
  33483. cells("A4").PutValue("Emp003")
  33484. cells("A5").PutValue("Emp004")
  33485. cells("A6").PutValue("Emp005")
  33486. cells("A7").PutValue("Emp006")
  33487. 'Add a new combo box.
  33488. Dim comboBox As Aspose.Cells.ComboBox = sheet.Shapes.AddComboBox(2, 0, 2, 0, 22, 100)
  33489. 'Set the linked cell;
  33490. comboBox.LinkedCell = "A1"
  33491. 'Set the input range.
  33492. comboBox.InputRange = "A2:A7"
  33493. 'Set no. of list lines displayed in the combo
  33494. 'box's list portion.
  33495. comboBox.DropDownLines = 5
  33496. 'Set the combo box with 3-D shading.
  33497. comboBox.Shadow = True
  33498. 'AutoFit Columns
  33499. sheet.AutoFitColumns()
  33500. 'Saves the file.
  33501. workbook.Save("d:\test\tstcombobox.xls")
  33502. </code>
  33503. </example>
  33504. </member>
  33505. <member name="P:Aspose.Cells.Drawing.ComboBox.SelectedIndex">
  33506. <summary>
  33507. Gets or sets the index number of the currently selected item in a list box or combo box.
  33508. Zero-based.
  33509. </summary>
  33510. <remarks>-1 presents no item is selected.</remarks>
  33511. </member>
  33512. <member name="P:Aspose.Cells.Drawing.ComboBox.SelectedValue">
  33513. <summary>
  33514. Gets the selected value of the combox box.
  33515. </summary>
  33516. </member>
  33517. <member name="P:Aspose.Cells.Drawing.ComboBox.SelectedCell">
  33518. <summary>
  33519. Gets the selected cell in the input range of the combo box.
  33520. </summary>
  33521. </member>
  33522. <member name="P:Aspose.Cells.Drawing.ComboBox.Shadow">
  33523. <summary>
  33524. Indicates whether the combobox has 3-D shading.
  33525. </summary>
  33526. </member>
  33527. <member name="P:Aspose.Cells.Drawing.ComboBox.DropDownLines">
  33528. <summary>
  33529. Gets or sets the number of list lines displayed in the drop-down portion of a combo box.
  33530. </summary>
  33531. </member>
  33532. <member name="T:Aspose.Cells.Comment">
  33533. <summary>
  33534. Encapsulates the object that represents a cell comment.
  33535. </summary>
  33536. <example>
  33537. <code>
  33538. [C#]
  33539. Workbook workbook = new Workbook();
  33540. CommentCollection comments = workbook.Worksheets[0].Comments;
  33541. //Add comment to cell A1
  33542. int commentIndex = comments.Add(0, 0);
  33543. Comment comment = comments[commentIndex];
  33544. comment.Note = "First note.";
  33545. comment.Font.Name = "Times New Roman";
  33546. //Add comment to cell B2
  33547. comments.Add("B2");
  33548. comment = comments["B2"];
  33549. comment.Note = "Second note.";
  33550. [Visual Basic]
  33551. Dim workbook as Workbook = new Workbook()
  33552. Dim comments as CommentCollection = workbook.Worksheets(0).Comments
  33553. 'Add comment to cell A1
  33554. Dim commentIndex as Integer = comments.Add(0, 0)
  33555. Dim comment as Comment = comments(commentIndex)
  33556. comment.Note = "First note."
  33557. comment.Font.Name = "Times New Roman"
  33558. 'Add comment to cell B2
  33559. comments.Add("B2")
  33560. comment = comments("B2")
  33561. comment.Note = "Second note."
  33562. </code>
  33563. </example>
  33564. </member>
  33565. <member name="M:Aspose.Cells.Comment.FormatCharacters(System.Int32,System.Int32,Aspose.Cells.Font,Aspose.Cells.StyleFlag)">
  33566. <summary>
  33567. Format some characters with the font setting.
  33568. </summary>
  33569. <param name="startIndex">The start index.</param>
  33570. <param name="length">The length.</param>
  33571. <param name="font">The font setting.</param>
  33572. <param name="flag">The flag of the font setting.</param>
  33573. </member>
  33574. <member name="M:Aspose.Cells.Comment.Characters(System.Int32,System.Int32)">
  33575. <summary>
  33576. Returns a Characters object that represents a range of characters within the comment text.
  33577. </summary>
  33578. <param name="startIndex">The index of the start of the character.</param>
  33579. <param name="length">The number of characters.</param>
  33580. <returns>Characters object.</returns>
  33581. </member>
  33582. <member name="M:Aspose.Cells.Comment.GetCharacters">
  33583. <summary>
  33584. Returns all Characters objects
  33585. that represents a range of characters within the comment text.
  33586. </summary>
  33587. <returns>All Characters objects </returns>
  33588. </member>
  33589. <member name="P:Aspose.Cells.Comment.Author">
  33590. <summary>
  33591. Gets and sets Name of the original comment author
  33592. </summary>
  33593. </member>
  33594. <member name="P:Aspose.Cells.Comment.CommentShape">
  33595. <summary>
  33596. Get a Shape object that represents the shape attached to the specified comment.
  33597. </summary>
  33598. </member>
  33599. <member name="P:Aspose.Cells.Comment.Row">
  33600. <summary>
  33601. Gets the row index of the comment.
  33602. </summary>
  33603. </member>
  33604. <member name="P:Aspose.Cells.Comment.Column">
  33605. <summary>
  33606. Gets the column index of the comment.
  33607. </summary>
  33608. </member>
  33609. <member name="P:Aspose.Cells.Comment.ThreadedComments">
  33610. <summary>
  33611. Gets the list of threaded comments;
  33612. </summary>
  33613. </member>
  33614. <member name="P:Aspose.Cells.Comment.Note">
  33615. <summary>
  33616. Represents the content of comment.
  33617. </summary>
  33618. </member>
  33619. <member name="P:Aspose.Cells.Comment.HtmlNote">
  33620. <summary>
  33621. Gets and sets the html string which contains data and some formats in this comment.
  33622. </summary>
  33623. </member>
  33624. <member name="P:Aspose.Cells.Comment.Font">
  33625. <summary>
  33626. Gets the font of comment.
  33627. </summary>
  33628. </member>
  33629. <member name="P:Aspose.Cells.Comment.IsVisible">
  33630. <summary>
  33631. Represents if the comment is visible or not.
  33632. </summary>
  33633. </member>
  33634. <member name="P:Aspose.Cells.Comment.TextOrientationType">
  33635. <summary>
  33636. Gets and sets the text orientation type of the comment.
  33637. </summary>
  33638. </member>
  33639. <member name="P:Aspose.Cells.Comment.TextHorizontalAlignment">
  33640. <summary>
  33641. Gets and sets the text horizontal alignment type of the comment.
  33642. </summary>
  33643. </member>
  33644. <member name="P:Aspose.Cells.Comment.TextVerticalAlignment">
  33645. <summary>
  33646. Gets and sets the text vertical alignment type of the comment.
  33647. </summary>
  33648. </member>
  33649. <member name="P:Aspose.Cells.Comment.AutoSize">
  33650. <summary>
  33651. Indicates if size of comment is adjusted automatically according to its content.
  33652. </summary>
  33653. </member>
  33654. <member name="P:Aspose.Cells.Comment.HeightCM">
  33655. <summary>
  33656. Represents the height of the comment, in unit of centimeters.
  33657. </summary>
  33658. </member>
  33659. <member name="P:Aspose.Cells.Comment.WidthCM">
  33660. <summary>
  33661. Represents the width of the comment, in unit of centimeters.
  33662. </summary>
  33663. </member>
  33664. <member name="P:Aspose.Cells.Comment.Width">
  33665. <summary>
  33666. Represents the width of the comment, in unit of pixels.
  33667. </summary>
  33668. </member>
  33669. <member name="P:Aspose.Cells.Comment.Height">
  33670. <summary>
  33671. Represents the Height of the comment, in unit of pixels.
  33672. </summary>
  33673. </member>
  33674. <member name="P:Aspose.Cells.Comment.WidthInch">
  33675. <summary>
  33676. Represents the width of the comment, in unit of inches.
  33677. </summary>
  33678. </member>
  33679. <member name="P:Aspose.Cells.Comment.HeightInch">
  33680. <summary>
  33681. Represents the height of the comment, in unit of inches.
  33682. </summary>
  33683. </member>
  33684. <member name="T:Aspose.Cells.CommentCollection">
  33685. <summary>
  33686. Encapsulates a collection of <see cref="T:Aspose.Cells.Comment" /> objects.
  33687. </summary>
  33688. <example>
  33689. <code>
  33690. [C#]
  33691. Workbook workbook = new Workbook();
  33692. CommentCollection comments = workbook.Worksheets[0].Comments;
  33693. [Visual Basic]
  33694. Dim workbook as Workbook = new Workbook()
  33695. Dim comments as CommentCollection = workbook.Worksheets(0).Comments
  33696. </code>
  33697. </example>
  33698. </member>
  33699. <member name="M:Aspose.Cells.CommentCollection.AddThreadedComment(System.Int32,System.Int32,System.String,Aspose.Cells.ThreadedCommentAuthor)">
  33700. <summary>
  33701. Adds a threaded comment.
  33702. </summary>
  33703. <param name="row">Cell row index.</param>
  33704. <param name="column">Cell column index.</param>
  33705. <param name="text">The text of the comment</param>
  33706. <param name="author">The user of this threaded comment.</param>
  33707. <returns>
  33708. <see cref="T:Aspose.Cells.ThreadedComment" /> object index.</returns>
  33709. </member>
  33710. <member name="M:Aspose.Cells.CommentCollection.AddThreadedComment(System.String,System.String,Aspose.Cells.ThreadedCommentAuthor)">
  33711. <summary>
  33712. Adds a threaded comment.
  33713. </summary>
  33714. <param name="cellName">The name of the cell.</param>
  33715. <param name="text">The text of the comment</param>
  33716. <param name="author">The user of this threaded comment.</param>
  33717. <returns>
  33718. <see cref="T:Aspose.Cells.ThreadedComment" /> object index.</returns>
  33719. </member>
  33720. <member name="M:Aspose.Cells.CommentCollection.GetThreadedComments(System.Int32,System.Int32)">
  33721. <summary>
  33722. Gets the threaded comments by row and column index.
  33723. </summary>
  33724. <param name="row">The row index.</param>
  33725. <param name="column">The column index.</param>
  33726. <returns>
  33727. </returns>
  33728. </member>
  33729. <member name="M:Aspose.Cells.CommentCollection.GetThreadedComments(System.String)">
  33730. <summary>
  33731. Gets the threaded comments by cell name.
  33732. </summary>
  33733. <param name="cellName">The name of the cell.</param>
  33734. <returns>
  33735. </returns>
  33736. </member>
  33737. <member name="M:Aspose.Cells.CommentCollection.Add(System.Int32,System.Int32)">
  33738. <summary>
  33739. Adds a comment to the collection.
  33740. </summary>
  33741. <param name="row">Cell row index.</param>
  33742. <param name="column">Cell column index.</param>
  33743. <returns>
  33744. <see cref="T:Aspose.Cells.Comment" /> object index.</returns>
  33745. </member>
  33746. <member name="M:Aspose.Cells.CommentCollection.Add(System.String)">
  33747. <summary>
  33748. Adds a comment to the collection.
  33749. </summary>
  33750. <param name="cellName">Cell name.</param>
  33751. <returns>
  33752. <see cref="T:Aspose.Cells.Comment" /> object index.</returns>
  33753. </member>
  33754. <member name="M:Aspose.Cells.CommentCollection.RemoveAt(System.String)">
  33755. <summary>
  33756. Removes the comment of the specific cell.
  33757. </summary>
  33758. <param name="cellName">The name of cell which contains a comment.</param>
  33759. </member>
  33760. <member name="M:Aspose.Cells.CommentCollection.RemoveAt(System.Int32,System.Int32)">
  33761. <summary>
  33762. Removes the comment of the specific cell.
  33763. </summary>
  33764. <param name="row">The row index.</param>
  33765. <param name="column">the column index.</param>
  33766. </member>
  33767. <member name="M:Aspose.Cells.CommentCollection.Clear">
  33768. <summary>
  33769. Removes all comments;
  33770. </summary>
  33771. </member>
  33772. <member name="P:Aspose.Cells.CommentCollection.Item(System.Int32)">
  33773. <summary>
  33774. Gets the <see cref="T:Aspose.Cells.Comment" /> element at the specified index.
  33775. </summary>
  33776. <param name="index">The zero based index of the element.</param>
  33777. <returns>The element at the specified index.</returns>
  33778. </member>
  33779. <member name="P:Aspose.Cells.CommentCollection.Item(System.String)">
  33780. <summary>
  33781. Gets the <see cref="T:Aspose.Cells.Comment" /> element at the specified cell.
  33782. </summary>
  33783. <param name="cellName">Cell name.</param>
  33784. <returns>The element at the specified cell.</returns>
  33785. </member>
  33786. <member name="P:Aspose.Cells.CommentCollection.Item(System.Int32,System.Int32)">
  33787. <summary>
  33788. Gets the <see cref="T:Aspose.Cells.Comment" /> element at the specified row index and column index.
  33789. </summary>
  33790. <param name="row">Row index.</param>
  33791. <param name="column">Column index.</param>
  33792. <returns>The element at the specified cell.</returns>
  33793. </member>
  33794. <member name="T:Aspose.Cells.Drawing.CommentShape">
  33795. <summary>
  33796. Represents the shape of the comment.
  33797. </summary>
  33798. </member>
  33799. <member name="P:Aspose.Cells.Drawing.CommentShape.Comment">
  33800. <summary>
  33801. Gets the comment object.
  33802. </summary>
  33803. </member>
  33804. <member name="T:Aspose.Cells.ConditionalFormattingCollection">
  33805. <summary>
  33806. Encapsulates a collection of <see cref="T:Aspose.Cells.FormatCondition" /> objects.
  33807. </summary>
  33808. <example>
  33809. <code>
  33810. [C#]
  33811. //Instantiating a Workbook object
  33812. Workbook workbook = new Workbook();
  33813. Worksheet sheet = workbook.Worksheets[0];
  33814. //Get Conditional Formatting
  33815. ConditionalFormattingCollection cformattings = sheet.ConditionalFormattings;
  33816. //Adds an empty conditional formatting
  33817. int index = cformattings.Add();
  33818. //Get newly added Conditional formatting
  33819. FormatConditionCollection fcs = cformattings[index];
  33820. //Sets the conditional format range.
  33821. CellArea ca = new CellArea();
  33822. ca.StartRow = 0;
  33823. ca.EndRow = 0;
  33824. ca.StartColumn = 0;
  33825. ca.EndColumn = 0;
  33826. fcs.AddArea(ca);
  33827. ca = new CellArea();
  33828. ca.StartRow = 1;
  33829. ca.EndRow = 1;
  33830. ca.StartColumn = 1;
  33831. ca.EndColumn = 1;
  33832. fcs.AddArea(ca);
  33833. //Add condition.
  33834. int conditionIndex = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100");
  33835. //Add condition.
  33836. int conditionIndex2 = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100");
  33837. //Sets the background color.
  33838. FormatCondition fc = fcs[conditionIndex];
  33839. fc.Style.BackgroundColor = Color.Red;
  33840. //Saving the Excel file
  33841. workbook.Save("C:\\output.xls");
  33842. [VB.NET]
  33843. 'Instantiating a Workbook object
  33844. Dim workbook As New Workbook()
  33845. Dim sheet As Worksheet = workbook.Worksheets(0)
  33846. 'Get Conditional Formatting
  33847. Dim cformattings As ConditionalFormattingCollection = sheet.ConditionalFormattings
  33848. 'Adds an empty conditional formatting
  33849. Dim index As Integer = cformattings.Add()
  33850. 'Get newly added Conditional formatting
  33851. Dim fcs As FormatConditionCollection = cformattings(index)
  33852. 'Sets the conditional format range.
  33853. Dim ca As New CellArea()
  33854. ca.StartRow = 0
  33855. ca.EndRow = 0
  33856. ca.StartColumn = 0
  33857. ca.EndColumn = 0
  33858. fcs.AddArea(ca)
  33859. ca = New CellArea()
  33860. ca.StartRow = 1
  33861. ca.EndRow = 1
  33862. ca.StartColumn = 1
  33863. ca.EndColumn = 1
  33864. fcs.AddArea(ca)
  33865. 'Add condition.
  33866. Dim conditionIndex As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100")
  33867. 'Add condition.
  33868. Dim conditionIndex2 As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100")
  33869. 'Sets the background color.
  33870. Dim fc As FormatCondition = fcs(conditionIndex)
  33871. fc.Style.BackgroundColor = Color.Red
  33872. 'Saving the Excel file
  33873. workbook.Save("C:\output.xls")
  33874. </code>
  33875. </example>
  33876. </member>
  33877. <member name="M:Aspose.Cells.ConditionalFormattingCollection.RemoveArea(System.Int32,System.Int32,System.Int32,System.Int32)">
  33878. <summary>
  33879. Remove all conditional formatting in the range.
  33880. </summary>
  33881. <param name="startRow">The start row of the range.</param>
  33882. <param name="startColumn">The start column of the range.</param>
  33883. <param name="totalRows">The number of rows of the range.</param>
  33884. <param name="totalColumns">The number of columns of the range.</param>
  33885. </member>
  33886. <member name="M:Aspose.Cells.ConditionalFormattingCollection.Copy(Aspose.Cells.ConditionalFormattingCollection)">
  33887. <summary>
  33888. Copies conditional formatting.
  33889. </summary>
  33890. <param name="cfs">The conditional formatting</param>
  33891. </member>
  33892. <member name="M:Aspose.Cells.ConditionalFormattingCollection.Add">
  33893. <summary>
  33894. Adds a FormatConditions to the collection.
  33895. </summary>
  33896. <returns>FormatConditions object index.</returns>
  33897. </member>
  33898. <member name="P:Aspose.Cells.ConditionalFormattingCollection.Item(System.Int32)">
  33899. <summary>
  33900. Gets the FormatConditions element at the specified index.
  33901. </summary>
  33902. <param name="index">The zero based index of the element.</param>
  33903. </member>
  33904. <member name="T:Aspose.Cells.ConsolidationFunction">
  33905. <summary>
  33906. Represents consolidation function.
  33907. </summary>
  33908. </member>
  33909. <member name="F:Aspose.Cells.ConsolidationFunction.Sum">
  33910. <summary>
  33911. Represents Sum function.
  33912. </summary>
  33913. </member>
  33914. <member name="F:Aspose.Cells.ConsolidationFunction.Count">
  33915. <summary>
  33916. Represents Count function.
  33917. </summary>
  33918. </member>
  33919. <member name="F:Aspose.Cells.ConsolidationFunction.Average">
  33920. <summary>
  33921. Represents Average function.
  33922. </summary>
  33923. </member>
  33924. <member name="F:Aspose.Cells.ConsolidationFunction.Max">
  33925. <summary>
  33926. Represents Max function.
  33927. </summary>
  33928. </member>
  33929. <member name="F:Aspose.Cells.ConsolidationFunction.Min">
  33930. <summary>
  33931. Represents Min function.
  33932. </summary>
  33933. </member>
  33934. <member name="F:Aspose.Cells.ConsolidationFunction.Product">
  33935. <summary>
  33936. Represents Product function.
  33937. </summary>
  33938. </member>
  33939. <member name="F:Aspose.Cells.ConsolidationFunction.CountNums">
  33940. <summary>
  33941. Represents Count Nums function.
  33942. </summary>
  33943. </member>
  33944. <member name="F:Aspose.Cells.ConsolidationFunction.StdDev">
  33945. <summary>
  33946. Represents StdDev function.
  33947. </summary>
  33948. </member>
  33949. <member name="F:Aspose.Cells.ConsolidationFunction.StdDevp">
  33950. <summary>
  33951. Represents StdDevp function.
  33952. </summary>
  33953. </member>
  33954. <member name="F:Aspose.Cells.ConsolidationFunction.Var">
  33955. <summary>
  33956. Represents Var function.
  33957. </summary>
  33958. </member>
  33959. <member name="F:Aspose.Cells.ConsolidationFunction.Varp">
  33960. <summary>
  33961. Represents Varp function.
  33962. </summary>
  33963. </member>
  33964. <member name="F:Aspose.Cells.ConsolidationFunction.DistinctCount">
  33965. <summary>
  33966. Represents Distinct Count function.
  33967. </summary>
  33968. <remarks>
  33969. Only valid for PivotTable with Data Module created since by 2013.
  33970. </remarks>
  33971. </member>
  33972. <member name="T:Aspose.Cells.Drawing.ImageType">
  33973. <summary>
  33974. Specifies the type (format) of an image.
  33975. </summary>
  33976. </member>
  33977. <member name="F:Aspose.Cells.Drawing.ImageType.Unknown">
  33978. <summary>
  33979. An unknown image type.
  33980. </summary>
  33981. </member>
  33982. <member name="F:Aspose.Cells.Drawing.ImageType.Emf">
  33983. <summary>
  33984. Windows Enhanced Metafile.
  33985. </summary>
  33986. </member>
  33987. <member name="F:Aspose.Cells.Drawing.ImageType.Wmf">
  33988. <summary>
  33989. Windows Metafile.
  33990. </summary>
  33991. </member>
  33992. <member name="F:Aspose.Cells.Drawing.ImageType.Pict">
  33993. <summary>
  33994. Macintosh PICT.
  33995. </summary>
  33996. </member>
  33997. <member name="F:Aspose.Cells.Drawing.ImageType.Jpeg">
  33998. <summary>
  33999. JPEG JFIF.
  34000. </summary>
  34001. </member>
  34002. <member name="F:Aspose.Cells.Drawing.ImageType.Png">
  34003. <summary>
  34004. Portable Network Graphics.
  34005. </summary>
  34006. </member>
  34007. <member name="F:Aspose.Cells.Drawing.ImageType.Bmp">
  34008. <summary>
  34009. Windows Bitmap
  34010. </summary>
  34011. </member>
  34012. <member name="F:Aspose.Cells.Drawing.ImageType.Gif">
  34013. <summary>
  34014. Gif
  34015. </summary>
  34016. </member>
  34017. <member name="F:Aspose.Cells.Drawing.ImageType.Tiff">
  34018. <summary>
  34019. Tiff
  34020. </summary>
  34021. </member>
  34022. <member name="F:Aspose.Cells.Drawing.ImageType.Svg">
  34023. <summary>
  34024. Svg
  34025. </summary>
  34026. </member>
  34027. <member name="F:Aspose.Cells.Drawing.ImageType.Svm">
  34028. <summary>
  34029. Svm
  34030. </summary>
  34031. </member>
  34032. <member name="F:Aspose.Cells.Drawing.ImageType.Gltf">
  34033. <summary>
  34034. glTF
  34035. </summary>
  34036. </member>
  34037. <member name="T:Aspose.Cells.Rendering.PdfCompressionCore">
  34038. <summary>
  34039. Specifies a type of compression applied to all content in the PDF file except images.
  34040. </summary>
  34041. </member>
  34042. <member name="F:Aspose.Cells.Rendering.PdfCompressionCore.None">
  34043. <summary>
  34044. None
  34045. </summary>
  34046. </member>
  34047. <member name="F:Aspose.Cells.Rendering.PdfCompressionCore.Rle">
  34048. <summary>
  34049. Rle
  34050. </summary>
  34051. </member>
  34052. <member name="F:Aspose.Cells.Rendering.PdfCompressionCore.Lzw">
  34053. <summary>
  34054. Lzw
  34055. </summary>
  34056. </member>
  34057. <member name="F:Aspose.Cells.Rendering.PdfCompressionCore.Flate">
  34058. <summary>
  34059. Flate
  34060. </summary>
  34061. </member>
  34062. <member name="T:Aspose.Cells.HeaderFooterCommand">
  34063. <summary>
  34064. Represents the command of header/footer
  34065. </summary>
  34066. </member>
  34067. <member name="P:Aspose.Cells.HeaderFooterCommand.Type">
  34068. <summary>
  34069. Gets the header/footer' command type .
  34070. </summary>
  34071. </member>
  34072. <member name="P:Aspose.Cells.HeaderFooterCommand.Font">
  34073. <summary>
  34074. Gets the font of the command's value.
  34075. </summary>
  34076. <remarks>
  34077. Useless for HeaderFooterCommandType.Picture.
  34078. </remarks>
  34079. </member>
  34080. <member name="P:Aspose.Cells.HeaderFooterCommand.Text">
  34081. <summary>
  34082. Gets the text of the command.
  34083. </summary>
  34084. <remarks>
  34085. Only valid for HeaderFooterCommandType.Text.
  34086. </remarks>
  34087. </member>
  34088. <member name="T:Aspose.Cells.CopyOptions">
  34089. <summary>
  34090. Represents the copy options.
  34091. </summary>
  34092. </member>
  34093. <member name="M:Aspose.Cells.CopyOptions.#ctor">
  34094. <summary>
  34095. CopyOptions constructor.
  34096. </summary>
  34097. </member>
  34098. <member name="P:Aspose.Cells.CopyOptions.KeepMacros">
  34099. <summary>
  34100. Indicates whether keeping macros;
  34101. </summary>
  34102. <remarks>
  34103. Only for copying workbook.
  34104. </remarks>
  34105. </member>
  34106. <member name="P:Aspose.Cells.CopyOptions.ExtendToAdjacentRange">
  34107. <summary>
  34108. Indicates whether extend ranges when copying the range to adjacent range.
  34109. </summary>
  34110. <remarks>
  34111. If it's true, only extends the range of the hyperlink,not adding a new hyperlink when copying hyperlinks to adjacent rows.
  34112. </remarks>
  34113. </member>
  34114. <member name="P:Aspose.Cells.CopyOptions.CopyNames">
  34115. <summary>
  34116. Indicates whether copying the names.
  34117. </summary>
  34118. </member>
  34119. <member name="P:Aspose.Cells.CopyOptions.CopyInvalidFormulasAsValues">
  34120. <summary>
  34121. If the formula is not valid for the dest destination, only copy values.
  34122. </summary>
  34123. </member>
  34124. <member name="P:Aspose.Cells.CopyOptions.ColumnCharacterWidth">
  34125. <summary>
  34126. Indicates whether copying column width in unit of characters.
  34127. </summary>
  34128. </member>
  34129. <member name="P:Aspose.Cells.CopyOptions.ReferToSheetWithSameName">
  34130. <summary>
  34131. When copying a worksheet to another workbook and the worksheet contains the formulas which refer to other worksheets in MS Excel,
  34132. the copied formulas should refer to source workbook.
  34133. But sometimes we have copied other worksheets and we hope the copied formulas refer to other worksheets with the name in the same workbook,
  34134. please set this property as true.
  34135. </summary>
  34136. <remarks>
  34137. The default value is true.
  34138. </remarks>
  34139. </member>
  34140. <member name="P:Aspose.Cells.CopyOptions.ReferToDestinationSheet">
  34141. <summary>
  34142. When copying the range in the same file and the chart refers to the source sheet,
  34143. False means the copied chart's data source will not be changed.
  34144. True means the copied chart's data source refers to the destination sheet.
  34145. </summary>
  34146. <remarks>
  34147. The default value is false, it works as MS Excel.
  34148. </remarks>
  34149. </member>
  34150. <member name="T:Aspose.Cells.CountryCode">
  34151. <summary>
  34152. Represents Excel country identifiers.
  34153. </summary>
  34154. </member>
  34155. <member name="F:Aspose.Cells.CountryCode.Default">
  34156. <summary>
  34157. </summary>
  34158. </member>
  34159. <member name="F:Aspose.Cells.CountryCode.USA">
  34160. <summary>
  34161. United States
  34162. </summary>
  34163. </member>
  34164. <member name="F:Aspose.Cells.CountryCode.Canada">
  34165. <summary>
  34166. Canada
  34167. </summary>
  34168. </member>
  34169. <member name="F:Aspose.Cells.CountryCode.LatinAmeric">
  34170. <summary>
  34171. Latin America, except Brazil
  34172. </summary>
  34173. </member>
  34174. <member name="F:Aspose.Cells.CountryCode.Russia">
  34175. <summary>
  34176. Russia
  34177. </summary>
  34178. </member>
  34179. <member name="F:Aspose.Cells.CountryCode.Egypt">
  34180. <summary>
  34181. Egypt
  34182. </summary>
  34183. </member>
  34184. <member name="F:Aspose.Cells.CountryCode.Greece">
  34185. <summary>
  34186. Greece
  34187. </summary>
  34188. </member>
  34189. <member name="F:Aspose.Cells.CountryCode.Netherlands">
  34190. <summary>
  34191. Netherlands
  34192. </summary>
  34193. </member>
  34194. <member name="F:Aspose.Cells.CountryCode.Belgium">
  34195. <summary>
  34196. Belgium
  34197. </summary>
  34198. </member>
  34199. <member name="F:Aspose.Cells.CountryCode.France">
  34200. <summary>
  34201. France
  34202. </summary>
  34203. </member>
  34204. <member name="F:Aspose.Cells.CountryCode.Spain">
  34205. <summary>
  34206. Spain
  34207. </summary>
  34208. </member>
  34209. <member name="F:Aspose.Cells.CountryCode.Hungary">
  34210. <summary>
  34211. Hungary
  34212. </summary>
  34213. </member>
  34214. <member name="F:Aspose.Cells.CountryCode.Italy">
  34215. <summary>
  34216. Italy
  34217. </summary>
  34218. </member>
  34219. <member name="F:Aspose.Cells.CountryCode.Switzerland">
  34220. <summary>
  34221. Switzerland
  34222. </summary>
  34223. </member>
  34224. <member name="F:Aspose.Cells.CountryCode.Austria">
  34225. <summary>
  34226. Austria
  34227. </summary>
  34228. </member>
  34229. <member name="F:Aspose.Cells.CountryCode.UnitedKingdom">
  34230. <summary>
  34231. United Kingdom
  34232. </summary>
  34233. </member>
  34234. <member name="F:Aspose.Cells.CountryCode.Denmark">
  34235. <summary>
  34236. Denmark
  34237. </summary>
  34238. </member>
  34239. <member name="F:Aspose.Cells.CountryCode.Sweden">
  34240. <summary>
  34241. Sweden
  34242. </summary>
  34243. </member>
  34244. <member name="F:Aspose.Cells.CountryCode.Norway">
  34245. <summary>
  34246. Norway
  34247. </summary>
  34248. </member>
  34249. <member name="F:Aspose.Cells.CountryCode.Poland">
  34250. <summary>
  34251. Poland
  34252. </summary>
  34253. </member>
  34254. <member name="F:Aspose.Cells.CountryCode.Germany">
  34255. <summary>
  34256. Germany
  34257. </summary>
  34258. </member>
  34259. <member name="F:Aspose.Cells.CountryCode.Mexico">
  34260. <summary>
  34261. Mexico
  34262. </summary>
  34263. </member>
  34264. <member name="F:Aspose.Cells.CountryCode.Brazil">
  34265. <summary>
  34266. Brazil
  34267. </summary>
  34268. </member>
  34269. <member name="F:Aspose.Cells.CountryCode.Australia">
  34270. <summary>
  34271. Australia
  34272. </summary>
  34273. </member>
  34274. <member name="F:Aspose.Cells.CountryCode.NewZealand">
  34275. <summary>
  34276. New Zealand
  34277. </summary>
  34278. </member>
  34279. <member name="F:Aspose.Cells.CountryCode.Thailand">
  34280. <summary>
  34281. Thailand
  34282. </summary>
  34283. </member>
  34284. <member name="F:Aspose.Cells.CountryCode.Japan">
  34285. <summary>
  34286. Japan
  34287. </summary>
  34288. </member>
  34289. <member name="F:Aspose.Cells.CountryCode.SouthKorea">
  34290. <summary>
  34291. SouthKorea
  34292. </summary>
  34293. </member>
  34294. <member name="F:Aspose.Cells.CountryCode.VietNam">
  34295. <summary>
  34296. Viet Nam
  34297. </summary>
  34298. </member>
  34299. <member name="F:Aspose.Cells.CountryCode.China">
  34300. <summary>
  34301. People's Republic of China
  34302. </summary>
  34303. </member>
  34304. <member name="F:Aspose.Cells.CountryCode.Turkey">
  34305. <summary>
  34306. Turkey
  34307. </summary>
  34308. </member>
  34309. <member name="F:Aspose.Cells.CountryCode.India">
  34310. <summary>
  34311. India
  34312. </summary>
  34313. </member>
  34314. <member name="F:Aspose.Cells.CountryCode.Algeria">
  34315. <summary>
  34316. Algeria
  34317. </summary>
  34318. </member>
  34319. <member name="F:Aspose.Cells.CountryCode.Morocco">
  34320. <summary>
  34321. Morocco
  34322. </summary>
  34323. </member>
  34324. <member name="F:Aspose.Cells.CountryCode.Libya">
  34325. <summary>
  34326. Libya
  34327. </summary>
  34328. </member>
  34329. <member name="F:Aspose.Cells.CountryCode.Portugal">
  34330. <summary>
  34331. Portugal
  34332. </summary>
  34333. </member>
  34334. <member name="F:Aspose.Cells.CountryCode.Iceland">
  34335. <summary>
  34336. Iceland
  34337. </summary>
  34338. </member>
  34339. <member name="F:Aspose.Cells.CountryCode.Finland">
  34340. <summary>
  34341. Finland
  34342. </summary>
  34343. </member>
  34344. <member name="F:Aspose.Cells.CountryCode.Czech">
  34345. <summary>
  34346. Czech Republic
  34347. </summary>
  34348. </member>
  34349. <member name="F:Aspose.Cells.CountryCode.Taiwan">
  34350. <summary>
  34351. Taiwan
  34352. </summary>
  34353. </member>
  34354. <member name="F:Aspose.Cells.CountryCode.Lebanon">
  34355. <summary>
  34356. Lebanon
  34357. </summary>
  34358. </member>
  34359. <member name="F:Aspose.Cells.CountryCode.Jordan">
  34360. <summary>
  34361. Jordan
  34362. </summary>
  34363. </member>
  34364. <member name="F:Aspose.Cells.CountryCode.Syria">
  34365. <summary>
  34366. Syria
  34367. </summary>
  34368. </member>
  34369. <member name="F:Aspose.Cells.CountryCode.Iraq">
  34370. <summary>
  34371. Iraq
  34372. </summary>
  34373. </member>
  34374. <member name="F:Aspose.Cells.CountryCode.Kuwait">
  34375. <summary>
  34376. Kuwait
  34377. </summary>
  34378. </member>
  34379. <member name="F:Aspose.Cells.CountryCode.Saudi">
  34380. <summary>
  34381. Saudi Arabia
  34382. </summary>
  34383. </member>
  34384. <member name="F:Aspose.Cells.CountryCode.UnitedArabEmirates">
  34385. <summary>
  34386. United Arab Emirates
  34387. </summary>
  34388. </member>
  34389. <member name="F:Aspose.Cells.CountryCode.Israel">
  34390. <summary>
  34391. Israel
  34392. </summary>
  34393. </member>
  34394. <member name="F:Aspose.Cells.CountryCode.Qatar">
  34395. <summary>
  34396. Qatar
  34397. </summary>
  34398. </member>
  34399. <member name="F:Aspose.Cells.CountryCode.Iran">
  34400. <summary>
  34401. Iran
  34402. </summary>
  34403. </member>
  34404. <member name="T:Aspose.Cells.Properties.CustomPropertyCollection">
  34405. <summary>
  34406. A collection of <see cref="T:Aspose.Cells.Properties.CustomProperty" /> objects that represent additional information.
  34407. </summary>
  34408. </member>
  34409. <member name="M:Aspose.Cells.Properties.CustomPropertyCollection.Add(System.String,System.String)">
  34410. <summary>
  34411. Adds custom property information.
  34412. </summary>
  34413. <param name="name">The name of the custom property.</param>
  34414. <param name="value">The value of the custom property.</param>
  34415. </member>
  34416. <member name="P:Aspose.Cells.Properties.CustomPropertyCollection.Item(System.Int32)">
  34417. <summary>
  34418. Gets the custom property by the specific index.
  34419. </summary>
  34420. <param name="index">The index.</param>
  34421. <returns>The custom property</returns>
  34422. </member>
  34423. <member name="P:Aspose.Cells.Properties.CustomPropertyCollection.Item(System.String)">
  34424. <summary>
  34425. Gets the custom property by the property name.
  34426. </summary>
  34427. <param name="name">The property name.</param>
  34428. <returns>The custom property</returns>
  34429. </member>
  34430. <member name="T:Aspose.Cells.Properties.CustomProperty">
  34431. <summary>
  34432. Represents identifier information.
  34433. </summary>
  34434. </member>
  34435. <member name="P:Aspose.Cells.Properties.CustomProperty.Name">
  34436. <summary>
  34437. Returns or sets the name of the object.
  34438. </summary>
  34439. </member>
  34440. <member name="P:Aspose.Cells.Properties.CustomProperty.StringValue">
  34441. <summary>
  34442. Returns or sets the value of the custom property.
  34443. </summary>
  34444. <remarks>NOTE: This member is now obsolete. Instead,
  34445. please use CustomProperty.Value property.
  34446. This property will be removed 12 months later since June 2010.
  34447. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  34448. </member>
  34449. <member name="P:Aspose.Cells.Properties.CustomProperty.Value">
  34450. <summary>
  34451. Returns or sets the value of the custom property.
  34452. </summary>
  34453. </member>
  34454. <member name="T:Aspose.Cells.Charts.DataLabels">
  34455. <summary>
  34456. Encapsulates a collection of all the DataLabel objects for the specified Series.
  34457. </summary>
  34458. <example>
  34459. <code>
  34460. [C#]
  34461. //Set the DataLabels in the chart
  34462. DataLabels datalabels;
  34463. for (int i = 0; i &lt;chart.NSeries.Count; i++)
  34464. {
  34465. datalabels = chart.NSeries[i].DataLabels;
  34466. //Set the position of DataLabels
  34467. datalabels.Position = LabelPositionType.InsideBase;
  34468. //Show the category name in the DataLabels
  34469. datalabels.ShowCategoryName = true;
  34470. //Show the value in the DataLabels
  34471. datalabels.ShowValue = true;
  34472. //Not show the percentage in the DataLabels
  34473. datalabels.ShowPercentage = false;
  34474. //Not show the legend key.
  34475. datalabels.ShowLegendKey = false;
  34476. }
  34477. [Visual Basic]
  34478. 'Set the DataLabels in the chart
  34479. Dim datalabels As DataLabels
  34480. Dim i As Integer
  34481. For i = 0 To chart.NSeries.Count - 1 Step 1
  34482. datalabels = chart.NSeries(i).DataLabels
  34483. 'Set the position of DataLabels
  34484. datalabels.Position = LabelPositionType.InsideBase
  34485. 'Show the category name in the DataLabels
  34486. datalabels.ShowCategoryName= True
  34487. 'Show the value in the DataLabels
  34488. datalabels.ShowValue = True
  34489. 'Not show the percentage in the DataLabels
  34490. datalabels.ShowPercentage = False
  34491. 'Not show the legend key.
  34492. datalabels.ShowLegendKey = False
  34493. Next
  34494. </code>
  34495. </example>
  34496. </member>
  34497. <member name="P:Aspose.Cells.Charts.DataLabels.Border">
  34498. <summary>
  34499. Gets the <see cref="T:Aspose.Cells.Drawing.Line">border</see>.
  34500. </summary>
  34501. </member>
  34502. <member name="P:Aspose.Cells.Charts.DataLabels.Area">
  34503. <summary>
  34504. Gets the <see cref="P:Aspose.Cells.Charts.DataLabels.Area">area</see>.
  34505. </summary>
  34506. </member>
  34507. <member name="P:Aspose.Cells.Charts.DataLabels.IsAutoText">
  34508. <summary>
  34509. Indicates the text is auto generated.
  34510. </summary>
  34511. </member>
  34512. <member name="P:Aspose.Cells.Charts.DataLabels.DirectionType">
  34513. <summary>
  34514. Gets and sets the direction of text.
  34515. </summary>
  34516. </member>
  34517. <member name="P:Aspose.Cells.Charts.DataLabels.Text">
  34518. <summary>
  34519. Gets or sets the text of data label.
  34520. </summary>
  34521. </member>
  34522. <member name="P:Aspose.Cells.Charts.DataLabels.IsTextWrapped">
  34523. <summary>
  34524. Gets or sets a value indicating whether the text is wrapped.
  34525. </summary>
  34526. </member>
  34527. <member name="P:Aspose.Cells.Charts.DataLabels.LinkedSource">
  34528. <summary>
  34529. Gets and sets the linked source.
  34530. </summary>
  34531. </member>
  34532. <member name="P:Aspose.Cells.Charts.DataLabels.BackgroundMode">
  34533. <summary>
  34534. Gets and sets the display mode of the background
  34535. </summary>
  34536. </member>
  34537. <member name="P:Aspose.Cells.Charts.DataLabels.ShowValue">
  34538. <summary>
  34539. Represents a specified chart's data label values display behavior. True displays the values. False to hide.
  34540. </summary>
  34541. </member>
  34542. <member name="P:Aspose.Cells.Charts.DataLabels.ShowCellRange">
  34543. <summary>
  34544. Indicates whether showing cell range as the data labels.
  34545. </summary>
  34546. </member>
  34547. <member name="P:Aspose.Cells.Charts.DataLabels.ShowPercentage">
  34548. <summary>
  34549. Represents a specified chart's data label percentage value display behavior. True displays the percentage value. False to hide.
  34550. </summary>
  34551. </member>
  34552. <member name="P:Aspose.Cells.Charts.DataLabels.ShowBubbleSize">
  34553. <summary>
  34554. Represents a specified chart's data label percentage value display behavior. True displays the percentage value. False to hide.
  34555. </summary>
  34556. </member>
  34557. <member name="P:Aspose.Cells.Charts.DataLabels.ShowCategoryName">
  34558. <summary>
  34559. Represents a specified chart's data label category name display behavior.True to display the category name for the data labels on a chart. False to hide.
  34560. </summary>
  34561. </member>
  34562. <member name="P:Aspose.Cells.Charts.DataLabels.ShowSeriesName">
  34563. <summary>
  34564. Returns or sets a Boolean to indicate the series name display behavior for the data labels on a chart.
  34565. True to show the series name. False to hide.
  34566. </summary>
  34567. </member>
  34568. <member name="P:Aspose.Cells.Charts.DataLabels.ShowLegendKey">
  34569. <summary>
  34570. Represents a specified chart's data label legend key display behavior.
  34571. True if the data label legend key is visible.
  34572. </summary>
  34573. </member>
  34574. <member name="P:Aspose.Cells.Charts.DataLabels.NumberFormat">
  34575. <summary>
  34576. Represents the format string for the DataLabels object.
  34577. </summary>
  34578. </member>
  34579. <member name="P:Aspose.Cells.Charts.DataLabels.Number">
  34580. <summary>
  34581. Gets and sets the built-in number format.
  34582. </summary>
  34583. </member>
  34584. <member name="P:Aspose.Cells.Charts.DataLabels.NumberFormatLinked">
  34585. <summary>
  34586. True if the number format is linked to the cells
  34587. (so that the number format changes in the labels when it changes in the cells).
  34588. </summary>
  34589. </member>
  34590. <member name="P:Aspose.Cells.Charts.DataLabels.Font">
  34591. <summary>
  34592. Gets the font of the DataLabels;
  34593. </summary>
  34594. </member>
  34595. <member name="P:Aspose.Cells.Charts.DataLabels.Separator">
  34596. <summary>
  34597. Gets or sets the separator type used for the data labels on a chart.
  34598. </summary>
  34599. <remarks>
  34600. NOTE: This member is now obsolete. Instead,
  34601. please use DataLabels.SeparatorType property.
  34602. This property will be removed 12 months later since September 2020.
  34603. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  34604. </member>
  34605. <member name="P:Aspose.Cells.Charts.DataLabels.SeparatorType">
  34606. <summary>
  34607. Gets or sets the separator type used for the data labels on a chart.
  34608. </summary>
  34609. <remarks>
  34610. To set custom separator, please set the property <see cref="P:Aspose.Cells.Charts.DataLabels.SeparatorType" /> as <see cref="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Custom" /> and then specify the expected value for <see cref="P:Aspose.Cells.Charts.DataLabels.SeparatorValue" />.
  34611. </remarks>
  34612. </member>
  34613. <member name="P:Aspose.Cells.Charts.DataLabels.SeparatorValue">
  34614. <summary>
  34615. Gets or sets the separator value used for the data labels on a chart.
  34616. </summary>
  34617. </member>
  34618. <member name="P:Aspose.Cells.Charts.DataLabels.Position">
  34619. <summary>
  34620. Represents the position of the data label.
  34621. </summary>
  34622. </member>
  34623. <member name="P:Aspose.Cells.Charts.DataLabels.ShapeType">
  34624. <summary>
  34625. Gets or sets shape type of data label.
  34626. </summary>
  34627. </member>
  34628. <member name="T:Aspose.Cells.Charts.DataLabelsSeparatorType">
  34629. <summary>
  34630. Represents the separator type of DataLabels.
  34631. </summary>
  34632. </member>
  34633. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Auto">
  34634. <summary>
  34635. Represents automatic separator
  34636. </summary>
  34637. </member>
  34638. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Space">
  34639. <summary>
  34640. Represents space(" ")
  34641. </summary>
  34642. </member>
  34643. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Comma">
  34644. <summary>
  34645. Represents comma(",")
  34646. </summary>
  34647. </member>
  34648. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Semicolon">
  34649. <summary>
  34650. Represents semicolon(";")
  34651. </summary>
  34652. </member>
  34653. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Period">
  34654. <summary>
  34655. Represents period(".")
  34656. </summary>
  34657. </member>
  34658. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.NewLine">
  34659. <summary>
  34660. Represents newline("\n")
  34661. </summary>
  34662. </member>
  34663. <member name="F:Aspose.Cells.Charts.DataLabelsSeparatorType.Custom">
  34664. <summary>
  34665. Represents custom separator
  34666. </summary>
  34667. </member>
  34668. <member name="T:Aspose.Cells.DataSorter">
  34669. <summary>
  34670. Summary description for DataSorter.
  34671. </summary>
  34672. <example>
  34673. <code>
  34674. [C#]
  34675. //Instantiate a new Workbook object.
  34676. Workbook workbook = new Workbook("C:\\Book1.xls");
  34677. //Get the workbook datasorter object.
  34678. DataSorter sorter = workbook.DataSorter;
  34679. //Set the first order for datasorter object.
  34680. sorter.Order1 = Aspose.Cells.SortOrder.Descending;
  34681. //Define the first key.
  34682. sorter.Key1 = 0;
  34683. //Set the second order for datasorter object.
  34684. sorter.Order2 = Aspose.Cells.SortOrder.Ascending;
  34685. //Define the second key.
  34686. sorter.Key2 = 1;
  34687. //Create a cells area (range).
  34688. CellArea ca = new CellArea();
  34689. //Specify the start row index.
  34690. ca.StartRow = 0;
  34691. //Specify the start column index.
  34692. ca.StartColumn = 0;
  34693. //Specify the last row index.
  34694. ca.EndRow = 13;
  34695. //Specify the last column index.
  34696. ca.EndColumn = 1;
  34697. //Sort data in the specified data range (A1:B14)
  34698. sorter.Sort(workbook.Worksheets[0].Cells, ca);
  34699. //Save the excel file.
  34700. workbook.Save("C:\\outBook.xls");
  34701. [Visual Basic]
  34702. 'Instantiate a new Workbook object.
  34703. Dim workbook As Workbook = New Workbook("C:\Book1.xls")
  34704. 'Get the workbook datasorter object.
  34705. Dim sorter As DataSorter = workbook.DataSorter
  34706. 'Set the first order for datasorter object
  34707. sorter.Order1 = Aspose.Cells.SortOrder.Descending
  34708. 'Define the first key.
  34709. sorter.Key1 = 0
  34710. 'Set the second order for datasorter object.
  34711. sorter.Order2 = Aspose.Cells.SortOrder.Ascending
  34712. 'Define the second key.
  34713. sorter.Key2 = 1
  34714. 'Create a cells area (range).
  34715. Dim ca As CellArea = New CellArea
  34716. 'Specify the start row index.
  34717. ca.StartRow = 0
  34718. 'Specify the start column index.
  34719. ca.StartColumn = 0
  34720. 'Specify the last row index.
  34721. ca.EndRow = 13
  34722. 'Specify the last column index.
  34723. ca.EndColumn = 1
  34724. 'Sort the data in the specified data range (A1:B14)
  34725. sorter.Sort(workbook.Worksheets(0).Cells, ca)
  34726. 'Save the excel file.
  34727. workbook.Save("C:\outBook.xls")
  34728. </code>
  34729. </example>
  34730. </member>
  34731. <member name="M:Aspose.Cells.DataSorter.Clear">
  34732. <summary>
  34733. Clear all settings.
  34734. </summary>
  34735. </member>
  34736. <member name="M:Aspose.Cells.DataSorter.AddKey(System.Int32,Aspose.Cells.SortOrder)">
  34737. <summary>
  34738. Adds sorted column index and sort order.
  34739. </summary>
  34740. <param name="key">The sorted column index(absolute position, column A is 0, B is 1, ...)</param>
  34741. <param name="order">The sort order</param>
  34742. </member>
  34743. <member name="M:Aspose.Cells.DataSorter.AddKey(System.Int32,Aspose.Cells.SortOrder,System.String)">
  34744. <summary>
  34745. Adds sorted column index and sort order with custom sort list.
  34746. </summary>
  34747. <param name="key">The sorted column index(absolute position, column A is 0, B is 1, ...)</param>
  34748. <param name="order">The sort order.</param>
  34749. <param name="customList">The custom sort list.</param>
  34750. </member>
  34751. <member name="M:Aspose.Cells.DataSorter.AddKey(System.Int32,Aspose.Cells.SortOnType,Aspose.Cells.SortOrder,System.Object)">
  34752. <summary>
  34753. Adds sorted column index and sort order with custom sort list.
  34754. </summary>
  34755. <param name="key">The sorted column index(absolute position, column A is 0, B is 1, ...)</param>
  34756. <param name="type">The sorted value type.</param>
  34757. <param name="order">The sort order.</param>
  34758. <param name="customList">The custom sort list.</param>
  34759. <remarks>
  34760. If type is SortOnType.CellColor or SortOnType.FontColor, the customList is Color.
  34761. </remarks>
  34762. </member>
  34763. <member name="M:Aspose.Cells.DataSorter.AddKey(System.Int32,Aspose.Cells.SortOrder,System.String[])">
  34764. <summary>
  34765. Adds sorted column index and sort order with custom sort list.
  34766. </summary>
  34767. <param name="key">The sorted column index(absolute position, column A is 0, B is 1, ...)</param>
  34768. <param name="order">The sort order.</param>
  34769. <param name="customList">The custom sort list.</param>
  34770. </member>
  34771. <member name="M:Aspose.Cells.DataSorter.Sort(Aspose.Cells.Cells,System.Int32,System.Int32,System.Int32,System.Int32)">
  34772. <summary>
  34773. Sorts the data of the area.
  34774. </summary>
  34775. <param name="cells">The cells contains the data area.</param>
  34776. <param name="startRow">The start row of the area.</param>
  34777. <param name="startColumn">The start column of the area.</param>
  34778. <param name="endRow">The end row of the area.</param>
  34779. <param name="endColumn">The end column of the area.</param>
  34780. </member>
  34781. <member name="M:Aspose.Cells.DataSorter.Sort(Aspose.Cells.Cells,Aspose.Cells.CellArea)">
  34782. <summary>
  34783. Sort the data of the area.
  34784. </summary>
  34785. <param name="cells">The cells contains the data area.</param>
  34786. <param name="area">The area needed to sort</param>
  34787. </member>
  34788. <member name="M:Aspose.Cells.DataSorter.Sort">
  34789. <summary>
  34790. Sort the data in the range.
  34791. </summary>
  34792. </member>
  34793. <member name="P:Aspose.Cells.DataSorter.Keys">
  34794. <summary>
  34795. Gets the key list of data sorter.
  34796. </summary>
  34797. </member>
  34798. <member name="P:Aspose.Cells.DataSorter.HasHeaders">
  34799. <summary>
  34800. Represents whether the range has headers.
  34801. </summary>
  34802. </member>
  34803. <member name="P:Aspose.Cells.DataSorter.Key1">
  34804. <summary>
  34805. Represents first sorted column index(absolute position, column A is 0, B is 1, ...).
  34806. </summary>
  34807. </member>
  34808. <member name="P:Aspose.Cells.DataSorter.Order1">
  34809. <summary>
  34810. Represents sort order of the first key.
  34811. </summary>
  34812. </member>
  34813. <member name="P:Aspose.Cells.DataSorter.Key2">
  34814. <summary>
  34815. Represents second sorted column index(absolute position, column A is 0, B is 1, ...).
  34816. </summary>
  34817. </member>
  34818. <member name="P:Aspose.Cells.DataSorter.Order2">
  34819. <summary>
  34820. Represents sort order of the second key.
  34821. </summary>
  34822. </member>
  34823. <member name="P:Aspose.Cells.DataSorter.Key3">
  34824. <summary>
  34825. Represents third sorted column index(absolute position, column A is 0, B is 1, ...).
  34826. </summary>
  34827. </member>
  34828. <member name="P:Aspose.Cells.DataSorter.Order3">
  34829. <summary>
  34830. Represents sort order of the third key.
  34831. </summary>
  34832. </member>
  34833. <member name="P:Aspose.Cells.DataSorter.SortLeftToRight">
  34834. <summary>
  34835. True means that sorting orientation is from left to right.
  34836. False means that sorting orientation is from top to bottom.
  34837. The default value is false.
  34838. </summary>
  34839. </member>
  34840. <member name="P:Aspose.Cells.DataSorter.CaseSensitive">
  34841. <summary>
  34842. Gets and sets whether case sensitive when comparing string.
  34843. </summary>
  34844. </member>
  34845. <member name="P:Aspose.Cells.DataSorter.SortAsNumber">
  34846. <summary>
  34847. Indicates whether sorting anything that looks like a number.
  34848. </summary>
  34849. </member>
  34850. <member name="T:Aspose.Cells.DisplayDrawingObjects">
  34851. <summary>
  34852. Represents whether and how to show objects in the workbook.
  34853. </summary>
  34854. </member>
  34855. <member name="F:Aspose.Cells.DisplayDrawingObjects.DisplayShapes">
  34856. <summary>
  34857. Show all objects
  34858. </summary>
  34859. </member>
  34860. <member name="F:Aspose.Cells.DisplayDrawingObjects.Placeholders">
  34861. <summary>
  34862. Show placeholders
  34863. </summary>
  34864. </member>
  34865. <member name="F:Aspose.Cells.DisplayDrawingObjects.Hide">
  34866. <summary>
  34867. Hide all shapes.
  34868. </summary>
  34869. </member>
  34870. <member name="T:Aspose.Cells.Charts.DisplayUnitLabel">
  34871. <summary>
  34872. Represents the display unit label.
  34873. </summary>
  34874. <example>
  34875. <code>
  34876. [C#]
  34877. //Instantiating a Workbook object
  34878. Workbook workbook = new Workbook();
  34879. //Adding a new worksheet to the Excel object
  34880. int sheetIndex = workbook.Worksheets.Add();
  34881. //Obtaining the reference of the newly added worksheet by passing its sheet index
  34882. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  34883. //Adding a sample value to "A1" cell
  34884. worksheet.Cells["A1"].PutValue(50);
  34885. //Adding a sample value to "A2" cell
  34886. worksheet.Cells["A2"].PutValue(100);
  34887. //Adding a sample value to "A3" cell
  34888. worksheet.Cells["A3"].PutValue(150);
  34889. //Adding a sample value to "A4" cell
  34890. worksheet.Cells["A4"].PutValue(200);
  34891. //Adding a sample value to "B1" cell
  34892. worksheet.Cells["B1"].PutValue(60);
  34893. //Adding a sample value to "B2" cell
  34894. worksheet.Cells["B2"].PutValue(32);
  34895. //Adding a sample value to "B3" cell
  34896. worksheet.Cells["B3"].PutValue(50);
  34897. //Adding a sample value to "B4" cell
  34898. worksheet.Cells["B4"].PutValue(40);
  34899. //Adding a sample value to "C1" cell as category data
  34900. worksheet.Cells["C1"].PutValue("Q1");
  34901. //Adding a sample value to "C2" cell as category data
  34902. worksheet.Cells["C2"].PutValue("Q2");
  34903. //Adding a sample value to "C3" cell as category data
  34904. worksheet.Cells["C3"].PutValue("Y1");
  34905. //Adding a sample value to "C4" cell as category data
  34906. worksheet.Cells["C4"].PutValue("Y2");
  34907. //Adding a chart to the worksheet
  34908. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  34909. //Accessing the instance of the newly added chart
  34910. Chart chart = worksheet.Charts[chartIndex];
  34911. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  34912. chart.NSeries.Add("A1:B4", true);
  34913. //Setting the data source for the category data of NSeries
  34914. chart.NSeries.CategoryData = "C1:C4";
  34915. //Setting the display unit of value(Y) axis.
  34916. chart.ValueAxis.DisplayUnit = DisplayUnitType.Hundreds;
  34917. DisplayUnitLabel displayUnitLabel = chart.ValueAxis.DisplayUnitLabel;
  34918. //Setting the custom display unit label
  34919. displayUnitLabel.Text = "100";
  34920. //Saving the Excel file
  34921. workbook.Save("C:\\book1.xls");
  34922. [Visual Basic]
  34923. 'Instantiating a Workbook object
  34924. Dim workbook As Workbook = New Workbook()
  34925. 'Adding a new worksheet to the Excel object
  34926. Dim sheetIndex As Int32 = workbook.Worksheets.Add()
  34927. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  34928. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  34929. 'Adding a sample value to "A1" cell
  34930. worksheet.Cells("A1").PutValue(50)
  34931. 'Adding a sample value to "A2" cell
  34932. worksheet.Cells("A2").PutValue(100)
  34933. 'Adding a sample value to "A3" cell
  34934. worksheet.Cells("A3").PutValue(150)
  34935. 'Adding a sample value to "A4" cell
  34936. worksheet.Cells("A4").PutValue(200)
  34937. 'Adding a sample value to "B1" cell
  34938. worksheet.Cells("B1").PutValue(60)
  34939. 'Adding a sample value to "B2" cell
  34940. worksheet.Cells("B2").PutValue(32)
  34941. 'Adding a sample value to "B3" cell
  34942. worksheet.Cells("B3").PutValue(50)
  34943. 'Adding a sample value to "B4" cell
  34944. worksheet.Cells("B4").PutValue(40)
  34945. 'Adding a sample value to "C1" cell as category data
  34946. worksheet.Cells("C1").PutValue("Q1")
  34947. 'Adding a sample value to "C2" cell as category data
  34948. worksheet.Cells("C2").PutValue("Q2")
  34949. 'Adding a sample value to "C3" cell as category data
  34950. worksheet.Cells("C3").PutValue("Y1")
  34951. 'Adding a sample value to "C4" cell as category data
  34952. worksheet.Cells("C4").PutValue("Y2")
  34953. 'Adding a chart to the worksheet
  34954. Dim chartIndex As Int32 = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  34955. 'Accessing the instance of the newly added chart
  34956. Dim chart As Chart = worksheet.Charts(chartIndex)
  34957. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  34958. chart.NSeries.Add("A1:B4", True)
  34959. 'Setting the data source for the category data of NSeries
  34960. Chart.NSeries.CategoryData = "C1:C4"
  34961. 'Setting the display unit of value(Y) axis.
  34962. chart.ValueAxis.DisplayUnit = DisplayUnitType.Hundreds
  34963. Dim displayUnitLabel As DisplayUnitLabel = chart.ValueAxis.DisplayUnitLabel
  34964. 'Setting the custom display unit label
  34965. displayUnitLabel.Text = "100"
  34966. 'Saving the Excel file
  34967. workbook.Save("C:\\book1.xls")
  34968. </code>
  34969. </example>
  34970. </member>
  34971. <member name="P:Aspose.Cells.Charts.DisplayUnitLabel.Text">
  34972. <summary>
  34973. Gets or sets the text of display unit label.
  34974. </summary>
  34975. </member>
  34976. <member name="P:Aspose.Cells.Charts.DisplayUnitLabel.Font">
  34977. <summary>
  34978. Gets a <see cref="P:Aspose.Cells.Charts.DisplayUnitLabel.Font" /> object of the specified ChartFrame object.
  34979. </summary>
  34980. </member>
  34981. <member name="P:Aspose.Cells.Charts.DisplayUnitLabel.AutoScaleFont">
  34982. <summary>
  34983. True if the text in the object changes font size when the object size changes. The default value is True.
  34984. </summary>
  34985. </member>
  34986. <member name="T:Aspose.Cells.Charts.DisplayUnitType">
  34987. <summary>
  34988. Represents the type of display unit.
  34989. </summary>
  34990. </member>
  34991. <member name="F:Aspose.Cells.Charts.DisplayUnitType.None">
  34992. <summary>
  34993. Display unit is None.
  34994. </summary>
  34995. </member>
  34996. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Hundreds">
  34997. <summary>
  34998. Specifies the values on the chart shall be divided by 100.
  34999. </summary>
  35000. </member>
  35001. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Thousands">
  35002. <summary>
  35003. Specifies the values on the chart shall be divided by 1,000.
  35004. </summary>
  35005. </member>
  35006. <member name="F:Aspose.Cells.Charts.DisplayUnitType.TenThousands">
  35007. <summary>
  35008. Specifies the values on the chart shall be divided by 10,000.
  35009. </summary>
  35010. </member>
  35011. <member name="F:Aspose.Cells.Charts.DisplayUnitType.HundredThousands">
  35012. <summary>
  35013. Specifies the values on the chart shall be divided by 100,000.
  35014. </summary>
  35015. </member>
  35016. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Millions">
  35017. <summary>
  35018. Specifies the values on the chart shall be divided by 1,000,000.
  35019. </summary>
  35020. </member>
  35021. <member name="F:Aspose.Cells.Charts.DisplayUnitType.TenMillions">
  35022. <summary>
  35023. Specifies the values on the chart shall be divided by 10,000,000.
  35024. </summary>
  35025. </member>
  35026. <member name="F:Aspose.Cells.Charts.DisplayUnitType.HundredMillions">
  35027. <summary>
  35028. Specifies the values on the chart shall be divided by 100,000,000.
  35029. </summary>
  35030. </member>
  35031. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Billions">
  35032. <summary>
  35033. Specifies the values on the chart shall be divided by 1,000,000,000.
  35034. </summary>
  35035. </member>
  35036. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Trillions">
  35037. <summary>
  35038. Specifies the values on the chart shall be divided by 1,000,000,000,000.
  35039. </summary>
  35040. </member>
  35041. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Percentage">
  35042. <summary>
  35043. The values on the chart shall be divided by 0.01.
  35044. </summary>
  35045. </member>
  35046. <member name="F:Aspose.Cells.Charts.DisplayUnitType.Cust">
  35047. <summary>
  35048. specifies a custom value for the display unit.
  35049. </summary>
  35050. </member>
  35051. <member name="T:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection">
  35052. <summary>
  35053. A collection of built-in document properties.
  35054. </summary>
  35055. <remarks>
  35056. <p>Provides access to <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> objects by their names (using an indexer) and
  35057. via a set of typed properties that return values of appropriate types.</p>
  35058. </remarks>
  35059. </member>
  35060. <member name="T:Aspose.Cells.Properties.DocumentPropertyCollection">
  35061. <summary>
  35062. Base class for <see cref="T:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection" /> and <see cref="T:Aspose.Cells.Properties.CustomDocumentPropertyCollection" /> collections.
  35063. </summary>
  35064. <example>
  35065. <code>
  35066. [C#]
  35067. //Instantiate a Workbook object by calling its empty constructor
  35068. Workbook workbook = new Workbook("C:\\book1.xls");
  35069. //Retrieve a list of all custom document properties of the Excel file
  35070. DocumentPropertyCollection customProperties = workbook.Worksheets.CustomDocumentProperties;
  35071. //Accessng a custom document property by using the property index
  35072. DocumentProperty customProperty1 = customProperties[3];
  35073. //Accessng a custom document property by using the property name
  35074. DocumentProperty customProperty2 = customProperties["Owner"];
  35075. [VB.NET]
  35076. 'Instantiate a Workbook object by calling its empty constructor
  35077. Dim workbook As Workbook = New Workbook("C:\\book1.xls")
  35078. 'Retrieve a list of all custom document properties of the Excel file
  35079. Dim customProperties As DocumentPropertyCollection = workbook.Worksheets.CustomDocumentProperties
  35080. 'Accessng a custom document property by using the property index
  35081. Dim customProperty1 As DocumentProperty = customProperties(3)
  35082. 'Accessng a custom document property by using the property name
  35083. Dim customProperty2 As DocumentProperty = customProperties("Owner")
  35084. </code>
  35085. </example>
  35086. </member>
  35087. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.GetEnumerator">
  35088. <summary>
  35089. </summary>
  35090. <returns>
  35091. </returns>
  35092. </member>
  35093. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.Contains(System.String)">
  35094. <summary>
  35095. Returns true if a property with the specified name exists in the collection.
  35096. </summary>
  35097. <param name="name">The case-insensitive name of the property.</param>
  35098. <returns>True if the property exists in the collection; false otherwise.</returns>
  35099. </member>
  35100. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.IndexOf(System.String)">
  35101. <summary>
  35102. Gets the index of a property by name.
  35103. </summary>
  35104. <param name="name">The case-insensitive name of the property.</param>
  35105. <returns>The zero based index. Negative value if not found.</returns>
  35106. </member>
  35107. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.Remove(System.String)">
  35108. <summary>
  35109. Removes a property with the specified name from the collection.
  35110. </summary>
  35111. <param name="name">The case-insensitive name of the property.</param>
  35112. </member>
  35113. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.RemoveAt(System.Int32)">
  35114. <summary>
  35115. Removes a property at the specified index.
  35116. </summary>
  35117. <param name="index">The zero based index.</param>
  35118. </member>
  35119. <member name="M:Aspose.Cells.Properties.DocumentPropertyCollection.Clear">
  35120. <summary>
  35121. Removes all properties from the collection.
  35122. </summary>
  35123. </member>
  35124. <member name="P:Aspose.Cells.Properties.DocumentPropertyCollection.Count">
  35125. <summary>
  35126. Gets number of items in the collection.
  35127. </summary>
  35128. </member>
  35129. <member name="P:Aspose.Cells.Properties.DocumentPropertyCollection.Item(System.String)">
  35130. <overloads>Returns a <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object.</overloads>
  35131. <summary>
  35132. Returns a <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object by the name of the property.
  35133. </summary>
  35134. <remarks>
  35135. <p>Returns null if a property with the specified name is not found.</p>
  35136. </remarks>
  35137. <param name="name">The case-insensitive name of the property to retrieve.</param>
  35138. </member>
  35139. <member name="P:Aspose.Cells.Properties.DocumentPropertyCollection.Item(System.Int32)">
  35140. <summary>
  35141. Returns a <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object by index.
  35142. </summary>
  35143. <param name="index">Zero-based index of the <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> to retrieve.</param>
  35144. </member>
  35145. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Item(System.String)">
  35146. <overloads>Returns a <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object.</overloads>
  35147. <summary>
  35148. Returns a <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object by the name of the property.
  35149. </summary>
  35150. <remarks>
  35151. <p>The string names of the properties correspond to the names of the typed
  35152. properties available from <see cref="T:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection" />.</p>
  35153. <p>If you request a property that is not present in the document, but the name
  35154. of the property is recognized as a valid built-in name, a new <see cref="T:Aspose.Cells.Properties.DocumentProperty" />
  35155. is created, added to the collection and returned. The newly created property is assigned
  35156. a default value (empty string, zero, false or DateTime.MinValue depending on the type
  35157. of the built-in property).</p>
  35158. <p>If you request a property that is not present in the document and the name
  35159. is not recognized as a built-in name, a null is returned.</p>
  35160. </remarks>
  35161. <param name="name">The case-insensitive name of the property to retrieve.</param>
  35162. </member>
  35163. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Language">
  35164. <summary>
  35165. Gets or sets the document's language.
  35166. </summary>
  35167. </member>
  35168. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Author">
  35169. <summary>
  35170. Gets or sets the name of the document's author.
  35171. </summary>
  35172. </member>
  35173. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Bytes">
  35174. <summary>
  35175. Represents an estimate of the number of bytes in the document.
  35176. </summary>
  35177. </member>
  35178. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Characters">
  35179. <summary>
  35180. Represents an estimate of the number of characters in the document.
  35181. </summary>
  35182. </member>
  35183. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.CharactersWithSpaces">
  35184. <summary>
  35185. Represents an estimate of the number of characters (including spaces) in the document.
  35186. </summary>
  35187. </member>
  35188. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Comments">
  35189. <summary>
  35190. Gets or sets the document comments.
  35191. </summary>
  35192. </member>
  35193. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Category">
  35194. <summary>
  35195. Gets or sets the category of the document.
  35196. </summary>
  35197. </member>
  35198. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.ContentType">
  35199. <summary>
  35200. Gets or sets the content type of the document.
  35201. </summary>
  35202. </member>
  35203. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.ContentStatus">
  35204. <summary>
  35205. Gets or sets the content status of the document.
  35206. </summary>
  35207. </member>
  35208. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Company">
  35209. <summary>
  35210. Gets or sets the company property.
  35211. </summary>
  35212. </member>
  35213. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.HyperlinkBase">
  35214. <summary>
  35215. Gets or sets the hyperlinkbase property.
  35216. </summary>
  35217. </member>
  35218. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.CreatedTime">
  35219. <summary>
  35220. Gets or sets date of the document creation in local timezone.
  35221. </summary>
  35222. <remarks>
  35223. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35224. </remarks>
  35225. </member>
  35226. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.CreatedUniversalTime">
  35227. <summary>
  35228. Gets or sets the Universal time of the document creation.
  35229. </summary>
  35230. <remarks>
  35231. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35232. </remarks>
  35233. </member>
  35234. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Keywords">
  35235. <summary>
  35236. Gets or sets the document keywords.
  35237. </summary>
  35238. </member>
  35239. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LastPrinted">
  35240. <summary>
  35241. Gets or sets the date when the document was last printed in local timezone.
  35242. </summary>
  35243. <remarks>
  35244. <p>If the document was never printed, this property will return DateTime.MinValue.</p>
  35245. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35246. </remarks>
  35247. </member>
  35248. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LastPrintedUniversalTime">
  35249. <summary>
  35250. Gets or sets the Universal time when the document was last printed.
  35251. </summary>
  35252. </member>
  35253. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LastSavedBy">
  35254. <summary>
  35255. Gets or sets the name of the last author.
  35256. </summary>
  35257. <remarks>
  35258. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35259. </remarks>
  35260. </member>
  35261. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LastSavedTime">
  35262. <summary>
  35263. Gets or sets the time of the last save in local timezone.
  35264. </summary>
  35265. <remarks>
  35266. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35267. </remarks>
  35268. </member>
  35269. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LastSavedUniversalTime">
  35270. <summary>
  35271. Gets or sets the universal time of the last save.
  35272. </summary>
  35273. <remarks>
  35274. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35275. </remarks>
  35276. </member>
  35277. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Lines">
  35278. <summary>
  35279. Represents an estimate of the number of lines in the document.
  35280. </summary>
  35281. <remarks>
  35282. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35283. </remarks>
  35284. </member>
  35285. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Manager">
  35286. <summary>
  35287. Gets or sets the manager property.
  35288. </summary>
  35289. </member>
  35290. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.NameOfApplication">
  35291. <summary>
  35292. Gets or sets the name of the application.
  35293. </summary>
  35294. </member>
  35295. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Pages">
  35296. <summary>
  35297. Represents an estimate of the number of pages in the document.
  35298. </summary>
  35299. </member>
  35300. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Paragraphs">
  35301. <summary>
  35302. Represents an estimate of the number of paragraphs in the document.
  35303. </summary>
  35304. </member>
  35305. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.RevisionNumber">
  35306. <summary>
  35307. Gets or sets the document revision number.
  35308. </summary>
  35309. <remarks>
  35310. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35311. </remarks>
  35312. <remarks>NOTE: This property is now obsolete.
  35313. Instead, please use BuiltInDocumentPropertyCollection.Revision property,
  35314. this property will be removed 12 months later since February 2017.
  35315. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  35316. </member>
  35317. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Revision">
  35318. <summary>
  35319. Gets or sets the document revision number.
  35320. </summary>
  35321. <remarks>
  35322. <p>Aspose.Cells does not update this property when you modify the document.</p>
  35323. </remarks>
  35324. </member>
  35325. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Subject">
  35326. <summary>
  35327. Gets or sets the subject of the document.
  35328. </summary>
  35329. </member>
  35330. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Template">
  35331. <summary>
  35332. Gets or sets the informational name of the document template.
  35333. </summary>
  35334. </member>
  35335. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Title">
  35336. <summary>
  35337. Gets or sets the title of the document.
  35338. </summary>
  35339. </member>
  35340. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.TotalEditingTime">
  35341. <summary>
  35342. Gets or sets the total editing time in minutes.
  35343. </summary>
  35344. </member>
  35345. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Version">
  35346. <summary>
  35347. Represents the version number of the application that created the document.
  35348. </summary>
  35349. <remarks>
  35350. It's format is "00.0000",for example : 12.0000
  35351. </remarks>
  35352. </member>
  35353. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.DocumentVersion">
  35354. <summary>
  35355. Represents the version of the file.
  35356. </summary>
  35357. </member>
  35358. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.ScaleCrop">
  35359. <summary>
  35360. Indicates the display mode of the document thumbnail.
  35361. </summary>
  35362. </member>
  35363. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.LinksUpToDate">
  35364. <summary>
  35365. Indicates whether hyperlinks in a document are up-to-date.
  35366. </summary>
  35367. </member>
  35368. <member name="P:Aspose.Cells.Properties.BuiltInDocumentPropertyCollection.Words">
  35369. <summary>
  35370. Represents an estimate of the number of words in the document.
  35371. </summary>
  35372. </member>
  35373. <member name="T:Aspose.Cells.Properties.CustomDocumentPropertyCollection">
  35374. <summary>
  35375. A collection of custom document properties.
  35376. </summary>
  35377. <remarks>
  35378. <p>Each <see cref="T:Aspose.Cells.Properties.DocumentProperty" /> object represents a custom property of a container document.</p>
  35379. </remarks>
  35380. <example>
  35381. <code>
  35382. [C#]
  35383. //Instantiate a Workbook object
  35384. Workbook workbook = new Workbook("C:\\book1.xls");
  35385. //Retrieve a list of all custom document properties of the Excel file
  35386. CustomDocumentPropertyCollection customProperties = workbook.Worksheets.CustomDocumentProperties;
  35387. [VB.NET]
  35388. 'Instantiate a Workbook object
  35389. Dim workbook As New Workbook("C:\book1.xls")
  35390. 'Retrieve a list of all custom document properties of the Excel file
  35391. Dim customProperties As CustomDocumentPropertyCollection = workbook.Worksheets.CustomDocumentProperties
  35392. </code>
  35393. </example>
  35394. </member>
  35395. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.Add(System.String,System.String)">
  35396. <overloads>Creates a new custom document property.</overloads>
  35397. <summary>
  35398. Creates a new custom document property of the <b>PropertyType.String</b> data type.
  35399. </summary>
  35400. <param name="name">The name of the property.</param>
  35401. <param name="value">The value of the property.</param>
  35402. <returns>The newly created property object.</returns>
  35403. </member>
  35404. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.Add(System.String,System.Int32)">
  35405. <summary>
  35406. Creates a new custom document property of the <b>PropertyType.Number</b> data type.
  35407. </summary>
  35408. <param name="name">The name of the property.</param>
  35409. <param name="value">The value of the property.</param>
  35410. <returns>The newly created property object.</returns>
  35411. </member>
  35412. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.Add(System.String,System.DateTime)">
  35413. <summary>
  35414. Creates a new custom document property of the <b>PropertyType.DateTime</b> data type.
  35415. </summary>
  35416. <param name="name">The name of the property.</param>
  35417. <param name="value">The value of the property.</param>
  35418. <returns>The newly created property object.</returns>
  35419. </member>
  35420. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.Add(System.String,System.Boolean)">
  35421. <summary>
  35422. Creates a new custom document property of the <b>PropertyType.Boolean</b> data type.
  35423. </summary>
  35424. <param name="name">The name of the property.</param>
  35425. <param name="value">The value of the property.</param>
  35426. <returns>The newly created property object.</returns>
  35427. </member>
  35428. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.Add(System.String,System.Double)">
  35429. <summary>
  35430. Creates a new custom document property of the <b>PropertyType.Float</b> data type.
  35431. </summary>
  35432. <param name="name">The name of the property.</param>
  35433. <param name="value">The value of the property.</param>
  35434. <returns>The newly created property object.</returns>
  35435. </member>
  35436. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.AddLinkToContent(System.String,System.String)">
  35437. <summary>
  35438. Creates a new custom document property which links to content.
  35439. </summary>
  35440. <param name="name">The name of the property.</param>
  35441. <param name="source">The source of the property</param>
  35442. <returns>The newly created property object.</returns>
  35443. </member>
  35444. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.UpdateLinkedPropertyValue">
  35445. <summary>
  35446. Update custom document property value which links to content.
  35447. </summary>
  35448. </member>
  35449. <member name="M:Aspose.Cells.Properties.CustomDocumentPropertyCollection.UpdateLinkedRange">
  35450. <summary>
  35451. Update custom document property value to linked range.
  35452. </summary>
  35453. </member>
  35454. <member name="T:Aspose.Cells.Properties.DocumentProperty">
  35455. <summary>
  35456. Represents a custom or built-in document property.
  35457. </summary>
  35458. <example>
  35459. <code>
  35460. [C#]
  35461. //Instantiate a Workbook object
  35462. Workbook workbook = new Workbook("C:\\book1.xls");
  35463. //Retrieve a list of all custom document properties of the Excel file
  35464. DocumentPropertyCollection customProperties = workbook.Worksheets.CustomDocumentProperties;
  35465. //Accessng a custom document property by using the property index
  35466. DocumentProperty customProperty1 = customProperties[3];
  35467. //Accessng a custom document property by using the property name
  35468. DocumentProperty customProperty2 = customProperties["Owner"];
  35469. [VB.NET]
  35470. 'Instantiate a Workbook object
  35471. Dim workbook As Workbook = New Workbook("C:\\book1.xls")
  35472. 'Retrieve a list of all custom document properties of the Excel file
  35473. Dim customProperties As DocumentPropertyCollection = workbook.Worksheets.CustomDocumentProperties
  35474. 'Accessng a custom document property by using the property index
  35475. Dim customProperty1 As DocumentProperty = customProperties(3)
  35476. 'Accessng a custom document property by using the property name
  35477. Dim customProperty2 As DocumentProperty = customProperties("Owner")
  35478. </code>
  35479. </example>
  35480. </member>
  35481. <member name="M:Aspose.Cells.Properties.DocumentProperty.ToString">
  35482. <summary>
  35483. Returns the property value as a string.
  35484. </summary>
  35485. <remarks>
  35486. <p>Converts a number property using Object.ToString(). Converts a boolean property
  35487. into "Y" or "N". Converts a date property into a short date string.</p>
  35488. </remarks>
  35489. </member>
  35490. <member name="M:Aspose.Cells.Properties.DocumentProperty.ToInt">
  35491. <summary>
  35492. Returns the property value as integer.
  35493. </summary>
  35494. <remarks>
  35495. Throws an exception if the property type is not PropertyType.Number.
  35496. </remarks>
  35497. </member>
  35498. <member name="M:Aspose.Cells.Properties.DocumentProperty.ToDouble">
  35499. <summary>
  35500. Returns the property value as double.
  35501. </summary>
  35502. <remarks>
  35503. Throws an exception if the property type is not PropertyType.Float.
  35504. </remarks>
  35505. </member>
  35506. <member name="M:Aspose.Cells.Properties.DocumentProperty.ToDateTime">
  35507. <summary>
  35508. Returns the property value as DateTime in local timezone.
  35509. </summary>
  35510. <remarks>
  35511. <p>Throws an exception if the property type is not PropertyType.Date.</p>
  35512. </remarks>
  35513. </member>
  35514. <member name="M:Aspose.Cells.Properties.DocumentProperty.ToBool">
  35515. <summary>
  35516. Returns the property value as bool.
  35517. </summary>
  35518. <remarks>
  35519. <p>Throws an exception if the property type is not PropertyType.Boolean.</p>
  35520. </remarks>
  35521. </member>
  35522. <member name="P:Aspose.Cells.Properties.DocumentProperty.Name">
  35523. <summary>
  35524. Returns the name of the property.
  35525. </summary>
  35526. </member>
  35527. <member name="P:Aspose.Cells.Properties.DocumentProperty.Value">
  35528. <summary>
  35529. Gets or sets the value of the property.
  35530. </summary>
  35531. </member>
  35532. <member name="P:Aspose.Cells.Properties.DocumentProperty.IsLinkedToContent">
  35533. <summary>
  35534. Indicates whether this property is linked to content
  35535. </summary>
  35536. </member>
  35537. <member name="P:Aspose.Cells.Properties.DocumentProperty.Source">
  35538. <summary>
  35539. The linked content source.
  35540. </summary>
  35541. </member>
  35542. <member name="P:Aspose.Cells.Properties.DocumentProperty.Type">
  35543. <summary>
  35544. Gets the data type of the property.
  35545. </summary>
  35546. </member>
  35547. <member name="P:Aspose.Cells.Properties.DocumentProperty.IsGeneratedName">
  35548. <summary>
  35549. Returns true if this property does not have a name in the OLE2 storage
  35550. and a unique name was generated only for the public API.
  35551. </summary>
  35552. </member>
  35553. <member name="T:Aspose.Cells.Properties.PropertyType">
  35554. <summary>
  35555. Specifies data type of a document property.
  35556. </summary>
  35557. </member>
  35558. <member name="F:Aspose.Cells.Properties.PropertyType.Boolean">
  35559. <summary>
  35560. The property is a boolean value.
  35561. </summary>
  35562. </member>
  35563. <member name="F:Aspose.Cells.Properties.PropertyType.DateTime">
  35564. <summary>
  35565. The property is a date time value.
  35566. </summary>
  35567. </member>
  35568. <member name="F:Aspose.Cells.Properties.PropertyType.Double">
  35569. <summary>
  35570. The property is a floating number.
  35571. </summary>
  35572. </member>
  35573. <member name="F:Aspose.Cells.Properties.PropertyType.Number">
  35574. <summary>
  35575. The property is an integer number.
  35576. </summary>
  35577. </member>
  35578. <member name="F:Aspose.Cells.Properties.PropertyType.String">
  35579. <summary>
  35580. The property is a string value.
  35581. </summary>
  35582. </member>
  35583. <member name="F:Aspose.Cells.Properties.PropertyType.Blob">
  35584. <summary>
  35585. The property is a byte array.
  35586. </summary>
  35587. </member>
  35588. <member name="T:Aspose.Cells.Charts.DropBars">
  35589. <summary>
  35590. Represents the up/down bars in a chart.
  35591. </summary>
  35592. </member>
  35593. <member name="P:Aspose.Cells.Charts.DropBars.Border">
  35594. <summary>
  35595. Gets the border <see cref="T:Aspose.Cells.Drawing.Line" />.
  35596. </summary>
  35597. </member>
  35598. <member name="P:Aspose.Cells.Charts.DropBars.Area">
  35599. <summary>
  35600. Gets the <see cref="P:Aspose.Cells.Charts.DropBars.Area" />.
  35601. </summary>
  35602. </member>
  35603. <member name="T:Aspose.Cells.EncryptionType">
  35604. <summary>
  35605. Encryption Type.
  35606. Only used by excel2003.
  35607. We will encrypt 2007/2010 workbook using SHA AES the same as Excel does, and this EncryptionType will be ignored.
  35608. </summary>
  35609. </member>
  35610. <member name="F:Aspose.Cells.EncryptionType.XOR">
  35611. <summary>
  35612. </summary>
  35613. </member>
  35614. <member name="F:Aspose.Cells.EncryptionType.Compatible">
  35615. <summary>
  35616. Office 97/2000 compatible.
  35617. </summary>
  35618. </member>
  35619. <member name="F:Aspose.Cells.EncryptionType.EnhancedCryptographicProviderV1">
  35620. <summary>
  35621. </summary>
  35622. </member>
  35623. <member name="F:Aspose.Cells.EncryptionType.StrongCryptographicProvider">
  35624. <summary>
  35625. </summary>
  35626. </member>
  35627. <member name="T:Aspose.Cells.Charts.ErrorBar">
  35628. <summary>
  35629. Represents error bar of data series.
  35630. </summary>
  35631. <example>
  35632. <code>
  35633. [C#]
  35634. Workbook workbook = new Workbook();
  35635. Cells cells = workbook.Worksheets[0].Cells;
  35636. cells["a1"].PutValue(2);
  35637. cells["a2"].PutValue(5);
  35638. cells["a3"].PutValue(3);
  35639. cells["a4"].PutValue(6);
  35640. cells["b1"].PutValue(4);
  35641. cells["b2"].PutValue(3);
  35642. cells["b3"].PutValue(6);
  35643. cells["b4"].PutValue(7);
  35644. cells["C1"].PutValue("Q1");
  35645. cells["C2"].PutValue("Q2");
  35646. cells["C3"].PutValue("Y1");
  35647. cells["C4"].PutValue("Y2");
  35648. int chartIndex = excel.Worksheets[0].Charts.Add(ChartType.Column, 11, 0, 27, 10);
  35649. Chart chart = excel.Worksheets[0].Charts[chartIndex];
  35650. chart.NSeries.Add("A1:B4", true);
  35651. chart.NSeries.CategoryData = "C1:C4";
  35652. for(int i = 0; i &lt; chart.NSeries.Count; i ++)
  35653. {
  35654. ASeries aseries = chart.NSeries[i];
  35655. aseries.YErrorBar.DisplayType = ErrorBarDisplayType.Minus;
  35656. aseries.YErrorBar.Type = ErrorBarType.FixedValue;
  35657. aseries.YErrorBar.Amount = 5;
  35658. }
  35659. [Visual Basic]
  35660. Dim workbook As Workbook = New Workbook()
  35661. Dim cells As Cells = workbook.Worksheets(0).Cells
  35662. cells("a1").PutValue(2)
  35663. cells("a2").PutValue(5)
  35664. cells("a3").PutValue(3)
  35665. cells("a4").PutValue(6)
  35666. cells("b1").PutValue(4)
  35667. cells("b2").PutValue(3)
  35668. cells("b3").PutValue(6)
  35669. cells("b4").PutValue(7)
  35670. cells("C1").PutValue("Q1")
  35671. cells("C2").PutValue("Q2")
  35672. cells("C3").PutValue("Y1")
  35673. cells("C4").PutValue("Y2")
  35674. Dim chartIndex As Integer = excel.Worksheets(0).Charts.Add(ChartType.Column,11,0,27,10)
  35675. Dim chart As Chart = excel.Worksheets(0).Charts(chartIndex)
  35676. chart.NSeries.Add("A1:B4", True)
  35677. chart.NSeries.CategoryData = "C1:C4"
  35678. Dim i As Integer
  35679. For i = 0 To chart.NSeries.Count - 1
  35680. Dim aseries As ASeries = chart.NSeries(i)
  35681. aseries.YErrorBar.DisplayType = ErrorBarDisplayType.Minus
  35682. aseries.YErrorBar.Type = ErrorBarType.FixedValue
  35683. aseries.YErrorBar.Amount = 5
  35684. Next
  35685. </code>
  35686. </example>
  35687. </member>
  35688. <member name="T:Aspose.Cells.Drawing.Line">
  35689. <summary>
  35690. Encapsulates the object that represents the line format.
  35691. </summary>
  35692. <example>
  35693. <code>
  35694. [C#]
  35695. //Applying a dotted line style on the lines of an NSeries
  35696. chart.NSeries[0].Border.Style = LineType.Dot;
  35697. chart.NSeries[0].Border.Color = Color.Red;
  35698. //Applying a triangular marker style on the data markers of an NSeries
  35699. chart.NSeries[0].MarkerStyle = ChartMarkerType.Triangle;
  35700. //Setting the weight of all lines in an NSeries to medium
  35701. chart.NSeries[1].Border.Weight = WeightType.MediumLine;
  35702. chart.NSeries[1].Border.Color = Color.Green;
  35703. [Visual Basic]
  35704. 'Applying a dotted line style on the lines of an NSeries
  35705. chart.NSeries(0).Border.Style = LineType.Dot
  35706. chart.NSeries(0).Border.Color = Color.Red
  35707. 'Applying a triangular marker style on the data markers of an NSeries
  35708. chart.NSeries(0).MarkerStyle = ChartMarkerType.Triangle
  35709. 'Setting the weight of all lines in an NSeries to medium
  35710. chart.NSeries(1).Border.Weight = WeightType.MediumLine
  35711. </code>
  35712. </example>
  35713. </member>
  35714. <member name="P:Aspose.Cells.Drawing.Line.CompoundType">
  35715. <summary>
  35716. Specifies the compound line type
  35717. </summary>
  35718. </member>
  35719. <member name="P:Aspose.Cells.Drawing.Line.DashType">
  35720. <summary>
  35721. Specifies the dash line type
  35722. </summary>
  35723. </member>
  35724. <member name="P:Aspose.Cells.Drawing.Line.CapType">
  35725. <summary>
  35726. Specifies the ending caps.
  35727. </summary>
  35728. </member>
  35729. <member name="P:Aspose.Cells.Drawing.Line.JoinType">
  35730. <summary>
  35731. Specifies the joining caps.
  35732. </summary>
  35733. </member>
  35734. <member name="P:Aspose.Cells.Drawing.Line.BeginType">
  35735. <summary>
  35736. Specifies an arrowhead for the begin of a line.
  35737. </summary>
  35738. </member>
  35739. <member name="P:Aspose.Cells.Drawing.Line.EndType">
  35740. <summary>
  35741. Specifies an arrowhead for the end of a line.
  35742. </summary>
  35743. </member>
  35744. <member name="P:Aspose.Cells.Drawing.Line.BeginArrowLength">
  35745. <summary>
  35746. Specifies the length of the arrowhead for the begin of a line.
  35747. </summary>
  35748. </member>
  35749. <member name="P:Aspose.Cells.Drawing.Line.EndArrowLength">
  35750. <summary>
  35751. Specifies the length of the arrowhead for the end of a line.
  35752. </summary>
  35753. </member>
  35754. <member name="P:Aspose.Cells.Drawing.Line.BeginArrowWidth">
  35755. <summary>
  35756. Specifies the width of the arrowhead for the begin of a line.
  35757. </summary>
  35758. </member>
  35759. <member name="P:Aspose.Cells.Drawing.Line.EndArrowWidth">
  35760. <summary>
  35761. Specifies the width of the arrowhead for the end of a line.
  35762. </summary>
  35763. </member>
  35764. <member name="P:Aspose.Cells.Drawing.Line.ThemeColor">
  35765. <summary>
  35766. Gets and sets the theme color.
  35767. </summary>
  35768. <remarks>
  35769. If the foreground color is not a theme color, NULL will be returned.
  35770. </remarks>
  35771. </member>
  35772. <member name="P:Aspose.Cells.Drawing.Line.Color">
  35773. <summary>
  35774. Represents the <see cref="T:System.Drawing.Color" /> of the line.
  35775. </summary>
  35776. </member>
  35777. <member name="P:Aspose.Cells.Drawing.Line.Transparency">
  35778. <summary>
  35779. Returns or sets the degree of transparency of the line as a value from 0.0 (opaque) through 1.0 (clear).
  35780. </summary>
  35781. </member>
  35782. <member name="P:Aspose.Cells.Drawing.Line.Style">
  35783. <summary>
  35784. Represents the style of the line.
  35785. </summary>
  35786. </member>
  35787. <member name="P:Aspose.Cells.Drawing.Line.Weight">
  35788. <summary>
  35789. Gets or sets the <see cref="T:Aspose.Cells.Drawing.WeightType" /> of the line.
  35790. </summary>
  35791. </member>
  35792. <member name="P:Aspose.Cells.Drawing.Line.WeightPt">
  35793. <summary>
  35794. Gets or sets the weight of the line in unit of points.
  35795. </summary>
  35796. </member>
  35797. <member name="P:Aspose.Cells.Drawing.Line.WeightPx">
  35798. <summary>
  35799. Gets or sets the weight of the line in unit of pixels.
  35800. </summary>
  35801. </member>
  35802. <member name="P:Aspose.Cells.Drawing.Line.FormattingType">
  35803. <summary>
  35804. Gets or sets format type.
  35805. </summary>
  35806. </member>
  35807. <member name="P:Aspose.Cells.Drawing.Line.IsAutomaticColor">
  35808. <summary>
  35809. Indicates whether the color of line is auotmatic assigned.
  35810. </summary>
  35811. </member>
  35812. <member name="P:Aspose.Cells.Drawing.Line.IsVisible">
  35813. <summary>
  35814. Represents whether the line is visible.
  35815. </summary>
  35816. </member>
  35817. <member name="P:Aspose.Cells.Drawing.Line.IsAuto">
  35818. <summary>
  35819. Indicates whether this line style is auto assigned.
  35820. </summary>
  35821. </member>
  35822. <member name="P:Aspose.Cells.Drawing.Line.GradientFill">
  35823. <summary>
  35824. Represents gradient fill.
  35825. </summary>
  35826. </member>
  35827. <member name="P:Aspose.Cells.Charts.ErrorBar.Type">
  35828. <summary>
  35829. Represents error bar amount type.
  35830. </summary>
  35831. <example>
  35832. <code>
  35833. [C#]
  35834. //Sets custom error bar type
  35835. aseries.YErrorBar.Type = ErrorBarType.InnerCustom;
  35836. aseries.YErrorBar.PlusValue = "=Sheet1!A1";
  35837. aseries.YErrorBar.MinusValue = "=Sheet1!A2";
  35838. [Visual Basic]
  35839. 'Sets custom error bar type
  35840. aseries.YErrorBar.Type = ErrorBarType.InnerCustom
  35841. aseries.YErrorBar.PlusValue = "=Sheet1!A1"
  35842. aseries.YErrorBar.MinusValue = "=Sheet1!A2"
  35843. </code>
  35844. </example>
  35845. </member>
  35846. <member name="P:Aspose.Cells.Charts.ErrorBar.DisplayType">
  35847. <summary>
  35848. Represents error bar display type.
  35849. </summary>
  35850. </member>
  35851. <member name="P:Aspose.Cells.Charts.ErrorBar.Amount">
  35852. <summary>
  35853. Represents amount of error bar.
  35854. <remarks> The amount must be greater than and equal to zero.</remarks></summary>
  35855. </member>
  35856. <member name="P:Aspose.Cells.Charts.ErrorBar.ShowMarkerTTop">
  35857. <summary>
  35858. Indicates if formatting error bars with a T-top.
  35859. </summary>
  35860. </member>
  35861. <member name="P:Aspose.Cells.Charts.ErrorBar.PlusValue">
  35862. <summary>
  35863. Represents positive error amount when error bar type is Custom.
  35864. </summary>
  35865. </member>
  35866. <member name="P:Aspose.Cells.Charts.ErrorBar.MinusValue">
  35867. <summary>
  35868. Represents negative error amount when error bar type is Custom.
  35869. </summary>
  35870. </member>
  35871. <member name="T:Aspose.Cells.Charts.ErrorBarType">
  35872. <summary>
  35873. Represents error bar amount type.
  35874. </summary>
  35875. </member>
  35876. <member name="F:Aspose.Cells.Charts.ErrorBarType.Custom">
  35877. <summary>
  35878. InnerCustom value type.
  35879. </summary>
  35880. </member>
  35881. <member name="F:Aspose.Cells.Charts.ErrorBarType.FixedValue">
  35882. <summary>
  35883. Fixed value type.
  35884. </summary>
  35885. </member>
  35886. <member name="F:Aspose.Cells.Charts.ErrorBarType.Percent">
  35887. <summary>
  35888. Percentage type
  35889. </summary>
  35890. </member>
  35891. <member name="F:Aspose.Cells.Charts.ErrorBarType.StDev">
  35892. <summary>
  35893. Standard deviation type.
  35894. </summary>
  35895. </member>
  35896. <member name="F:Aspose.Cells.Charts.ErrorBarType.StError">
  35897. <summary>
  35898. Standard error type.
  35899. </summary>
  35900. </member>
  35901. <member name="T:Aspose.Cells.ExceptionType">
  35902. <summary>
  35903. Represents custom exception type code.
  35904. </summary>
  35905. </member>
  35906. <member name="F:Aspose.Cells.ExceptionType.Chart">
  35907. <summary>
  35908. Invalid chart setting.
  35909. </summary>
  35910. </member>
  35911. <member name="F:Aspose.Cells.ExceptionType.DataType">
  35912. <summary>
  35913. Invalid data type setting.
  35914. </summary>
  35915. </member>
  35916. <member name="F:Aspose.Cells.ExceptionType.DataValidation">
  35917. <summary>
  35918. Invalid data validation setting.
  35919. </summary>
  35920. </member>
  35921. <member name="F:Aspose.Cells.ExceptionType.ConditionalFormatting">
  35922. <summary>
  35923. Invalid data validation setting.
  35924. </summary>
  35925. </member>
  35926. <member name="F:Aspose.Cells.ExceptionType.FileFormat">
  35927. <summary>
  35928. Invalid file format.
  35929. </summary>
  35930. </member>
  35931. <member name="F:Aspose.Cells.ExceptionType.Formula">
  35932. <summary>
  35933. Invalid formula.
  35934. </summary>
  35935. </member>
  35936. <member name="F:Aspose.Cells.ExceptionType.InvalidData">
  35937. <summary>
  35938. Invalid data.
  35939. </summary>
  35940. </member>
  35941. <member name="F:Aspose.Cells.ExceptionType.InvalidOperator">
  35942. <summary>
  35943. Invalid operator.
  35944. </summary>
  35945. </member>
  35946. <member name="F:Aspose.Cells.ExceptionType.IncorrectPassword">
  35947. <summary>
  35948. Incorrect password.
  35949. </summary>
  35950. </member>
  35951. <member name="F:Aspose.Cells.ExceptionType.License">
  35952. <summary>
  35953. License related errors.
  35954. </summary>
  35955. </member>
  35956. <member name="F:Aspose.Cells.ExceptionType.Limitation">
  35957. <summary>
  35958. Out of MS Excel limitation error.
  35959. </summary>
  35960. </member>
  35961. <member name="F:Aspose.Cells.ExceptionType.PageSetup">
  35962. <summary>
  35963. Invalid page setup setting.
  35964. </summary>
  35965. </member>
  35966. <member name="F:Aspose.Cells.ExceptionType.PivotTable">
  35967. <summary>
  35968. Invalid pivotTable setting.
  35969. </summary>
  35970. </member>
  35971. <member name="F:Aspose.Cells.ExceptionType.Shape">
  35972. <summary>
  35973. Invalid drawing object setting.
  35974. </summary>
  35975. </member>
  35976. <member name="F:Aspose.Cells.ExceptionType.Sparkline">
  35977. <summary>
  35978. Invalid sparkline object setting.
  35979. </summary>
  35980. </member>
  35981. <member name="F:Aspose.Cells.ExceptionType.SheetName">
  35982. <summary>
  35983. Invalid worksheet name.
  35984. </summary>
  35985. </member>
  35986. <member name="F:Aspose.Cells.ExceptionType.SheetType">
  35987. <summary>
  35988. Invalid worksheet type.
  35989. </summary>
  35990. </member>
  35991. <member name="F:Aspose.Cells.ExceptionType.Interrupted">
  35992. <summary>
  35993. The process is interrupted.
  35994. </summary>
  35995. </member>
  35996. <member name="F:Aspose.Cells.ExceptionType.IO">
  35997. <summary>
  35998. The file is invalid.
  35999. </summary>
  36000. </member>
  36001. <member name="F:Aspose.Cells.ExceptionType.Permission">
  36002. <summary>
  36003. Permission is required to open this file.
  36004. </summary>
  36005. </member>
  36006. <member name="F:Aspose.Cells.ExceptionType.UnsupportedFeature">
  36007. <summary>
  36008. Unsupported feature.
  36009. </summary>
  36010. </member>
  36011. <member name="F:Aspose.Cells.ExceptionType.UnsupportedStream">
  36012. <summary>
  36013. Unsupported stream to be opened.
  36014. </summary>
  36015. </member>
  36016. <member name="F:Aspose.Cells.ExceptionType.UndisclosedInformation">
  36017. <summary>
  36018. Files contains some undisclosed information.
  36019. </summary>
  36020. </member>
  36021. <member name="T:Aspose.Cells.ExternalLink">
  36022. <summary>
  36023. Represents an external link in a workbook.
  36024. </summary>
  36025. <example>
  36026. <code>
  36027. [C#]
  36028. //Open a file with external links
  36029. Workbook workbook = new Workbook("d:\\book1.xls");
  36030. //Get External Link
  36031. ExternalLink externalLink = workbook.Worksheets.ExternalLinks[0];
  36032. //Change External Link's Data Source
  36033. externalLink.DataSource = "d:\\link.xls";
  36034. [VB.NET]
  36035. 'Open a file with external links
  36036. Dim workbook As New Workbook("d:\book1.xls")
  36037. 'Get External Link
  36038. Dim externalLink As ExternalLink = workbook.Worksheets.ExternalLinks(0)
  36039. 'Change External Link's Data Source
  36040. externalLink.DataSource = "d:\link.xls"
  36041. </code>
  36042. </example>
  36043. </member>
  36044. <member name="M:Aspose.Cells.ExternalLink.AddExternalName(System.String,System.String)">
  36045. <summary>
  36046. Adds an external name.
  36047. </summary>
  36048. <param name="text">The text of the external name.
  36049. If the external name belongs to a worksheet, the text should be as Sheet1!Text.
  36050. </param>
  36051. <param name="referTo">The referTo of the external name. It must be a cell or the range.</param>
  36052. </member>
  36053. <member name="P:Aspose.Cells.ExternalLink.Type">
  36054. <summary>
  36055. Gets the type of external link.
  36056. </summary>
  36057. </member>
  36058. <member name="P:Aspose.Cells.ExternalLink.OriginalDataSource">
  36059. <summary>
  36060. Represents stored data source of the external link.
  36061. </summary>
  36062. </member>
  36063. <member name="P:Aspose.Cells.ExternalLink.DataSource">
  36064. <summary>
  36065. Represents data source of the external link.
  36066. </summary>
  36067. </member>
  36068. <member name="P:Aspose.Cells.ExternalLink.IsReferred">
  36069. <summary>
  36070. Indicates whether this external link is referenced by others.
  36071. </summary>
  36072. </member>
  36073. <member name="P:Aspose.Cells.ExternalLink.IsVisible">
  36074. <summary>
  36075. Indicates whether this external link is visible in MS Excel.
  36076. </summary>
  36077. </member>
  36078. <member name="T:Aspose.Cells.ExternalLinkCollection">
  36079. <summary>
  36080. Represents external links collection in a workbook.
  36081. </summary>
  36082. <example>
  36083. <code>
  36084. [C#]
  36085. //Open a file with external links
  36086. Workbook workbook = new Workbook("d:\\book1.xls");
  36087. //Change external link data source
  36088. workbook.Worksheets.ExternalLinks[0].DataSource = "d:\\link.xls";
  36089. [Visual Basic]
  36090. 'Open a file with external links
  36091. Dim workbook As Workbook = New Workbook("d:\\book1.xls")
  36092. 'Change external link data source
  36093. workbook.Worksheets.ExternalLinks(0).DataSource = "d:\\link.xls"
  36094. </code>
  36095. </example>
  36096. </member>
  36097. <member name="M:Aspose.Cells.ExternalLinkCollection.Add(System.String,System.String[])">
  36098. <summary>
  36099. Adds an external link.
  36100. </summary>
  36101. <param name="fileName">The external file name.</param>
  36102. <param name="sheetNames">All sheet names of the external file.</param>
  36103. <returns>The position of the external name in this list. </returns>
  36104. </member>
  36105. <member name="M:Aspose.Cells.ExternalLinkCollection.Add(Aspose.Cells.DirectoryType,System.String,System.String[])">
  36106. <summary>
  36107. Add an external link .
  36108. </summary>
  36109. <param name="directoryType">The directory type of the file name.</param>
  36110. <param name="fileName">the file name.</param>
  36111. <param name="sheetNames">All sheet names of the external file.</param>
  36112. <returns>The position of the external name in this list. </returns>
  36113. </member>
  36114. <member name="P:Aspose.Cells.ExternalLinkCollection.Count">
  36115. <summary>
  36116. Gets the number of elements actually contained in the collection.
  36117. </summary>
  36118. </member>
  36119. <member name="P:Aspose.Cells.ExternalLinkCollection.Item(System.Int32)">
  36120. <summary>
  36121. Gets the <see cref="T:Aspose.Cells.ExternalLink" /> element at the specified index.
  36122. </summary>
  36123. <param name="index">The zero based index of the element.</param>
  36124. <returns>The element at the specified index.</returns>
  36125. </member>
  36126. <member name="T:Aspose.Cells.FileFormatType">
  36127. <summary>
  36128. Enumerates spreadsheet file format types
  36129. </summary>
  36130. </member>
  36131. <member name="F:Aspose.Cells.FileFormatType.CSV">
  36132. <summary>
  36133. Represents a CSV file.
  36134. </summary>
  36135. </member>
  36136. <member name="F:Aspose.Cells.FileFormatType.Xlsx">
  36137. <summary>
  36138. Represents an xlsx file.
  36139. </summary>
  36140. </member>
  36141. <member name="F:Aspose.Cells.FileFormatType.Xlsm">
  36142. <summary>
  36143. Represents an xlsm file which enable macros.
  36144. </summary>
  36145. </member>
  36146. <member name="F:Aspose.Cells.FileFormatType.Xltx">
  36147. <summary>
  36148. Represents a template xltx file.
  36149. </summary>
  36150. </member>
  36151. <member name="F:Aspose.Cells.FileFormatType.Xltm">
  36152. <summary>
  36153. Represents a macro-enabled template xltm file.
  36154. </summary>
  36155. </member>
  36156. <member name="F:Aspose.Cells.FileFormatType.Xlam">
  36157. <summary>
  36158. Represents a addinMacro-enabled template xltm file.
  36159. </summary>
  36160. </member>
  36161. <member name="F:Aspose.Cells.FileFormatType.TSV">
  36162. <summary>
  36163. Represents a TSV(tab-separated values file) file.
  36164. </summary>
  36165. </member>
  36166. <member name="F:Aspose.Cells.FileFormatType.TabDelimited">
  36167. <summary>
  36168. Represents a tab delimited text file, same with <see cref="F:Aspose.Cells.FileFormatType.TSV" />.
  36169. </summary>
  36170. </member>
  36171. <member name="F:Aspose.Cells.FileFormatType.Html">
  36172. <summary>
  36173. Represents a html file.
  36174. </summary>
  36175. </member>
  36176. <member name="F:Aspose.Cells.FileFormatType.MHtml">
  36177. <summary>
  36178. Represents a mhtml file.
  36179. </summary>
  36180. </member>
  36181. <member name="F:Aspose.Cells.FileFormatType.ODS">
  36182. <summary>
  36183. Represents a ods file.
  36184. </summary>
  36185. </member>
  36186. <member name="F:Aspose.Cells.FileFormatType.Excel97To2003">
  36187. <summary>
  36188. Represents an Excel97-2003 xls file.
  36189. </summary>
  36190. </member>
  36191. <member name="F:Aspose.Cells.FileFormatType.Excel2003XML">
  36192. <summary>
  36193. Represents an Excel 2003 xml file.
  36194. </summary>
  36195. </member>
  36196. <member name="F:Aspose.Cells.FileFormatType.Xlsb">
  36197. <summary>
  36198. Represents an xlsb file.
  36199. </summary>
  36200. </member>
  36201. <member name="F:Aspose.Cells.FileFormatType.Unknown">
  36202. <summary>
  36203. Represents unrecognized format, cannot be loaded.
  36204. </summary>
  36205. </member>
  36206. <member name="F:Aspose.Cells.FileFormatType.Pdf">
  36207. <summary>
  36208. Represents a Pdf file.
  36209. </summary>
  36210. </member>
  36211. <member name="F:Aspose.Cells.FileFormatType.XPS">
  36212. <summary>
  36213. Represents an XPS file.
  36214. </summary>
  36215. </member>
  36216. <member name="F:Aspose.Cells.FileFormatType.TIFF">
  36217. <summary>
  36218. Represents a TIFF file.
  36219. </summary>
  36220. </member>
  36221. <member name="F:Aspose.Cells.FileFormatType.SVG">
  36222. <summary>
  36223. Represents a svg file.
  36224. </summary>
  36225. </member>
  36226. <member name="F:Aspose.Cells.FileFormatType.Excel95">
  36227. <summary>
  36228. Represents an Excel95 xls file.
  36229. </summary>
  36230. <remarks>
  36231. Only support data and style.Shapes and charts are not supported.
  36232. </remarks>
  36233. </member>
  36234. <member name="F:Aspose.Cells.FileFormatType.Excel4">
  36235. <summary>
  36236. Represents an Excel4.0 xls file.
  36237. </summary>
  36238. <remarks>
  36239. The file format is not supported
  36240. </remarks>
  36241. </member>
  36242. <member name="F:Aspose.Cells.FileFormatType.Excel3">
  36243. <summary>
  36244. Represents an Excel3.0 xls file.
  36245. </summary>
  36246. <remarks>
  36247. The file format is not supported
  36248. </remarks>
  36249. </member>
  36250. <member name="F:Aspose.Cells.FileFormatType.Excel2">
  36251. <summary>
  36252. Represents an Excel2.1 xls file.
  36253. </summary>
  36254. <remarks>
  36255. The file format is not supported
  36256. </remarks>
  36257. </member>
  36258. <member name="F:Aspose.Cells.FileFormatType.Pptx">
  36259. <summary>
  36260. Represents a pptx file.
  36261. </summary>
  36262. <remarks>
  36263. The file format is not supported
  36264. Only for detecting file type.
  36265. </remarks>
  36266. </member>
  36267. <member name="F:Aspose.Cells.FileFormatType.Docx">
  36268. <summary>
  36269. Represents a docx file.
  36270. </summary>
  36271. <remarks>
  36272. The file format is not supported
  36273. Only for detecting file type.
  36274. </remarks>
  36275. </member>
  36276. <member name="F:Aspose.Cells.FileFormatType.Dif">
  36277. <summary>
  36278. Data Interchange Format.
  36279. </summary>
  36280. </member>
  36281. <member name="F:Aspose.Cells.FileFormatType.Doc">
  36282. <summary>
  36283. Represents a doc file.
  36284. </summary>
  36285. <remarks>
  36286. The file format is not supported
  36287. Only for detecting file type.
  36288. </remarks>
  36289. </member>
  36290. <member name="F:Aspose.Cells.FileFormatType.Ppt">
  36291. <summary>
  36292. Represents a ppt file.
  36293. </summary>
  36294. <remarks>
  36295. The file format is not supported
  36296. Only for detecting file type.
  36297. </remarks>
  36298. </member>
  36299. <member name="F:Aspose.Cells.FileFormatType.MapiMessage">
  36300. <summary>
  36301. Represents a email file.
  36302. </summary>
  36303. <remarks>
  36304. The file format is not supported
  36305. Only for detecting file type.
  36306. </remarks>
  36307. </member>
  36308. <member name="F:Aspose.Cells.FileFormatType.MSEquation">
  36309. <summary>
  36310. Represents the MS Equation 3.0 object.
  36311. </summary>
  36312. <remarks>
  36313. The file format is not supported
  36314. Only for detecting file type.
  36315. </remarks>
  36316. </member>
  36317. <member name="F:Aspose.Cells.FileFormatType.Ole10Native">
  36318. <summary>
  36319. Represents the embedded native object.
  36320. </summary>
  36321. <remarks>
  36322. The file format is not supported
  36323. Only for detecting file type.
  36324. </remarks>
  36325. </member>
  36326. <member name="F:Aspose.Cells.FileFormatType.VSD">
  36327. <summary>
  36328. Represents MS Visio VSD binary format.
  36329. </summary>
  36330. <remarks>
  36331. The file format is not supported
  36332. Only for detecting file type.
  36333. </remarks>
  36334. </member>
  36335. <member name="F:Aspose.Cells.FileFormatType.VSDX">
  36336. <summary>
  36337. MS Visio 2013 VSDX file format.
  36338. </summary>
  36339. <remarks>
  36340. The file format is not supported
  36341. Only for detecting file type.
  36342. </remarks>
  36343. </member>
  36344. <member name="F:Aspose.Cells.FileFormatType.Docm">
  36345. <summary>
  36346. Represents a docm file.
  36347. </summary>
  36348. <remarks>
  36349. The file format is not supported
  36350. Only for detecting file type.
  36351. </remarks>
  36352. </member>
  36353. <member name="F:Aspose.Cells.FileFormatType.Dotx">
  36354. <summary>
  36355. Represents a dotx file.
  36356. </summary>
  36357. <remarks>
  36358. The file format is not supported
  36359. Only for detecting file type.
  36360. </remarks>
  36361. </member>
  36362. <member name="F:Aspose.Cells.FileFormatType.Dotm">
  36363. <summary>
  36364. Represents a dotm file.
  36365. </summary>
  36366. <remarks>
  36367. The file format is not supported
  36368. Only for detecting file type.
  36369. </remarks>
  36370. </member>
  36371. <member name="F:Aspose.Cells.FileFormatType.Pptm">
  36372. <summary>
  36373. Represents a pptm file.
  36374. </summary>
  36375. <remarks>
  36376. The file format is not supported
  36377. Only for detecting file type.
  36378. </remarks>
  36379. </member>
  36380. <member name="F:Aspose.Cells.FileFormatType.Potx">
  36381. <summary>
  36382. Represents a Potx file.
  36383. </summary>
  36384. <remarks>
  36385. The file format is not supported
  36386. Only for detecting file type.
  36387. </remarks>
  36388. </member>
  36389. <member name="F:Aspose.Cells.FileFormatType.Potm">
  36390. <summary>
  36391. Represents a Potm file.
  36392. </summary>
  36393. <remarks>
  36394. The file format is not supported
  36395. Only for detecting file type.
  36396. </remarks>
  36397. </member>
  36398. <member name="F:Aspose.Cells.FileFormatType.Ppsx">
  36399. <summary>
  36400. Represents a ppsx file.
  36401. </summary>
  36402. <remarks>
  36403. The file format is not supported
  36404. Only for detecting file type.
  36405. </remarks>
  36406. </member>
  36407. <member name="F:Aspose.Cells.FileFormatType.Ppsm">
  36408. <summary>
  36409. Represents a ppsm file.
  36410. </summary>
  36411. <remarks>
  36412. The file format is not supported
  36413. Only for detecting file type.
  36414. </remarks>
  36415. </member>
  36416. <member name="F:Aspose.Cells.FileFormatType.Ooxml">
  36417. <summary>
  36418. Represents office open xml file(such as xlsx, docx,pptx, etc).
  36419. </summary>
  36420. <remarks>
  36421. The file format is not supported
  36422. Only for detecting file type.
  36423. If the office open xml file is encrypted, it could not be detected as xlsx ,docx, pptx,etc.
  36424. </remarks>
  36425. </member>
  36426. <member name="F:Aspose.Cells.FileFormatType.ODT">
  36427. <summary>
  36428. Represents a odt file.
  36429. </summary>
  36430. <remarks>
  36431. The file format is not supported
  36432. Only for detecting file type.
  36433. </remarks>
  36434. </member>
  36435. <member name="F:Aspose.Cells.FileFormatType.ODP">
  36436. <summary>
  36437. Represents a odp file.
  36438. </summary>
  36439. <remarks>
  36440. The file format is not supported
  36441. Only for detecting file type.
  36442. </remarks>
  36443. </member>
  36444. <member name="F:Aspose.Cells.FileFormatType.ODF">
  36445. <summary>
  36446. Represents a odf file.
  36447. </summary>
  36448. <remarks>
  36449. The file format is not supported
  36450. Only for detecting file type.
  36451. </remarks>
  36452. </member>
  36453. <member name="F:Aspose.Cells.FileFormatType.ODG">
  36454. <summary>
  36455. Represents a odg file.
  36456. </summary>
  36457. <remarks>
  36458. The file format is not supported
  36459. Only for detecting file type.
  36460. </remarks>
  36461. </member>
  36462. <member name="F:Aspose.Cells.FileFormatType.XML">
  36463. <summary>
  36464. Represents an simple xml file.
  36465. </summary>
  36466. <remarks>
  36467. The file format is not supported
  36468. Only for detecting file type.
  36469. </remarks>
  36470. </member>
  36471. <member name="F:Aspose.Cells.FileFormatType.Xlt">
  36472. <summary>
  36473. Represents a template xlt file.
  36474. </summary>
  36475. </member>
  36476. <member name="F:Aspose.Cells.FileFormatType.OTT">
  36477. <summary>
  36478. Represents a odt file.
  36479. </summary>
  36480. <remarks>
  36481. The file format is not supported
  36482. Only for detecting file type.
  36483. </remarks>
  36484. </member>
  36485. <member name="F:Aspose.Cells.FileFormatType.BMP">
  36486. <summary>
  36487. Represents a bmp file.
  36488. </summary>
  36489. <remarks>
  36490. The file format is not supported
  36491. Only for detecting file type.
  36492. </remarks>
  36493. </member>
  36494. <member name="F:Aspose.Cells.FileFormatType.OTS">
  36495. <summary>
  36496. Represents a ods file.
  36497. </summary>
  36498. </member>
  36499. <member name="F:Aspose.Cells.FileFormatType.Numbers">
  36500. <summary>
  36501. Represents Numbers file format by Apple Inc
  36502. </summary>
  36503. </member>
  36504. <member name="F:Aspose.Cells.FileFormatType.Markdown">
  36505. <summary>
  36506. Represents markdown document.
  36507. </summary>
  36508. </member>
  36509. <member name="F:Aspose.Cells.FileFormatType.GraphChart">
  36510. <summary>
  36511. Represents embedded graph chart.
  36512. </summary>
  36513. </member>
  36514. <member name="F:Aspose.Cells.FileFormatType.FODS">
  36515. <summary>
  36516. Represents OpenDocument Flat XML Spreadsheet (.fods) file format.
  36517. </summary>
  36518. </member>
  36519. <member name="F:Aspose.Cells.FileFormatType.SXC">
  36520. <summary>
  36521. Represents StarOffice Calc Spreadsheet (.sxc) file format.
  36522. </summary>
  36523. </member>
  36524. <member name="F:Aspose.Cells.FileFormatType.OTP">
  36525. <summary>
  36526. Represents a otp file.
  36527. </summary>
  36528. <remarks>
  36529. The file format is not supported.
  36530. Only for detecting file type.
  36531. </remarks>
  36532. </member>
  36533. <member name="F:Aspose.Cells.FileFormatType.Numbers35">
  36534. <summary>
  36535. Represents Numbers 3.5 file format since 2014 by Apple Inc
  36536. </summary>
  36537. <remarks>
  36538. The file format is not supported.
  36539. Only for detecting file type.
  36540. </remarks>
  36541. </member>
  36542. <member name="T:Aspose.Cells.Drawing.FillPattern">
  36543. <summary>
  36544. Enumerates shape fill pattern types.
  36545. </summary>
  36546. </member>
  36547. <member name="F:Aspose.Cells.Drawing.FillPattern.None">
  36548. <summary>
  36549. Represents no background.
  36550. </summary>
  36551. </member>
  36552. <member name="F:Aspose.Cells.Drawing.FillPattern.Solid">
  36553. <summary>
  36554. Represents solid pattern.
  36555. </summary>
  36556. </member>
  36557. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray5">
  36558. <summary>
  36559. Represents 5% gray pattern.
  36560. </summary>
  36561. </member>
  36562. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray10">
  36563. <summary>
  36564. Represents 10% gray pattern.
  36565. </summary>
  36566. </member>
  36567. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray20">
  36568. <summary>
  36569. Represents 20% gray pattern.
  36570. </summary>
  36571. </member>
  36572. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray30">
  36573. <summary>
  36574. Represents 30% gray pattern.
  36575. </summary>
  36576. </member>
  36577. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray40">
  36578. <summary>
  36579. Represents 40% gray pattern.
  36580. </summary>
  36581. </member>
  36582. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray50">
  36583. <summary>
  36584. Represents 50% gray pattern.
  36585. </summary>
  36586. </member>
  36587. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray60">
  36588. <summary>
  36589. Represents 60% gray pattern.
  36590. </summary>
  36591. </member>
  36592. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray70">
  36593. <summary>
  36594. Represents 70% gray pattern.
  36595. </summary>
  36596. </member>
  36597. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray75">
  36598. <summary>
  36599. Represents 75% gray pattern.
  36600. </summary>
  36601. </member>
  36602. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray80">
  36603. <summary>
  36604. Represents 80% gray pattern.
  36605. </summary>
  36606. </member>
  36607. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray90">
  36608. <summary>
  36609. Represents 90% gray pattern.
  36610. </summary>
  36611. </member>
  36612. <member name="F:Aspose.Cells.Drawing.FillPattern.Gray25">
  36613. <summary>
  36614. Represents 25% gray pattern.
  36615. </summary>
  36616. </member>
  36617. <member name="F:Aspose.Cells.Drawing.FillPattern.LightDownwardDiagonal">
  36618. <summary>
  36619. Represents light downward diagonal pattern.
  36620. </summary>
  36621. </member>
  36622. <member name="F:Aspose.Cells.Drawing.FillPattern.LightUpwardDiagonal">
  36623. <summary>
  36624. Represents light upward diagonal pattern.
  36625. </summary>
  36626. </member>
  36627. <member name="F:Aspose.Cells.Drawing.FillPattern.DarkDownwardDiagonal">
  36628. <summary>
  36629. Represents dark downward diagonal pattern.
  36630. </summary>
  36631. </member>
  36632. <member name="F:Aspose.Cells.Drawing.FillPattern.DarkUpwardDiagonal">
  36633. <summary>
  36634. Represents dark upward diagonal pattern.
  36635. </summary>
  36636. </member>
  36637. <member name="F:Aspose.Cells.Drawing.FillPattern.WideDownwardDiagonal">
  36638. <summary>
  36639. Represents wide downward diagonal pattern.
  36640. </summary>
  36641. </member>
  36642. <member name="F:Aspose.Cells.Drawing.FillPattern.WideUpwardDiagonal">
  36643. <summary>
  36644. Represents wide upward diagonal pattern.
  36645. </summary>
  36646. </member>
  36647. <member name="F:Aspose.Cells.Drawing.FillPattern.LightVertical">
  36648. <summary>
  36649. Represents light vertical pattern.
  36650. </summary>
  36651. </member>
  36652. <member name="F:Aspose.Cells.Drawing.FillPattern.LightHorizontal">
  36653. <summary>
  36654. Represents light horizontal pattern.
  36655. </summary>
  36656. </member>
  36657. <member name="F:Aspose.Cells.Drawing.FillPattern.NarrowVertical">
  36658. <summary>
  36659. Represents narrow vertical pattern.
  36660. </summary>
  36661. </member>
  36662. <member name="F:Aspose.Cells.Drawing.FillPattern.NarrowHorizontal">
  36663. <summary>
  36664. Represents narrow horizontal pattern.
  36665. </summary>
  36666. </member>
  36667. <member name="F:Aspose.Cells.Drawing.FillPattern.DarkVertical">
  36668. <summary>
  36669. Represents dark vertical pattern.
  36670. </summary>
  36671. </member>
  36672. <member name="F:Aspose.Cells.Drawing.FillPattern.DarkHorizontal">
  36673. <summary>
  36674. Represents dark horizontal pattern.
  36675. </summary>
  36676. </member>
  36677. <member name="F:Aspose.Cells.Drawing.FillPattern.DashedDownwardDiagonal">
  36678. <summary>
  36679. Represents dashed downward diagonal pattern.
  36680. </summary>
  36681. </member>
  36682. <member name="F:Aspose.Cells.Drawing.FillPattern.DashedUpwardDiagonal">
  36683. <summary>
  36684. Represents dashed upward diagonal pattern.
  36685. </summary>
  36686. </member>
  36687. <member name="F:Aspose.Cells.Drawing.FillPattern.DashedVertical">
  36688. <summary>
  36689. Represents dashed vertical pattern.
  36690. </summary>
  36691. </member>
  36692. <member name="F:Aspose.Cells.Drawing.FillPattern.DashedHorizontal">
  36693. <summary>
  36694. Represents dashed horizontal pattern.
  36695. </summary>
  36696. </member>
  36697. <member name="F:Aspose.Cells.Drawing.FillPattern.SmallConfetti">
  36698. <summary>
  36699. Represents small confetti pattern.
  36700. </summary>
  36701. </member>
  36702. <member name="F:Aspose.Cells.Drawing.FillPattern.LargeConfetti">
  36703. <summary>
  36704. Represents large confetti pattern.
  36705. </summary>
  36706. </member>
  36707. <member name="F:Aspose.Cells.Drawing.FillPattern.ZigZag">
  36708. <summary>
  36709. Represents zig zag pattern.
  36710. </summary>
  36711. </member>
  36712. <member name="F:Aspose.Cells.Drawing.FillPattern.Wave">
  36713. <summary>
  36714. Represents wave pattern.
  36715. </summary>
  36716. </member>
  36717. <member name="F:Aspose.Cells.Drawing.FillPattern.DiagonalBrick">
  36718. <summary>
  36719. Represents diagonal brick pattern.
  36720. </summary>
  36721. </member>
  36722. <member name="F:Aspose.Cells.Drawing.FillPattern.HorizontalBrick">
  36723. <summary>
  36724. Represents horizontal brick pattern.
  36725. </summary>
  36726. </member>
  36727. <member name="F:Aspose.Cells.Drawing.FillPattern.Weave">
  36728. <summary>
  36729. Represents weave pattern.
  36730. </summary>
  36731. </member>
  36732. <member name="F:Aspose.Cells.Drawing.FillPattern.Plaid">
  36733. <summary>
  36734. Represents plaid pattern.
  36735. </summary>
  36736. </member>
  36737. <member name="F:Aspose.Cells.Drawing.FillPattern.Divot">
  36738. <summary>
  36739. Represents divot pattern.
  36740. </summary>
  36741. </member>
  36742. <member name="F:Aspose.Cells.Drawing.FillPattern.DottedGrid">
  36743. <summary>
  36744. Represents dotted grid pattern.
  36745. </summary>
  36746. </member>
  36747. <member name="F:Aspose.Cells.Drawing.FillPattern.DottedDiamond">
  36748. <summary>
  36749. Represents dotted diamond pattern.
  36750. </summary>
  36751. </member>
  36752. <member name="F:Aspose.Cells.Drawing.FillPattern.Shingle">
  36753. <summary>
  36754. Represents shingle pattern.
  36755. </summary>
  36756. </member>
  36757. <member name="F:Aspose.Cells.Drawing.FillPattern.Trellis">
  36758. <summary>
  36759. Represents trellis pattern.
  36760. </summary>
  36761. </member>
  36762. <member name="F:Aspose.Cells.Drawing.FillPattern.Sphere">
  36763. <summary>
  36764. Represents sphere pattern.
  36765. </summary>
  36766. </member>
  36767. <member name="F:Aspose.Cells.Drawing.FillPattern.SmallGrid">
  36768. <summary>
  36769. Represents small grid pattern.
  36770. </summary>
  36771. </member>
  36772. <member name="F:Aspose.Cells.Drawing.FillPattern.LargeGrid">
  36773. <summary>
  36774. Represents large grid pattern.
  36775. </summary>
  36776. </member>
  36777. <member name="F:Aspose.Cells.Drawing.FillPattern.SmallCheckerBoard">
  36778. <summary>
  36779. Represents small checker board pattern.
  36780. </summary>
  36781. </member>
  36782. <member name="F:Aspose.Cells.Drawing.FillPattern.LargeCheckerBoard">
  36783. <summary>
  36784. Represents large checker board pattern.
  36785. </summary>
  36786. </member>
  36787. <member name="F:Aspose.Cells.Drawing.FillPattern.OutlinedDiamond">
  36788. <summary>
  36789. Represents outlined diamond pattern.
  36790. </summary>
  36791. </member>
  36792. <member name="F:Aspose.Cells.Drawing.FillPattern.SolidDiamond">
  36793. <summary>
  36794. Represents solid diamond pattern.
  36795. </summary>
  36796. </member>
  36797. <member name="F:Aspose.Cells.Drawing.FillPattern.Unknown">
  36798. <summary>
  36799. Represents unknown pattern.
  36800. </summary>
  36801. </member>
  36802. <member name="T:Aspose.Cells.FilterColumn">
  36803. <summary>
  36804. Represents a filter for a single column. The Filter object is a member of the Filters collection
  36805. </summary>
  36806. </member>
  36807. <member name="P:Aspose.Cells.FilterColumn.IsDropdownVisible">
  36808. <summary>
  36809. Indicates whether the AutoFilter button for this column is visible.
  36810. </summary>
  36811. </member>
  36812. <member name="P:Aspose.Cells.FilterColumn.Visibledropdown">
  36813. <summary>
  36814. Indicates whether the AutoFilter button for this column is visible.
  36815. </summary>
  36816. <remarks>NOTE: This member is now obsolete.
  36817. Instead, please use FilterColumn.IsDropdownVisible to check whether the AutoFilter button for this column is visible.
  36818. This property will be removed 12 months later since September 2020.
  36819. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  36820. </member>
  36821. <member name="P:Aspose.Cells.FilterColumn.Filter">
  36822. <summary>
  36823. </summary>
  36824. </member>
  36825. <member name="P:Aspose.Cells.FilterColumn.FilterType">
  36826. <summary>
  36827. </summary>
  36828. </member>
  36829. <member name="P:Aspose.Cells.FilterColumn.FieldIndex">
  36830. <summary>
  36831. </summary>
  36832. </member>
  36833. <member name="T:Aspose.Cells.FilterOperatorType">
  36834. <summary>
  36835. Custom Filter operator type.
  36836. </summary>
  36837. </member>
  36838. <member name="F:Aspose.Cells.FilterOperatorType.LessOrEqual">
  36839. <summary>
  36840. Represents LessOrEqual operator.
  36841. </summary>
  36842. </member>
  36843. <member name="F:Aspose.Cells.FilterOperatorType.LessThan">
  36844. <summary>
  36845. Represents LessThan operator.
  36846. </summary>
  36847. </member>
  36848. <member name="F:Aspose.Cells.FilterOperatorType.Equal">
  36849. <summary>
  36850. Represents Equal operator.
  36851. </summary>
  36852. </member>
  36853. <member name="F:Aspose.Cells.FilterOperatorType.GreaterThan">
  36854. <summary>
  36855. Represents GreaterThan operator.
  36856. </summary>
  36857. </member>
  36858. <member name="F:Aspose.Cells.FilterOperatorType.NotEqual">
  36859. <summary>
  36860. Represents NotEqual operator.
  36861. </summary>
  36862. </member>
  36863. <member name="F:Aspose.Cells.FilterOperatorType.GreaterOrEqual">
  36864. <summary>
  36865. Represents GreaterOrEqual operator.
  36866. </summary>
  36867. </member>
  36868. <member name="F:Aspose.Cells.FilterOperatorType.None">
  36869. <summary>
  36870. Represents no comparison.
  36871. </summary>
  36872. </member>
  36873. <member name="F:Aspose.Cells.FilterOperatorType.BeginsWith">
  36874. <summary>
  36875. Begins with the text.
  36876. </summary>
  36877. </member>
  36878. <member name="F:Aspose.Cells.FilterOperatorType.EndsWith">
  36879. <summary>
  36880. Ends with the text.
  36881. </summary>
  36882. </member>
  36883. <member name="F:Aspose.Cells.FilterOperatorType.Contains">
  36884. <summary>
  36885. Contains the text.
  36886. </summary>
  36887. </member>
  36888. <member name="F:Aspose.Cells.FilterOperatorType.NotContains">
  36889. <summary>
  36890. Not contains the text.
  36891. </summary>
  36892. </member>
  36893. <member name="T:Aspose.Cells.FilterColumnCollection">
  36894. <summary>
  36895. A collection of Filter objects that represents all the filters in an autofiltered range.
  36896. </summary>
  36897. </member>
  36898. <member name="M:Aspose.Cells.FilterColumnCollection.RemoveAt(System.Int32)">
  36899. <summary>
  36900. </summary>
  36901. <param name="index">
  36902. </param>
  36903. </member>
  36904. <member name="M:Aspose.Cells.FilterColumnCollection.GetByIndex(System.Int32)">
  36905. <summary>
  36906. Returns a single Filter object from a collection.
  36907. </summary>
  36908. </member>
  36909. <member name="P:Aspose.Cells.FilterColumnCollection.Item(System.Int32)">
  36910. <summary>
  36911. Gets <see cref="T:Aspose.Cells.FilterColumn" /> object at the special field.
  36912. </summary>
  36913. <param name="fieldIndex">The integer offset of the field on which you want to base the filter
  36914. (from the left of the list; the leftmost field is field 0).
  36915. </param>
  36916. <returns>
  36917. Returns <see cref="T:Aspose.Cells.FilterColumn" /> object.
  36918. </returns>
  36919. </member>
  36920. <member name="T:Aspose.Cells.Charts.Floor">
  36921. <summary>
  36922. Encapsulates the object that represents the floor of a 3-D chart.
  36923. </summary>
  36924. <example>
  36925. <code>
  36926. [C#]
  36927. //Instantiate the License class
  36928. Aspose.Cells.License license = new Aspose.Cells.License();
  36929. //Pass only the name of the license file embedded in the assembly
  36930. license.SetLicense("Aspose.Cells.lic");
  36931. //Instantiate the workbook object
  36932. Workbook workbook = new Workbook();
  36933. //Get cells collection
  36934. Cells cells = workbook.Worksheets[0].Cells;
  36935. //Put values in cells
  36936. cells["A1"].PutValue(1);
  36937. cells["A2"].PutValue(2);
  36938. cells["A3"].PutValue(3);
  36939. //get charts colletion
  36940. Charts charts = workbook.Worksheets[0].Charts;
  36941. //add a new chart
  36942. int index = charts.Add(ChartType.Column3DStacked, 5, 0, 15, 5);
  36943. //get the newly added chart
  36944. Chart chart = charts[index];
  36945. //set charts nseries
  36946. chart.NSeries.Add("A1:A3", true);
  36947. //Show data labels
  36948. chart.NSeries[0].DataLabels.IsValueShown = true;
  36949. //Get chart's floor
  36950. Floor floor = chart.Floor;
  36951. //set floor's border as red
  36952. floor.Border.Color = System.Drawing.Color.Red;
  36953. //set fill format
  36954. floor.FillFormat.SetPresetColorGradient(GradientPresetType.CalmWater, GradientStyleType.DiagonalDown, 2);
  36955. //save the file
  36956. workbook.Save(@"d:\dest.xls");
  36957. [VB.NET]
  36958. 'Instantiate the License class
  36959. Dim license As New Aspose.Cells.License()
  36960. 'Pass only the name of the license file embedded in the assembly
  36961. license.SetLicense("Aspose.Cells.lic")
  36962. 'Instantiate the workbook object
  36963. Dim workbook As New Workbook()
  36964. 'Get cells collection
  36965. Dim cells As Cells = workbook.Worksheets(0).Cells
  36966. 'Put values in cells
  36967. cells("A1").PutValue(1)
  36968. cells("A2").PutValue(2)
  36969. cells("A3").PutValue(3)
  36970. 'get charts colletion
  36971. Dim charts As Charts = workbook.Worksheets(0).Charts
  36972. 'add a new chart
  36973. Dim index As Integer = charts.Add(ChartType.Column3DStacked, 5, 0, 15, 5)
  36974. 'get the newly added chart
  36975. Dim chart As Chart = charts(index)
  36976. 'set charts nseries
  36977. chart.NSeries.Add("A1:A3", True)
  36978. 'Show data labels
  36979. chart.NSeries(0).DataLabels.IsValueShown = True
  36980. 'Get chart's floor
  36981. Dim floor As Floor = chart.Floor
  36982. 'set floor's border as red
  36983. floor.Border.Color = System.Drawing.Color.Red
  36984. 'set fill format
  36985. floor.FillFormat.SetPresetColorGradient(GradientPresetType.CalmWater, GradientStyleType.DiagonalDown, 2)
  36986. 'save the file
  36987. workbook.Save("d:\dest.xls")
  36988. </code>
  36989. </example>
  36990. </member>
  36991. <member name="P:Aspose.Cells.Charts.Floor.Border">
  36992. <summary>
  36993. Gets or sets the border <see cref="T:Aspose.Cells.Drawing.Line" />.
  36994. </summary>
  36995. </member>
  36996. <member name="T:Aspose.Cells.FontUnderlineType">
  36997. <summary>
  36998. Enumerates the font underline types.
  36999. </summary>
  37000. </member>
  37001. <member name="F:Aspose.Cells.FontUnderlineType.None">
  37002. <summary>
  37003. Represents no underline.
  37004. </summary>
  37005. </member>
  37006. <member name="F:Aspose.Cells.FontUnderlineType.Single">
  37007. <summary>
  37008. Represents single underline.
  37009. </summary>
  37010. </member>
  37011. <member name="F:Aspose.Cells.FontUnderlineType.Double">
  37012. <summary>
  37013. Represents double underline.
  37014. </summary>
  37015. </member>
  37016. <member name="F:Aspose.Cells.FontUnderlineType.Accounting">
  37017. <summary>
  37018. Represents single accounting underline.
  37019. </summary>
  37020. </member>
  37021. <member name="F:Aspose.Cells.FontUnderlineType.DoubleAccounting">
  37022. <summary>
  37023. Represents double accounting underline.
  37024. </summary>
  37025. </member>
  37026. <member name="F:Aspose.Cells.FontUnderlineType.Dash">
  37027. <summary>
  37028. Represents Dashed Underline
  37029. </summary>
  37030. </member>
  37031. <member name="F:Aspose.Cells.FontUnderlineType.DashDotDotHeavy">
  37032. <summary>
  37033. Represents Thick Dash-Dot-Dot Underline
  37034. </summary>
  37035. </member>
  37036. <member name="F:Aspose.Cells.FontUnderlineType.DashDotHeavy">
  37037. <summary>
  37038. Represents Thick Dash-Dot Underline
  37039. </summary>
  37040. </member>
  37041. <member name="F:Aspose.Cells.FontUnderlineType.DashedHeavy">
  37042. <summary>
  37043. Represents Thick Dashed Underline
  37044. </summary>
  37045. </member>
  37046. <member name="F:Aspose.Cells.FontUnderlineType.DashLong">
  37047. <summary>
  37048. Represents Long Dashed Underline
  37049. </summary>
  37050. </member>
  37051. <member name="F:Aspose.Cells.FontUnderlineType.DashLongHeavy">
  37052. <summary>
  37053. Represents Thick Long Dashed Underline
  37054. </summary>
  37055. </member>
  37056. <member name="F:Aspose.Cells.FontUnderlineType.DotDash">
  37057. <summary>
  37058. Represents Dash-Dot Underline
  37059. </summary>
  37060. </member>
  37061. <member name="F:Aspose.Cells.FontUnderlineType.DotDotDash">
  37062. <summary>
  37063. Represents Dash-Dot-Dot Underline
  37064. </summary>
  37065. </member>
  37066. <member name="F:Aspose.Cells.FontUnderlineType.Dotted">
  37067. <summary>
  37068. Represents Dotted Underline
  37069. </summary>
  37070. </member>
  37071. <member name="F:Aspose.Cells.FontUnderlineType.DottedHeavy">
  37072. <summary>
  37073. Represents Thick Dotted Underline
  37074. </summary>
  37075. </member>
  37076. <member name="F:Aspose.Cells.FontUnderlineType.Heavy">
  37077. <summary>
  37078. Represents Thick Underline
  37079. </summary>
  37080. </member>
  37081. <member name="F:Aspose.Cells.FontUnderlineType.Wave">
  37082. <summary>
  37083. Represents Wave Underline
  37084. </summary>
  37085. </member>
  37086. <member name="F:Aspose.Cells.FontUnderlineType.WavyDouble">
  37087. <summary>
  37088. Represents Double Wave Underline
  37089. </summary>
  37090. </member>
  37091. <member name="F:Aspose.Cells.FontUnderlineType.WavyHeavy">
  37092. <summary>
  37093. Represents Heavy Wave Underline
  37094. </summary>
  37095. </member>
  37096. <member name="F:Aspose.Cells.FontUnderlineType.Words">
  37097. <summary>
  37098. Represents Underline Non-Space Characters Only
  37099. </summary>
  37100. </member>
  37101. <member name="T:Aspose.Cells.AboveAverage">
  37102. <summary>
  37103. Describe the AboveAverage conditional formatting rule.
  37104. This conditional formatting rule highlights cells that
  37105. are above or below the average for all values in the range.
  37106. </summary>
  37107. </member>
  37108. <member name="P:Aspose.Cells.AboveAverage.IsAboveAverage">
  37109. <summary>
  37110. Get or set the flag indicating whether the rule is an "above average" rule.
  37111. 'true' indicates 'above average'.
  37112. Default value is true.
  37113. </summary>
  37114. </member>
  37115. <member name="P:Aspose.Cells.AboveAverage.IsEqualAverage">
  37116. <summary>
  37117. Get or set the flag indicating whether the 'aboveAverage' and 'belowAverage' criteria
  37118. is inclusive of the average itself, or exclusive of that value.
  37119. 'true' indicates to include the average value in the criteria.
  37120. Default value is false.
  37121. </summary>
  37122. </member>
  37123. <member name="P:Aspose.Cells.AboveAverage.StdDev">
  37124. <summary>
  37125. Get or set the number of standard deviations to include above or below the average in the
  37126. conditional formatting rule.
  37127. The input value must between 0 and 3 (include 0 and 3).
  37128. Setting this value to 0 means stdDev is not set.
  37129. The default value is 0.
  37130. </summary>
  37131. </member>
  37132. <member name="T:Aspose.Cells.FormatConditionCollection">
  37133. <summary>
  37134. Represents conditional formatting.
  37135. The FormatConditions can contain up to three conditional formats.
  37136. </summary>
  37137. <example>
  37138. <code>
  37139. [C#]
  37140. //Adds an empty conditional formatting
  37141. int index = sheet.ConditionalFormattings.Add();
  37142. FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
  37143. //Sets the conditional format range.
  37144. CllArea ca = new CellArea();
  37145. ca.StartRow = 0;
  37146. ca.EndRow = 0;
  37147. ca.StartColumn = 0;
  37148. ca.EndColumn = 0;
  37149. fcs.AddArea(ca);
  37150. ca = new CellArea();
  37151. ca.StartRow = 1;
  37152. ca.EndRow = 1;
  37153. ca.StartColumn = 1;
  37154. ca.EndColumn = 1;
  37155. fcs.AddArea(ca);
  37156. //Adds condition.
  37157. int conditionIndex = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100");
  37158. //Adds condition.
  37159. int conditionIndex2 = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100");
  37160. //Sets the background color.
  37161. FormatCondition fc = fcs[conditionIndex];
  37162. fc.Style.BackgroundColor = Color.Red;
  37163. //Saving the Excel file
  37164. workbook.Save("C:\\output.xls");
  37165. [Visual Basic]
  37166. 'Instantiating a Workbook object
  37167. Dim workbook As Workbook = New Workbook()
  37168. Dim sheet As Worksheet = workbook.Worksheets(0)
  37169. ' Adds an empty conditional formatting
  37170. Dim index As Integer = sheet.ConditionalFormattings.Add()
  37171. Dim fcs As FormatConditionCollection = sheet.ConditionalFormattings(index)
  37172. 'Sets the conditional format range.
  37173. Dim ca As CellArea = New CellArea()
  37174. ca.StartRow = 0
  37175. ca.EndRow = 0
  37176. ca.StartColumn = 0
  37177. ca.EndColumn = 0
  37178. fcs.AddArea(ca)
  37179. ca = New CellArea()
  37180. ca.StartRow = 1
  37181. ca.EndRow = 1
  37182. ca.StartColumn = 1
  37183. ca.EndColumn = 1
  37184. fcs.AddArea(ca)
  37185. 'Adds condition.
  37186. Dim conditionIndex As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100")
  37187. 'Adds condition.
  37188. Dim conditionIndex2 As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100")
  37189. 'Sets the background color.
  37190. Dim fc As FormatCondition = fcs(conditionIndex)
  37191. fc.Style.BackgroundColor = Color.Red
  37192. 'Saving the Excel file
  37193. workbook.Save("C:\output.xls")
  37194. </code>
  37195. </example>
  37196. </member>
  37197. <member name="M:Aspose.Cells.FormatConditionCollection.Add(Aspose.Cells.CellArea,Aspose.Cells.FormatConditionType,Aspose.Cells.OperatorType,System.String,System.String)">
  37198. <summary>
  37199. Adds a formatting condition and effected cell rang to the FormatConditions
  37200. The FormatConditions can contain up to three conditional formats.
  37201. References to the other sheets are not allowed in the formulas of conditional formatting.
  37202. </summary>
  37203. <param name="cellArea">Conditional formatted cell range.</param>
  37204. <param name="type">Type of conditional formatting.It could be one of the members of FormatConditionType.</param>
  37205. <param name="operatorType">Comparison operator.It could be one of the members of OperatorType.</param>
  37206. <param name="formula1">The value or expression associated with conditional formatting.</param>
  37207. <param name="formula2">The value or expression associated with conditional formatting</param>
  37208. <returns>[0]:Formatting condition object index;[1] Effected cell rang index.</returns>
  37209. <see cref="T:Aspose.Cells.OperatorType" />
  37210. <set cref="T:Aspose.Cells.FormatConditionType" />
  37211. </member>
  37212. <member name="M:Aspose.Cells.FormatConditionCollection.AddArea(Aspose.Cells.CellArea)">
  37213. <summary>
  37214. Adds a conditional formatted cell range.
  37215. </summary>
  37216. <param name="cellArea">Conditional formatted cell range.</param>
  37217. <returns>Conditional formatted cell rang index.</returns>
  37218. </member>
  37219. <member name="M:Aspose.Cells.FormatConditionCollection.AddCondition(Aspose.Cells.FormatConditionType,Aspose.Cells.OperatorType,System.String,System.String)">
  37220. <summary>
  37221. Adds a formatting condition.
  37222. </summary>
  37223. <param name="type">
  37224. <set cref="T:Aspose.Cells.FormatConditionType" /> of conditional formatting.It could be one of the members of FormatConditionType.</param>
  37225. <param name="operatorType">The comparison <see cref="T:Aspose.Cells.OperatorType" />.It could be one of the members of OperatorType.</param>
  37226. <param name="formula1">The value or expression associated with conditional formatting.
  37227. If the input value starts with '=', then it will be taken as formula.
  37228. Otherwise it will be taken as plain value(text, number, bool).
  37229. For text value that starts with '=', user may input it as formula in format: "=\"=...\"".</param>
  37230. <param name="formula2">The value or expression associated with conditional formatting. The input format is same with formula1</param>
  37231. <returns>Formatting condition object index;</returns>
  37232. </member>
  37233. <member name="M:Aspose.Cells.FormatConditionCollection.AddCondition(Aspose.Cells.FormatConditionType)">
  37234. <summary>
  37235. Add a format condition.
  37236. </summary>
  37237. <param name="type">Format condition type.</param>
  37238. <returns>Formatting condition object index;</returns>
  37239. </member>
  37240. <member name="M:Aspose.Cells.FormatConditionCollection.GetCellArea(System.Int32)">
  37241. <summary>
  37242. Gets the conditional formatted cell range by index.
  37243. </summary>
  37244. <param name="index">the index of the conditional formatted cell range.</param>
  37245. <returns>the conditional formatted cell range</returns>
  37246. </member>
  37247. <member name="M:Aspose.Cells.FormatConditionCollection.RemoveArea(System.Int32)">
  37248. <summary>
  37249. Removes conditional formatted cell range by index.
  37250. </summary>
  37251. <param name="index">The index of the conditional formatted cell range to be removed.</param>
  37252. </member>
  37253. <member name="M:Aspose.Cells.FormatConditionCollection.RemoveArea(System.Int32,System.Int32,System.Int32,System.Int32)">
  37254. <summary>
  37255. Remove conditional formatting int the range.
  37256. </summary>
  37257. <param name="startRow">The startRow of the range.</param>
  37258. <param name="startColumn">The startColumn of the range.</param>
  37259. <param name="totalRows">The number of rows of the range.</param>
  37260. <param name="totalColumns">The number of columns of the range.</param>
  37261. <returns>
  37262. Returns TRUE, this FormatCondtionCollection should be removed.
  37263. </returns>
  37264. </member>
  37265. <member name="M:Aspose.Cells.FormatConditionCollection.RemoveCondition(System.Int32)">
  37266. <summary>
  37267. Removes the formatting condition by index.
  37268. </summary>
  37269. <param name="index">The index of the formatting condition to be removed.</param>
  37270. </member>
  37271. <member name="P:Aspose.Cells.FormatConditionCollection.Count">
  37272. <summary>
  37273. Gets the count of the conditions.
  37274. </summary>
  37275. </member>
  37276. <member name="P:Aspose.Cells.FormatConditionCollection.RangeCount">
  37277. <summary>
  37278. Gets count of conditionally formatted ranges.
  37279. </summary>
  37280. </member>
  37281. <member name="P:Aspose.Cells.FormatConditionCollection.Item(System.Int32)">
  37282. <summary>
  37283. Gets the formatting condition by index.
  37284. </summary>
  37285. <param name="index">the index of the formatting condition to return.</param>
  37286. <returns>the formatting condition </returns>
  37287. </member>
  37288. <member name="T:Aspose.Cells.FormatConditionType">
  37289. <summary>
  37290. Conditional format rule type.
  37291. </summary>
  37292. </member>
  37293. <member name="F:Aspose.Cells.FormatConditionType.CellValue">
  37294. <summary>
  37295. This conditional formatting rule compares a cell value
  37296. to a formula calculated result, using an operator.
  37297. </summary>
  37298. </member>
  37299. <member name="F:Aspose.Cells.FormatConditionType.Expression">
  37300. <summary>
  37301. This conditional formatting rule contains a formula to
  37302. evaluate. When the formula result is true, the cell is
  37303. highlighted.
  37304. </summary>
  37305. </member>
  37306. <member name="F:Aspose.Cells.FormatConditionType.ColorScale">
  37307. <summary>
  37308. This conditional formatting rule creates a gradated
  37309. color scale on the cells.
  37310. </summary>
  37311. </member>
  37312. <member name="F:Aspose.Cells.FormatConditionType.DataBar">
  37313. <summary>
  37314. This conditional formatting rule displays a gradated
  37315. data bar in the range of cells.
  37316. </summary>
  37317. </member>
  37318. <member name="F:Aspose.Cells.FormatConditionType.IconSet">
  37319. <summary>
  37320. This conditional formatting rule applies icons to cells
  37321. according to their values.
  37322. </summary>
  37323. </member>
  37324. <member name="F:Aspose.Cells.FormatConditionType.Top10">
  37325. <summary>
  37326. This conditional formatting rule highlights cells whose
  37327. values fall in the top N or bottom N bracket, as
  37328. specified.
  37329. </summary>
  37330. </member>
  37331. <member name="F:Aspose.Cells.FormatConditionType.UniqueValues">
  37332. <summary>
  37333. This conditional formatting rule highlights unique
  37334. values in the range.
  37335. </summary>
  37336. </member>
  37337. <member name="F:Aspose.Cells.FormatConditionType.DuplicateValues">
  37338. <summary>
  37339. This conditional formatting rule highlights duplicated
  37340. values.
  37341. </summary>
  37342. </member>
  37343. <member name="F:Aspose.Cells.FormatConditionType.ContainsText">
  37344. <summary>
  37345. This conditional formatting rule highlights cells
  37346. containing given text. Equivalent to using the SEARCH()
  37347. sheet function to determine whether the cell contains
  37348. the text.
  37349. </summary>
  37350. </member>
  37351. <member name="F:Aspose.Cells.FormatConditionType.NotContainsText">
  37352. <summary>
  37353. This conditional formatting rule highlights cells that
  37354. are not blank. Equivalent of using LEN(TRIM()). This
  37355. means that if the cell contains only characters that
  37356. TRIM() would remove, then it is considered blank. An
  37357. empty cell is also considered blank.
  37358. </summary>
  37359. </member>
  37360. <member name="F:Aspose.Cells.FormatConditionType.BeginsWith">
  37361. <summary>
  37362. This conditional formatting rule highlights cells in the
  37363. range that begin with the given text. Equivalent to
  37364. using the LEFT() sheet function and comparing values.
  37365. </summary>
  37366. </member>
  37367. <member name="F:Aspose.Cells.FormatConditionType.EndsWith">
  37368. <summary>
  37369. This conditional formatting rule highlights cells ending
  37370. with given text. Equivalent to using the RIGHT() sheet
  37371. function and comparing values.
  37372. </summary>
  37373. </member>
  37374. <member name="F:Aspose.Cells.FormatConditionType.ContainsBlanks">
  37375. <summary>
  37376. This conditional formatting rule highlights cells that
  37377. are completely blank. Equivalent of using LEN(TRIM()).
  37378. This means that if the cell contains only characters
  37379. that TRIM() would remove, then it is considered blank.
  37380. An empty cell is also considered blank.
  37381. </summary>
  37382. </member>
  37383. <member name="F:Aspose.Cells.FormatConditionType.NotContainsBlanks">
  37384. <summary>
  37385. This conditional formatting rule highlights cells that
  37386. are not blank. Equivalent of using LEN(TRIM()). This
  37387. means that if the cell contains only characters that
  37388. TRIM() would remove, then it is considered blank. An
  37389. empty cell is also considered blank.
  37390. </summary>
  37391. </member>
  37392. <member name="F:Aspose.Cells.FormatConditionType.ContainsErrors">
  37393. <summary>
  37394. This conditional formatting rule highlights cells with
  37395. formula errors. Equivalent to using ISERROR() sheet
  37396. function to determine if there is a formula error.
  37397. </summary>
  37398. </member>
  37399. <member name="F:Aspose.Cells.FormatConditionType.NotContainsErrors">
  37400. <summary>
  37401. This conditional formatting rule highlights cells
  37402. without formula errors. Equivalent to using ISERROR()
  37403. sheet function to determine if there is a formula error.
  37404. </summary>
  37405. </member>
  37406. <member name="F:Aspose.Cells.FormatConditionType.TimePeriod">
  37407. <summary>
  37408. This conditional formatting rule highlights cells
  37409. containing dates in the specified time period. The
  37410. underlying value of the cell is evaluated, therefore the
  37411. cell does not need to be formatted as a date to be
  37412. evaluated. For example, with a cell containing the
  37413. value 38913 the conditional format shall be applied if
  37414. the rule requires a value of 7/14/2006.
  37415. </summary>
  37416. </member>
  37417. <member name="F:Aspose.Cells.FormatConditionType.AboveAverage">
  37418. <summary>
  37419. This conditional formatting rule highlights cells that
  37420. are above or below the average for all values in the
  37421. range.
  37422. </summary>
  37423. </member>
  37424. <member name="T:Aspose.Cells.Charts.FormattingType">
  37425. <summary>
  37426. Represents the type of formatting applied to an <see cref="T:Aspose.Cells.Drawing.Area" /> object or a <see cref="T:Aspose.Cells.Drawing.Line" /> object.
  37427. </summary>
  37428. </member>
  37429. <member name="F:Aspose.Cells.Charts.FormattingType.Automatic">
  37430. <summary>
  37431. Represents automatic formatting type.
  37432. </summary>
  37433. </member>
  37434. <member name="F:Aspose.Cells.Charts.FormattingType.Custom">
  37435. <summary>
  37436. Represents custom formatting type.
  37437. </summary>
  37438. </member>
  37439. <member name="F:Aspose.Cells.Charts.FormattingType.None">
  37440. <summary>
  37441. Represents none formatting type.
  37442. </summary>
  37443. </member>
  37444. <member name="T:Aspose.Cells.Drawing.GradientColorType">
  37445. <summary>
  37446. Represents the gradient color type for the specified fill.
  37447. </summary>
  37448. </member>
  37449. <member name="F:Aspose.Cells.Drawing.GradientColorType.None">
  37450. <summary>
  37451. No gradient color
  37452. </summary>
  37453. </member>
  37454. <member name="F:Aspose.Cells.Drawing.GradientColorType.OneColor">
  37455. <summary>
  37456. One gradient color
  37457. </summary>
  37458. </member>
  37459. <member name="F:Aspose.Cells.Drawing.GradientColorType.PresetColors">
  37460. <summary>
  37461. Preset gradient colors
  37462. </summary>
  37463. </member>
  37464. <member name="F:Aspose.Cells.Drawing.GradientColorType.TwoColors">
  37465. <summary>
  37466. Two gradient colors
  37467. </summary>
  37468. </member>
  37469. <member name="T:Aspose.Cells.Drawing.GradientPresetType">
  37470. <summary>
  37471. Represents gradient preset color type.
  37472. </summary>
  37473. </member>
  37474. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Brass">
  37475. <summary>
  37476. Brass preset color
  37477. </summary>
  37478. </member>
  37479. <member name="F:Aspose.Cells.Drawing.GradientPresetType.CalmWater">
  37480. <summary>
  37481. Calm Water preset color
  37482. </summary>
  37483. </member>
  37484. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Chrome">
  37485. <summary>
  37486. Chrome preset color
  37487. </summary>
  37488. </member>
  37489. <member name="F:Aspose.Cells.Drawing.GradientPresetType.ChromeII">
  37490. <summary>
  37491. Chrome II preset color
  37492. </summary>
  37493. </member>
  37494. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Daybreak">
  37495. <summary>
  37496. Daybreak preset color
  37497. </summary>
  37498. </member>
  37499. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Desert">
  37500. <summary>
  37501. Desert preset color
  37502. </summary>
  37503. </member>
  37504. <member name="F:Aspose.Cells.Drawing.GradientPresetType.EarlySunset">
  37505. <summary>
  37506. Early Sunset preset color
  37507. </summary>
  37508. </member>
  37509. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Fire">
  37510. <summary>
  37511. Fire preset color
  37512. </summary>
  37513. </member>
  37514. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Fog">
  37515. <summary>
  37516. Fog preset color
  37517. </summary>
  37518. </member>
  37519. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Gold">
  37520. <summary>
  37521. Gold preset color
  37522. </summary>
  37523. </member>
  37524. <member name="F:Aspose.Cells.Drawing.GradientPresetType.GoldII">
  37525. <summary>
  37526. Gold II preset color
  37527. </summary>
  37528. </member>
  37529. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Horizon">
  37530. <summary>
  37531. Horizon preset color
  37532. </summary>
  37533. </member>
  37534. <member name="F:Aspose.Cells.Drawing.GradientPresetType.LateSunset">
  37535. <summary>
  37536. Late Sunset preset color
  37537. </summary>
  37538. </member>
  37539. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Mahogany">
  37540. <summary>
  37541. Mahogany preset color
  37542. </summary>
  37543. </member>
  37544. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Moss">
  37545. <summary>
  37546. Moss preset color
  37547. </summary>
  37548. </member>
  37549. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Nightfall">
  37550. <summary>
  37551. Nightfall preset color
  37552. </summary>
  37553. </member>
  37554. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Ocean">
  37555. <summary>
  37556. Ocean preset color
  37557. </summary>
  37558. </member>
  37559. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Parchment">
  37560. <summary>
  37561. Parchment preset color
  37562. </summary>
  37563. </member>
  37564. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Peacock">
  37565. <summary>
  37566. Peacock preset color
  37567. </summary>
  37568. </member>
  37569. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Rainbow">
  37570. <summary>
  37571. Rainbow preset color
  37572. </summary>
  37573. </member>
  37574. <member name="F:Aspose.Cells.Drawing.GradientPresetType.RainbowII">
  37575. <summary>
  37576. Rainbow II preset color
  37577. </summary>
  37578. </member>
  37579. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Sapphire">
  37580. <summary>
  37581. Sapphire preset color
  37582. </summary>
  37583. </member>
  37584. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Silver">
  37585. <summary>
  37586. Silver preset color
  37587. </summary>
  37588. </member>
  37589. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Wheat">
  37590. <summary>
  37591. Wheat preset color
  37592. </summary>
  37593. </member>
  37594. <member name="F:Aspose.Cells.Drawing.GradientPresetType.Unknown">
  37595. <summary>
  37596. Unknown preset color.
  37597. Only for the preset color (which is not same as any known preset color) in the template workbook.
  37598. </summary>
  37599. </member>
  37600. <member name="T:Aspose.Cells.Drawing.GradientStyleType">
  37601. <summary>
  37602. Represents gradient shading style.
  37603. </summary>
  37604. </member>
  37605. <member name="F:Aspose.Cells.Drawing.GradientStyleType.DiagonalDown">
  37606. <summary>
  37607. Diagonal down shading style
  37608. </summary>
  37609. </member>
  37610. <member name="F:Aspose.Cells.Drawing.GradientStyleType.DiagonalUp">
  37611. <summary>
  37612. Diagonal up shading style
  37613. </summary>
  37614. </member>
  37615. <member name="F:Aspose.Cells.Drawing.GradientStyleType.FromCenter">
  37616. <summary>
  37617. From center shading style
  37618. </summary>
  37619. </member>
  37620. <member name="F:Aspose.Cells.Drawing.GradientStyleType.FromCorner">
  37621. <summary>
  37622. From corner shading style
  37623. </summary>
  37624. </member>
  37625. <member name="F:Aspose.Cells.Drawing.GradientStyleType.Horizontal">
  37626. <summary>
  37627. Horizontal shading style
  37628. </summary>
  37629. </member>
  37630. <member name="F:Aspose.Cells.Drawing.GradientStyleType.Vertical">
  37631. <summary>
  37632. Vertical shading style
  37633. </summary>
  37634. </member>
  37635. <member name="F:Aspose.Cells.Drawing.GradientStyleType.Unknown">
  37636. <summary>
  37637. Unknown shading style.Only for the shading style(which is not for any member of the GradientStyleType) in the template file.
  37638. </summary>
  37639. </member>
  37640. <member name="T:Aspose.Cells.Drawing.GroupBox">
  37641. <summary>
  37642. Encapsulates the object that represents a groupbox in a spreadsheet.
  37643. </summary>
  37644. <example>
  37645. <code>
  37646. [C#]
  37647. //Instantiate a new Workbook.
  37648. Workbook excelbook = new Workbook();
  37649. //Add a group box to the first worksheet.
  37650. Aspose.Cells.GroupBox box = excelbook.Worksheets[0].Shapes.AddGroupBox(1, 0, 1, 0, 300, 250);
  37651. //Set the caption of the group box.
  37652. box.Text = "Age Groups";
  37653. box.Placement = PlacementType.FreeFloating;
  37654. //Make it 2-D box.
  37655. box.Shadow = false;
  37656. //Add a radio button.
  37657. Aspose.Cells.RadioButton radio1 = excelbook.Worksheets[0].Shapes.AddRadioButton(3, 0, 2, 0, 30, 110);
  37658. //Set its text string.
  37659. radio1.Text = "20-29";
  37660. //Set A1 cell as a linked cell for the radio button.
  37661. radio1.LinkedCell = "A1";
  37662. //Make the radio button 3-D.
  37663. radio1.Shadow = true;
  37664. //Set the foreground color of the radio button.
  37665. radio1.FillFormat.ForeColor = Color.LightGreen;
  37666. //Set the line style of the radio button.
  37667. radio1.LineFormat.Style = MsoLineStyle.ThickThin;
  37668. //Set the weight of the radio button.
  37669. radio1.LineFormat.Weight = 4;
  37670. //Set the line color of the radio button.
  37671. radio1.LineFormat.ForeColor = Color.Blue;
  37672. //Set the dash style of the radio button.
  37673. radio1.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37674. //Make the line format visible.
  37675. radio1.LineFormat.IsVisible = true;
  37676. //Make the fill format visible.
  37677. radio1.FillFormat.IsVisible = true;
  37678. //Add another radio button.
  37679. Aspose.Cells.RadioButton radio2 = excelbook.Worksheets[0].Shapes.AddRadioButton(6, 0, 2, 0, 30, 110);
  37680. //Set its text string.
  37681. radio2.Text = "30-39";
  37682. //Set A1 cell as a linked cell for the radio button.
  37683. radio2.LinkedCell = "A1";
  37684. //Make the radio button 3-D.
  37685. radio2.Shadow = true;
  37686. //Set the foreground color of the radio button.
  37687. radio2.FillFormat.ForeColor = Color.LightGreen;
  37688. //Set the line style of the radio button.
  37689. radio2.LineFormat.Style = MsoLineStyle.ThickThin;
  37690. //Set the weight of the radio button.
  37691. radio2.LineFormat.Weight = 4;
  37692. //Set the line color of the radio button.
  37693. radio2.LineFormat.ForeColor = Color.Blue;
  37694. //Set the dash style of the radio button.
  37695. radio2.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37696. //Make the line format visible.
  37697. radio2.LineFormat.IsVisible = true;
  37698. //Make the fill format visible.
  37699. radio2.FillFormat.IsVisible = true;
  37700. //Add another radio button.
  37701. Aspose.Cells.RadioButton radio3 = excelbook.Worksheets[0].Shapes.AddRadioButton(9, 0, 2, 0, 30, 110);
  37702. //Set its text string.
  37703. radio3.Text = "40-49";
  37704. //Set A1 cell as a linked cell for the radio button.
  37705. radio3.LinkedCell = "A1";
  37706. //Make the radio button 3-D.
  37707. radio3.Shadow = true;
  37708. //Set the foreground color of the radio button.
  37709. radio3.FillFormat.ForeColor = Color.LightGreen;
  37710. //Set the line style of the radio button.
  37711. radio3.LineFormat.Style = MsoLineStyle.ThickThin;
  37712. //Set the weight of the radio button.
  37713. radio3.LineFormat.Weight = 4;
  37714. //Set the line color of the radio button.
  37715. radio3.LineFormat.ForeColor = Color.Blue;
  37716. //Set the dash style of the radio button.
  37717. radio3.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37718. //Make the line format visible.
  37719. radio3.LineFormat.IsVisible = true;
  37720. //Make the fill format visible.
  37721. radio3.FillFormat.IsVisible = true;
  37722. //Get the shapes.
  37723. Aspose.Cells.Shape[] shapeobjects = new Aspose.Cells.Shape[] { box, radio1, radio2, radio3 };
  37724. //Group the shapes.
  37725. Aspose.Cells.GroupShape group = excelbook.Worksheets[0].Shapes.Group(shapeobjects);
  37726. //Save the excel file.
  37727. excelbook.Save("d:\\test\\groupshapes.xls");
  37728. [VB.NET]
  37729. 'Instantiate a new Workbook.
  37730. Dim excelbook As Workbook = New Workbook()
  37731. 'Add a group box to the first worksheet.
  37732. Dim box As Aspose.Cells.GroupBox = excelbook.Worksheets(0).Shapes.AddGroupBox(1, 0, 1, 0, 300, 250)
  37733. 'Set the caption of the group box.
  37734. box.Text = "Age Groups"
  37735. box.Placement = PlacementType.FreeFloating
  37736. 'Make it 2-D box.
  37737. box.Shadow = False
  37738. 'Add a radio button.
  37739. Dim radio1 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(3, 0, 2, 0, 30, 110)
  37740. 'Set its text string.
  37741. radio1.Text = "20-29"
  37742. 'Set A1 cell as a linked cell for the radio button.
  37743. radio1.LinkedCell = "A1"
  37744. 'Make the radio button 3-D.
  37745. radio1.Shadow = True
  37746. 'Set the foreground color of the radio button.
  37747. radio1.FillFormat.ForeColor = Color.LightGreen
  37748. 'Set the line style of the radio button.
  37749. radio1.LineFormat.Style = MsoLineStyle.ThickThin
  37750. 'Set the weight of the radio button.
  37751. radio1.LineFormat.Weight = 4
  37752. 'Set the line color of the radio button.
  37753. radio1.LineFormat.ForeColor = Color.Blue
  37754. 'Set the dash style of the radio button.
  37755. radio1.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37756. 'Make the line format visible.
  37757. radio1.LineFormat.IsVisible = True
  37758. 'Make the fill format visible.
  37759. radio1.FillFormat.IsVisible = True
  37760. 'Add another radio button.
  37761. Dim radio2 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(6, 0, 2, 0, 30, 110)
  37762. 'Set its text string.
  37763. radio2.Text = "30-39"
  37764. 'Set A1 cell as a linked cell for the radio button.
  37765. radio2.LinkedCell = "A1"
  37766. 'Make the radio button 3-D.
  37767. radio2.Shadow = True
  37768. 'Set the foreground color of the radio button.
  37769. radio2.FillFormat.ForeColor = Color.LightGreen
  37770. 'Set the line style of the radio button.
  37771. radio2.LineFormat.Style = MsoLineStyle.ThickThin
  37772. 'Set the weight of the radio button.
  37773. radio2.LineFormat.Weight = 4
  37774. 'Set the line color of the radio button.
  37775. radio2.LineFormat.ForeColor = Color.Blue
  37776. 'Set the dash style of the radio button.
  37777. radio2.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37778. 'Make the line format visible.
  37779. radio2.LineFormat.IsVisible = True
  37780. 'Make the fill format visible.
  37781. radio2.FillFormat.IsVisible = True
  37782. 'Add another radio button.
  37783. Dim radio3 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(9, 0, 2, 0, 30, 110)
  37784. 'Set its text string.
  37785. radio3.Text = "40-49"
  37786. 'Set A1 cell as a linked cell for the radio button.
  37787. radio3.LinkedCell = "A1"
  37788. 'Make the radio button 3-D.
  37789. radio3.Shadow = True
  37790. 'Set the foreground color of the radio button.
  37791. radio3.FillFormat.ForeColor = Color.LightGreen
  37792. 'Set the line style of the radio button.
  37793. radio3.LineFormat.Style = MsoLineStyle.ThickThin
  37794. 'Set the weight of the radio button.
  37795. radio3.LineFormat.Weight = 4
  37796. 'Set the line color of the radio button.
  37797. radio3.LineFormat.ForeColor = Color.Blue
  37798. 'Set the dash style of the radio button.
  37799. radio3.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37800. 'Make the line format visible.
  37801. radio3.LineFormat.IsVisible = True
  37802. 'Make the fill format visible.
  37803. radio3.FillFormat.IsVisible = True
  37804. 'Get the shapes.
  37805. Dim shapeobjects() As Aspose.Cells.Shape = New Aspose.Cells.Shape() {box, radio1, radio2, radio3}
  37806. 'Group the shapes.
  37807. Dim group As Aspose.Cells.GroupShape = excelbook.Worksheets(0).Shapes.Group(shapeobjects)
  37808. 'Save the excel file.
  37809. excelbook.Save("d:\test\groupshapes.xls")
  37810. </code>
  37811. </example>
  37812. </member>
  37813. <member name="P:Aspose.Cells.Drawing.GroupBox.Shadow">
  37814. <summary>
  37815. Indicates whether the groupbox has shadow.
  37816. </summary>
  37817. </member>
  37818. <member name="T:Aspose.Cells.Drawing.GroupShape">
  37819. <summary>
  37820. Represents the group shape which contains the individual shapes.
  37821. </summary>
  37822. <example>
  37823. <code>
  37824. [C#]
  37825. //Instantiate a new Workbook.
  37826. Workbook excelbook = new Workbook();
  37827. //Add a group box to the first worksheet.
  37828. Aspose.Cells.GroupBox box = excelbook.Worksheets[0].Shapes.AddGroupBox(1, 0, 1, 0, 300, 250);
  37829. //Set the caption of the group box.
  37830. box.Text = "Age Groups";
  37831. box.Placement = PlacementType.FreeFloating;
  37832. //Make it 2-D box.
  37833. box.Shadow = false;
  37834. //Add a radio button.
  37835. Aspose.Cells.RadioButton radio1 = excelbook.Worksheets[0].Shapes.AddRadioButton(3, 0, 2, 0, 30, 110);
  37836. //Set its text string.
  37837. radio1.Text = "20-29";
  37838. //Set A1 cell as a linked cell for the radio button.
  37839. radio1.LinkedCell = "A1";
  37840. //Make the radio button 3-D.
  37841. radio1.Shadow = true;
  37842. //Set the foreground color of the radio button.
  37843. radio1.FillFormat.ForeColor = Color.LightGreen;
  37844. //Set the line style of the radio button.
  37845. radio1.LineFormat.Style = MsoLineStyle.ThickThin;
  37846. //Set the weight of the radio button.
  37847. radio1.LineFormat.Weight = 4;
  37848. //Set the line color of the radio button.
  37849. radio1.LineFormat.ForeColor = Color.Blue;
  37850. //Set the dash style of the radio button.
  37851. radio1.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37852. //Make the line format visible.
  37853. radio1.LineFormat.IsVisible = true;
  37854. //Make the fill format visible.
  37855. radio1.FillFormat.IsVisible = true;
  37856. //Add another radio button.
  37857. Aspose.Cells.RadioButton radio2 = excelbook.Worksheets[0].Shapes.AddRadioButton(6, 0, 2, 0, 30, 110);
  37858. //Set its text string.
  37859. radio2.Text = "30-39";
  37860. //Set A1 cell as a linked cell for the radio button.
  37861. radio2.LinkedCell = "A1";
  37862. //Make the radio button 3-D.
  37863. radio2.Shadow = true;
  37864. //Set the foreground color of the radio button.
  37865. radio2.FillFormat.ForeColor = Color.LightGreen;
  37866. //Set the line style of the radio button.
  37867. radio2.LineFormat.Style = MsoLineStyle.ThickThin;
  37868. //Set the weight of the radio button.
  37869. radio2.LineFormat.Weight = 4;
  37870. //Set the line color of the radio button.
  37871. radio2.LineFormat.ForeColor = Color.Blue;
  37872. //Set the dash style of the radio button.
  37873. radio2.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37874. //Make the line format visible.
  37875. radio2.LineFormat.IsVisible = true;
  37876. //Make the fill format visible.
  37877. radio2.FillFormat.IsVisible = true;
  37878. //Add another radio button.
  37879. Aspose.Cells.RadioButton radio3 = excelbook.Worksheets[0].Shapes.AddRadioButton(9, 0, 2, 0, 30, 110);
  37880. //Set its text string.
  37881. radio3.Text = "40-49";
  37882. //Set A1 cell as a linked cell for the radio button.
  37883. radio3.LinkedCell = "A1";
  37884. //Make the radio button 3-D.
  37885. radio3.Shadow = true;
  37886. //Set the foreground color of the radio button.
  37887. radio3.FillFormat.ForeColor = Color.LightGreen;
  37888. //Set the line style of the radio button.
  37889. radio3.LineFormat.Style = MsoLineStyle.ThickThin;
  37890. //Set the weight of the radio button.
  37891. radio3.LineFormat.Weight = 4;
  37892. //Set the line color of the radio button.
  37893. radio3.LineFormat.ForeColor = Color.Blue;
  37894. //Set the dash style of the radio button.
  37895. radio3.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  37896. //Make the line format visible.
  37897. radio3.LineFormat.IsVisible = true;
  37898. //Make the fill format visible.
  37899. radio3.FillFormat.IsVisible = true;
  37900. //Get the shapes.
  37901. Aspose.Cells.Shape[] shapeobjects = new Aspose.Cells.Shape[] { box, radio1, radio2, radio3 };
  37902. //Group the shapes.
  37903. Aspose.Cells.GroupShape group = excelbook.Worksheets[0].Shapes.Group(shapeobjects);
  37904. //Save the excel file.
  37905. excelbook.Save("d:\\test\\groupshapes.xls");
  37906. [VB.NET]
  37907. 'Instantiate a new Workbook.
  37908. Dim excelbook As Workbook = New Workbook()
  37909. 'Add a group box to the first worksheet.
  37910. Dim box As Aspose.Cells.GroupBox = excelbook.Worksheets(0).Shapes.AddGroupBox(1, 0, 1, 0, 300, 250)
  37911. 'Set the caption of the group box.
  37912. box.Text = "Age Groups"
  37913. box.Placement = PlacementType.FreeFloating
  37914. 'Make it 2-D box.
  37915. box.Shadow = False
  37916. 'Add a radio button.
  37917. Dim radio1 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(3, 0, 2, 0, 30, 110)
  37918. 'Set its text string.
  37919. radio1.Text = "20-29"
  37920. 'Set A1 cell as a linked cell for the radio button.
  37921. radio1.LinkedCell = "A1"
  37922. 'Make the radio button 3-D.
  37923. radio1.Shadow = True
  37924. 'Set the foreground color of the radio button.
  37925. radio1.FillFormat.ForeColor = Color.LightGreen
  37926. 'Set the line style of the radio button.
  37927. radio1.LineFormat.Style = MsoLineStyle.ThickThin
  37928. 'Set the weight of the radio button.
  37929. radio1.LineFormat.Weight = 4
  37930. 'Set the line color of the radio button.
  37931. radio1.LineFormat.ForeColor = Color.Blue
  37932. 'Set the dash style of the radio button.
  37933. radio1.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37934. 'Make the line format visible.
  37935. radio1.LineFormat.IsVisible = True
  37936. 'Make the fill format visible.
  37937. radio1.FillFormat.IsVisible = True
  37938. 'Add another radio button.
  37939. Dim radio2 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(6, 0, 2, 0, 30, 110)
  37940. 'Set its text string.
  37941. radio2.Text = "30-39"
  37942. 'Set A1 cell as a linked cell for the radio button.
  37943. radio2.LinkedCell = "A1"
  37944. 'Make the radio button 3-D.
  37945. radio2.Shadow = True
  37946. 'Set the foreground color of the radio button.
  37947. radio2.FillFormat.ForeColor = Color.LightGreen
  37948. 'Set the line style of the radio button.
  37949. radio2.LineFormat.Style = MsoLineStyle.ThickThin
  37950. 'Set the weight of the radio button.
  37951. radio2.LineFormat.Weight = 4
  37952. 'Set the line color of the radio button.
  37953. radio2.LineFormat.ForeColor = Color.Blue
  37954. 'Set the dash style of the radio button.
  37955. radio2.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37956. 'Make the line format visible.
  37957. radio2.LineFormat.IsVisible = True
  37958. 'Make the fill format visible.
  37959. radio2.FillFormat.IsVisible = True
  37960. 'Add another radio button.
  37961. Dim radio3 As Aspose.Cells.RadioButton = excelbook.Worksheets(0).Shapes.AddRadioButton(9, 0, 2, 0, 30, 110)
  37962. 'Set its text string.
  37963. radio3.Text = "40-49"
  37964. 'Set A1 cell as a linked cell for the radio button.
  37965. radio3.LinkedCell = "A1"
  37966. 'Make the radio button 3-D.
  37967. radio3.Shadow = True
  37968. 'Set the foreground color of the radio button.
  37969. radio3.FillFormat.ForeColor = Color.LightGreen
  37970. 'Set the line style of the radio button.
  37971. radio3.LineFormat.Style = MsoLineStyle.ThickThin
  37972. 'Set the weight of the radio button.
  37973. radio3.LineFormat.Weight = 4
  37974. 'Set the line color of the radio button.
  37975. radio3.LineFormat.ForeColor = Color.Blue
  37976. 'Set the dash style of the radio button.
  37977. radio3.LineFormat.DashStyle = MsoLineDashStyle.Solid
  37978. 'Make the line format visible.
  37979. radio3.LineFormat.IsVisible = True
  37980. 'Make the fill format visible.
  37981. radio3.FillFormat.IsVisible = True
  37982. 'Get the shapes.
  37983. Dim shapeobjects() As Aspose.Cells.Shape = New Aspose.Cells.Shape() {box, radio1, radio2, radio3}
  37984. 'Group the shapes.
  37985. Dim group As Aspose.Cells.GroupShape = excelbook.Worksheets(0).Shapes.Group(shapeobjects)
  37986. 'Save the excel file.
  37987. excelbook.Save("d:\test\groupshapes.xls")
  37988. </code>
  37989. </example>
  37990. </member>
  37991. <member name="M:Aspose.Cells.Drawing.GroupShape.Ungroup">
  37992. <summary>
  37993. Ungroups the shape items.
  37994. </summary>
  37995. <remarks>If the group shape is grouped by another group shape,nothing will be done.</remarks>
  37996. </member>
  37997. <member name="M:Aspose.Cells.Drawing.GroupShape.GetGroupedShapes">
  37998. <summary>
  37999. Gets the shapes grouped by this shape.
  38000. </summary>
  38001. </member>
  38002. <member name="P:Aspose.Cells.Drawing.GroupShape.Item(System.Int32)">
  38003. <summary>
  38004. Gets the child shape by index.
  38005. </summary>
  38006. <param name="index">the child shape index.</param>
  38007. <returns>return the child shape.</returns>
  38008. </member>
  38009. <member name="T:Aspose.Cells.CellsHelper">
  38010. <summary>
  38011. Provides helper functions.
  38012. </summary>
  38013. </member>
  38014. <member name="M:Aspose.Cells.CellsHelper.GetTextWidth(System.String,Aspose.Cells.Font,System.Double)">
  38015. <summary>
  38016. Get width of text in unit of points.
  38017. </summary>
  38018. <param name="text">The text.</param>
  38019. <param name="font">The font of the text.</param>
  38020. <param name="scaling">The scaling of text.</param>
  38021. <returns>
  38022. </returns>
  38023. </member>
  38024. <member name="M:Aspose.Cells.CellsHelper.GetVersion">
  38025. <summary>
  38026. Get the release version.
  38027. </summary>
  38028. <returns>The release version.</returns>
  38029. </member>
  38030. <member name="M:Aspose.Cells.CellsHelper.IsProtectedByRMS(System.String)">
  38031. <summary>
  38032. Gets whether the file is protected by Microsoft Rights Management Server.
  38033. </summary>
  38034. <param name="fileName">The file name.</param>
  38035. <returns>
  38036. </returns>
  38037. <remarks>This member is now obsolete. Instead,
  38038. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.String)" /> property.
  38039. This property will be removed 12 months later since December 2013.
  38040. Aspose apologizes for any inconvenience you may have experienced.
  38041. </remarks>
  38042. </member>
  38043. <member name="M:Aspose.Cells.CellsHelper.IsProtectedByRMS(System.IO.Stream)">
  38044. <summary>
  38045. Gets whether the file is protected by Microsoft Rights Management Server.
  38046. </summary>
  38047. <param name="stream">The file stream.</param>
  38048. <returns>
  38049. </returns>
  38050. <remarks>This member is now obsolete. Instead,
  38051. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.IO.Stream)" /> property.
  38052. This property will be removed 12 months later since December 2013.
  38053. Aspose apologizes for any inconvenience you may have experienced.
  38054. </remarks>
  38055. </member>
  38056. <member name="M:Aspose.Cells.CellsHelper.CellNameToIndex(System.String,System.Int32@,System.Int32@)">
  38057. <summary>
  38058. Gets the cell row and column indexes according to its name.
  38059. </summary>
  38060. <param name="cellName">Name of cell.</param>
  38061. <param name="row">Output row index</param>
  38062. <param name="column">Output column index</param>
  38063. </member>
  38064. <member name="M:Aspose.Cells.CellsHelper.CellIndexToName(System.Int32,System.Int32)">
  38065. <summary>
  38066. Gets cell name according to its row and column indexes.
  38067. </summary>
  38068. <param name="row">Row index.</param>
  38069. <param name="column">Column index.</param>
  38070. <returns>Name of cell.</returns>
  38071. </member>
  38072. <member name="M:Aspose.Cells.CellsHelper.ColumnIndexToName(System.Int32)">
  38073. <summary>
  38074. Gets column name according to column index.
  38075. </summary>
  38076. <param name="column">Column index.</param>
  38077. <returns>Name of column.</returns>
  38078. </member>
  38079. <member name="M:Aspose.Cells.CellsHelper.ColumnNameToIndex(System.String)">
  38080. <summary>
  38081. Gets column index according to column name.
  38082. </summary>
  38083. <param name="columnName">Column name.</param>
  38084. <returns>Column index.</returns>
  38085. </member>
  38086. <member name="M:Aspose.Cells.CellsHelper.RowIndexToName(System.Int32)">
  38087. <summary>
  38088. Gets row name according to row index.
  38089. </summary>
  38090. <param name="row">Row index.</param>
  38091. <returns>Name of row.</returns>
  38092. </member>
  38093. <member name="M:Aspose.Cells.CellsHelper.RowNameToIndex(System.String)">
  38094. <summary>
  38095. Gets row index according to row name.
  38096. </summary>
  38097. <param name="rowName">Row name.</param>
  38098. <returns>Row index.</returns>
  38099. </member>
  38100. <member name="M:Aspose.Cells.CellsHelper.ConvertR1C1FormulaToA1(System.String,System.Int32,System.Int32)">
  38101. <summary>
  38102. Converts the r1c1 formula of the cell to A1 formula.
  38103. </summary>
  38104. <param name="r1c1Formula">The r1c1 formula.</param>
  38105. <param name="row">The row index of the cell.</param>
  38106. <param name="column">The column index of the cell.</param>
  38107. <returns>The A1 formula.</returns>
  38108. </member>
  38109. <member name="M:Aspose.Cells.CellsHelper.ConvertA1FormulaToR1C1(System.String,System.Int32,System.Int32)">
  38110. <summary>
  38111. Converts A1 formula of the cell to the r1c1 formula.
  38112. </summary>
  38113. <param name="formula">The A1 formula.</param>
  38114. <param name="row">The row index of the cell.</param>
  38115. <param name="column">The column index of the cell.</param>
  38116. <returns>The R1C1 formula.</returns>
  38117. </member>
  38118. <member name="M:Aspose.Cells.CellsHelper.GetDateTimeFromDouble(System.Double,System.Boolean)">
  38119. <summary>
  38120. Convert the double value to the date time value.
  38121. </summary>
  38122. <param name="doubleValue">The double value.</param>
  38123. <param name="date1904">Date 1904 system.</param>
  38124. <returns>
  38125. </returns>
  38126. </member>
  38127. <member name="M:Aspose.Cells.CellsHelper.GetDoubleFromDateTime(System.DateTime,System.Boolean)">
  38128. <summary>
  38129. Convert the date time to double value.
  38130. </summary>
  38131. <param name="dateTime">The date time.</param>
  38132. <param name="date1904">Date 1904 system.</param>
  38133. <returns>
  38134. </returns>
  38135. </member>
  38136. <member name="M:Aspose.Cells.CellsHelper.DetectLoadFormat(System.String)">
  38137. <summary>
  38138. Detects the file load format.
  38139. </summary>
  38140. <param name="fileName">The file name.</param>
  38141. <returns>The load format.</returns>
  38142. <remarks>This member is now obsolete. Instead,
  38143. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.String)" /> property.
  38144. This property will be removed 12 months later since December 2013.
  38145. Aspose apologizes for any inconvenience you may have experienced.
  38146. </remarks>
  38147. </member>
  38148. <member name="M:Aspose.Cells.CellsHelper.DetectLoadFormat(System.IO.Stream)">
  38149. <summary>
  38150. Detects the file load format.
  38151. </summary>
  38152. <param name="stream">The stream.</param>
  38153. <returns>
  38154. </returns>
  38155. <remarks>This member is now obsolete. Instead,
  38156. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.IO.Stream)" /> property.
  38157. This property will be removed 12 months later since December 2013.
  38158. Aspose apologizes for any inconvenience you may have experienced.
  38159. </remarks>
  38160. </member>
  38161. <member name="M:Aspose.Cells.CellsHelper.DetectFileFormat(System.String)">
  38162. <summary>
  38163. Detects the file format type.
  38164. </summary>
  38165. <param name="fileName">the file name</param>
  38166. <returns>The file format type.</returns>
  38167. <remarks>This member is now obsolete. Instead,
  38168. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.String)" /> property.
  38169. This property will be removed 12 months later since December 2013.
  38170. Aspose apologizes for any inconvenience you may have experienced.
  38171. </remarks>
  38172. </member>
  38173. <member name="M:Aspose.Cells.CellsHelper.DetectFileFormat(System.IO.Stream)">
  38174. <summary>
  38175. Detects the format type of the file stored in the stream.
  38176. </summary>
  38177. <param name="stream">The stream</param>
  38178. <returns>The file format type.</returns>
  38179. <remarks>This member is now obsolete. Instead,
  38180. please use <see cref="M:Aspose.Cells.FileFormatUtil.DetectFileFormat(System.IO.Stream)" /> property.
  38181. This property will be removed 12 months later since December 2013.
  38182. Aspose apologizes for any inconvenience you may have experienced.
  38183. </remarks>
  38184. </member>
  38185. <member name="M:Aspose.Cells.CellsHelper.GetUsedColors(Aspose.Cells.Workbook)">
  38186. <summary>
  38187. Gets all used colors in the workbook.
  38188. </summary>
  38189. <param name="workbook">The workbook object.</param>
  38190. <returns>The used colors.</returns>
  38191. </member>
  38192. <member name="M:Aspose.Cells.CellsHelper.AddAddInFunction(System.String,System.Int32,System.Int32,Aspose.Cells.ParameterType[],Aspose.Cells.ParameterType)">
  38193. <summary>
  38194. Add addin function.
  38195. </summary>
  38196. <param name="function">The function name.</param>
  38197. <param name="minCountOfParameters">Minimum number of parameters this function requires</param>
  38198. <param name="maxCountOfParameters">Maximum number of parameters this function allows.</param>
  38199. <param name="paramersType">The excepted parameters type of the function</param>
  38200. <param name="functionValueType">The function value type.</param>
  38201. </member>
  38202. <member name="M:Aspose.Cells.CellsHelper.MergeFiles(System.String[],System.String,System.String)">
  38203. <summary>
  38204. Merges some large xls files to a xls file.
  38205. </summary>
  38206. <param name="files">The files.</param>
  38207. <param name="cachedFile">The cached file.</param>
  38208. <param name="destFile">The dest file.</param>
  38209. <remarks>
  38210. This method only supports merging data, style and formulas to the new file.
  38211. The cached file is used to store some temporary data.
  38212. </remarks>
  38213. </member>
  38214. <member name="M:Aspose.Cells.CellsHelper.CreateSafeSheetName(System.String)">
  38215. <summary>
  38216. Checks given sheet name and create a valid one when needed.
  38217. If given sheet name conforms to the rules of excel sheet name, then return it.
  38218. Otherwise string will be truncated if length exceeds the limit
  38219. and invalid characters will be replaced with ' ', then return the rebuilt string value.
  38220. </summary>
  38221. <param name="nameProposal">sheet name to be used</param>
  38222. <returns>
  38223. </returns>
  38224. </member>
  38225. <member name="M:Aspose.Cells.CellsHelper.CreateSafeSheetName(System.String,System.Char)">
  38226. <summary>
  38227. Checks given sheet name and create a valid one when needed.
  38228. If given sheet name conforms to the rules of excel sheet name, then return it.
  38229. Otherwise string will be truncated if length exceeds the limit
  38230. and invalid characters will be replaced with given character, then return the rebuilt string value.
  38231. </summary>
  38232. <param name="nameProposal">sheet name to be used</param>
  38233. <param name="replaceChar">character which will be used to replace invalid characters in given sheet name</param>
  38234. <returns>
  38235. </returns>
  38236. </member>
  38237. <member name="P:Aspose.Cells.CellsHelper.SignificantDigits">
  38238. <summary>
  38239. Gets and sets the number of significant digits.
  38240. The default value is 17.
  38241. </summary>
  38242. <remarks>
  38243. Only could be 15 or 17 now.
  38244. </remarks>
  38245. </member>
  38246. <member name="P:Aspose.Cells.CellsHelper.DPI">
  38247. <summary>
  38248. Gets the DPI of the machine.
  38249. </summary>
  38250. <remarks>
  38251. </remarks>
  38252. </member>
  38253. <member name="P:Aspose.Cells.CellsHelper.FontDir">
  38254. <summary>
  38255. When generating PDF/XPS, specific font file directory can be set in the property.
  38256. If it is not set , using %WINDOWS%\fonts by default.
  38257. </summary>
  38258. <remarks>This member is now obsolete. Instead,
  38259. please use <see cref="M:Aspose.Cells.FontConfigs.SetFontFolder(System.String,System.Boolean)" /> method with folder recursive to false.
  38260. This property will be removed 12 months later since July 2016.
  38261. Aspose apologizes for any inconvenience you may have experienced.
  38262. </remarks>
  38263. </member>
  38264. <member name="P:Aspose.Cells.CellsHelper.FontDirs">
  38265. <summary>
  38266. When generating PDF/XPS, specific font file directories can be set in the property.
  38267. If it is not set , using %WINDOWS%\fonts by default.
  38268. </summary>
  38269. <remarks>This member is now obsolete. Instead,
  38270. please use <see cref="M:Aspose.Cells.FontConfigs.SetFontFolders(System.String[],System.Boolean)" /> method with folder recursive to false.
  38271. This property will be removed 12 months later since July 2016.
  38272. Aspose apologizes for any inconvenience you may have experienced.
  38273. </remarks>
  38274. </member>
  38275. <member name="P:Aspose.Cells.CellsHelper.FontFiles">
  38276. <summary>
  38277. When generating PDF/XPS, specific font files can be set in the property.
  38278. Such as "d:\myfonts\myArial.ttf"
  38279. </summary>
  38280. <remarks>This member is now obsolete. Instead,
  38281. please use <see cref="M:Aspose.Cells.FontConfigs.SetFontSources(Aspose.Cells.FontSourceBase[])" /> method.
  38282. This property will be removed 12 months later since July 2016.
  38283. Aspose apologizes for any inconvenience you may have experienced.
  38284. </remarks>
  38285. </member>
  38286. <member name="P:Aspose.Cells.CellsHelper.StartupPath">
  38287. <summary>
  38288. Gets or sets the startup path, which is referred to by some external formula references.
  38289. </summary>
  38290. </member>
  38291. <member name="P:Aspose.Cells.CellsHelper.AltStartPath">
  38292. <summary>
  38293. Gets or sets the alternate startup path, which is referred to by some external formula references.
  38294. </summary>
  38295. </member>
  38296. <member name="P:Aspose.Cells.CellsHelper.LibraryPath">
  38297. <summary>
  38298. Gets or sets the library path which is referred to by some external formula references.
  38299. </summary>
  38300. </member>
  38301. <member name="P:Aspose.Cells.CellsHelper.CustomImplementationFactory">
  38302. <summary>
  38303. Gets or sets the factory for creating instances with special implementation.
  38304. </summary>
  38305. </member>
  38306. <member name="T:Aspose.Cells.HorizontalPageBreak">
  38307. <summary>
  38308. Encapsulates the object that represents a horizontal page break.
  38309. </summary>
  38310. <example>
  38311. <code>
  38312. [C#]
  38313. //Instantiating a Workbook object
  38314. Workbook workbook = new Workbook();
  38315. //Obtaining the reference of the newly added worksheet by passing its sheet index
  38316. Worksheet worksheet = workbook.Worksheets[0];
  38317. //Add a page break at cell Y30
  38318. int Index = worksheet.HorizontalPageBreaks.Add("Y30");
  38319. //get the newly added horizontal page break
  38320. HorizontalPageBreak hPageBreak = worksheet.HorizontalPageBreaks[Index];
  38321. [VB.NET]
  38322. 'Instantiating a Workbook object
  38323. Dim workbook As New Workbook()
  38324. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  38325. Dim worksheet As Worksheet = workbook.Worksheets(0)
  38326. 'Add a page break at cell Y30
  38327. Dim Index As Integer = worksheet.HorizontalPageBreaks.Add("Y30")
  38328. 'get the newly added horizontal page break
  38329. Dim hPageBreak As HorizontalPageBreak = worksheet.HorizontalPageBreaks(Index)
  38330. </code>
  38331. </example>
  38332. </member>
  38333. <member name="P:Aspose.Cells.HorizontalPageBreak.StartColumn">
  38334. <summary>
  38335. Gets the start column index of this horizontal page break.
  38336. </summary>
  38337. </member>
  38338. <member name="P:Aspose.Cells.HorizontalPageBreak.EndColumn">
  38339. <summary>
  38340. Gets the end column index of this horizontal page break.
  38341. </summary>
  38342. </member>
  38343. <member name="P:Aspose.Cells.HorizontalPageBreak.Row">
  38344. <summary>
  38345. Gets the zero based row index.
  38346. </summary>
  38347. </member>
  38348. <member name="T:Aspose.Cells.HorizontalPageBreakCollection">
  38349. <summary>
  38350. Encapsulates a collection of <see cref="T:Aspose.Cells.HorizontalPageBreak" /> objects.
  38351. </summary>
  38352. <example>
  38353. <code>
  38354. [C#]
  38355. //Add a pagebreak at G5
  38356. excel.Worksheets[0].HorizontalPageBreaks.Add("G5");
  38357. excel.Worksheets[0].VerticalPageBreaks.Add("G5");
  38358. [VB]
  38359. 'Add a pagebreak at G5
  38360. excel.Worksheets(0).HorizontalPageBreaks.Add("G5")
  38361. excel.Worksheets(0).VerticalPageBreaks.Add("G5")
  38362. </code>
  38363. </example>
  38364. </member>
  38365. <member name="M:Aspose.Cells.HorizontalPageBreakCollection.Add(System.Int32,System.Int32,System.Int32)">
  38366. <summary>
  38367. Adds a horizontal page break to the collection.
  38368. </summary>
  38369. <param name="row">Row index, zero based.</param>
  38370. <param name="startColumn">Start column index, zero based.</param>
  38371. <param name="endColumn">End column index, zero based.</param>
  38372. <returns>
  38373. <see cref="T:Aspose.Cells.HorizontalPageBreak" /> object index.</returns>
  38374. <remarks>This method is used to add a horizontal pagebreak within a print area.</remarks>
  38375. </member>
  38376. <member name="M:Aspose.Cells.HorizontalPageBreakCollection.Add(System.Int32)">
  38377. <summary>
  38378. Adds a horizontal page break to the collection.
  38379. </summary>
  38380. <param name="row">Cell row index, zero based.</param>
  38381. <returns>
  38382. <see cref="T:Aspose.Cells.HorizontalPageBreak" /> object index.</returns>
  38383. <remarks>Page break is added in the top left of the cell.
  38384. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  38385. </member>
  38386. <member name="M:Aspose.Cells.HorizontalPageBreakCollection.Add(System.Int32,System.Int32)">
  38387. <summary>
  38388. Adds a horizontal page break to the collection.
  38389. </summary>
  38390. <param name="row">Cell row index, zero based.</param>
  38391. <param name="column">Cell column index, zero based.</param>
  38392. <returns>
  38393. <see cref="T:Aspose.Cells.HorizontalPageBreak" /> object index.</returns>
  38394. <remarks>Page break is added in the top left of the cell.
  38395. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  38396. </member>
  38397. <member name="M:Aspose.Cells.HorizontalPageBreakCollection.Add(System.String)">
  38398. <summary>
  38399. Adds a horizontal page break to the collection.
  38400. </summary>
  38401. <param name="cellName">Cell name.</param>
  38402. <returns>
  38403. <see cref="T:Aspose.Cells.HorizontalPageBreak" /> object index.</returns>
  38404. <remarks>Page break is added in the top left of the cell.
  38405. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  38406. </member>
  38407. <member name="M:Aspose.Cells.HorizontalPageBreakCollection.RemoveAt(System.Int32)">
  38408. <summary>
  38409. Removes the HPageBreak element at a specified name.
  38410. </summary>
  38411. <param name="index">Element index, zero based.</param>
  38412. </member>
  38413. <member name="P:Aspose.Cells.HorizontalPageBreakCollection.Item(System.Int32)">
  38414. <summary>
  38415. Gets the <see cref="T:Aspose.Cells.HorizontalPageBreak" /> element at the specified index.
  38416. </summary>
  38417. <param name="index">The zero based index of the element.</param>
  38418. <returns>The element at the specified index.</returns>
  38419. </member>
  38420. <member name="P:Aspose.Cells.HorizontalPageBreakCollection.Item(System.String)">
  38421. <summary>
  38422. Gets the <see cref="T:Aspose.Cells.HorizontalPageBreak" /> element with the specified cell name.
  38423. </summary>
  38424. <param name="cellName">Cell name.</param>
  38425. <returns>The element with the specified cell name.</returns>
  38426. </member>
  38427. <member name="T:Aspose.Cells.Hyperlink">
  38428. <summary>
  38429. Encapsulates the object that represents a hyperlink.
  38430. </summary>
  38431. <example>
  38432. <code>
  38433. [C#]
  38434. //Instantiating a Workbook object
  38435. Workbook workbook = new Workbook();
  38436. //Adding a new worksheet to the Workbook object
  38437. workbook.Worksheets.Add();
  38438. //Obtaining the reference of the newly added worksheet by passing its sheet index
  38439. Worksheet worksheet = workbook.Worksheets[0];
  38440. //Adding a hyperlink to a URL at "A1" cell
  38441. worksheet.Hyperlinks.Add("A1", 1, 1, "http://www.aspose.com");
  38442. //Saving the Excel file
  38443. workbook.Save("C:\\book1.xls");
  38444. [Visual Basic]
  38445. 'Instantiating a Workbook object
  38446. Dim workbook As Workbook = New Workbook()
  38447. 'Adding a new worksheet to the Workbook object
  38448. workbook.Worksheets.Add()
  38449. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  38450. Dim worksheet As Worksheet = workbook.Worksheets(0)
  38451. 'Adding a hyperlink to a URL at "A1" cell
  38452. worksheet.Hyperlinks.Add("A1", 1, 1, "http://www.aspose.com")
  38453. 'Saving the Excel file
  38454. workbook.Save("C:\book1.xls")
  38455. </code>
  38456. </example>
  38457. </member>
  38458. <member name="M:Aspose.Cells.Hyperlink.Delete">
  38459. <summary>
  38460. Deletes this hyperlink
  38461. </summary>
  38462. </member>
  38463. <member name="P:Aspose.Cells.Hyperlink.Address">
  38464. <summary>
  38465. Represents the address of a hyperlink.
  38466. </summary>
  38467. </member>
  38468. <member name="P:Aspose.Cells.Hyperlink.TextToDisplay">
  38469. <summary>
  38470. Represents the text to be displayed for the specified hyperlink. The default value is the address of the hyperlink.
  38471. </summary>
  38472. </member>
  38473. <member name="P:Aspose.Cells.Hyperlink.Area">
  38474. <summary>
  38475. Gets the range of hyperlink.
  38476. </summary>
  38477. </member>
  38478. <member name="P:Aspose.Cells.Hyperlink.ScreenTip">
  38479. <summary>
  38480. Returns or sets the ScreenTip text for the specified hyperlink.
  38481. </summary>
  38482. </member>
  38483. <member name="P:Aspose.Cells.Hyperlink.LinkType">
  38484. <summary>
  38485. Gets the link type.
  38486. </summary>
  38487. </member>
  38488. <member name="T:Aspose.Cells.HyperlinkCollection">
  38489. <summary>
  38490. Encapsulates a collection of <see cref="T:Aspose.Cells.Hyperlink" /> objects.
  38491. </summary>
  38492. <example>
  38493. <code>
  38494. [C#]
  38495. //Instantiating a Workbook object
  38496. Workbook workbook = new Workbook();
  38497. //Obtaining the reference of the newly added worksheet by passing its sheet index
  38498. Worksheet worksheet = workbook.Worksheets[0];
  38499. //Get Hyperlinks Collection
  38500. HyperlinkCollection hyperlinks = worksheet.Hyperlinks;
  38501. //Adding a hyperlink to a URL at "A1" cell
  38502. hyperlinks.Add("A1", 1, 1, "http://www.aspose.com");
  38503. //Saving the Excel file
  38504. workbook.Save("D:\\book1.xls");
  38505. [VB.NET]
  38506. 'Instantiating a Workbook object
  38507. Dim workbook As New Workbook()
  38508. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  38509. Dim worksheet As Worksheet = workbook.Worksheets(0)
  38510. 'Get Hyperlinks Collection
  38511. Dim hyperlinks As HyperlinkCollection = worksheet.Hyperlinks
  38512. 'Adding a hyperlink to a URL at "A1" cell
  38513. hyperlinks.Add("A1", 1, 1, "http://www.aspose.com")
  38514. 'Saving the Excel file
  38515. workbook.Save("D:\book1.xls")
  38516. </code>
  38517. </example>
  38518. </member>
  38519. <member name="M:Aspose.Cells.HyperlinkCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
  38520. <summary>
  38521. Adds a hyperlink to a specified cell or a range of cells.
  38522. </summary>
  38523. <param name="firstRow">First row of the hyperlink range.</param>
  38524. <param name="firstColumn">First column of the hyperlink range.</param>
  38525. <param name="totalRows">Number of rows in this hyperlink range.</param>
  38526. <param name="totalColumns">Number of columns of this hyperlink range.</param>
  38527. <param name="address">Address of the hyperlink.</param>
  38528. <returns>
  38529. <see cref="T:Aspose.Cells.Hyperlink" /> object index.</returns>
  38530. <example>
  38531. <code>
  38532. [C#]
  38533. Worksheet worksheet = excel.Worksheets[0];
  38534. worksheet.Hyperlinks.Add("A4", 1, 1, "http://www.aspose.com");
  38535. worksheet.Hyperlinks.Add("A5", 1, 1, "c:\\book1.xls");
  38536. [Visual Basic]
  38537. Dim worksheet as Worksheet = excel.Worksheets(0)
  38538. worksheet.Hyperlinks.Add("A4", 1, 1, "http://www.aspose.com")
  38539. worksheet.Hyperlinks.Add("A5", 1, 1, "c:\\book1.xls")
  38540. </code>
  38541. </example>
  38542. </member>
  38543. <member name="M:Aspose.Cells.HyperlinkCollection.Add(System.String,System.Int32,System.Int32,System.String)">
  38544. <summary>
  38545. Adds a hyperlink to a specified cell or a range of cells.
  38546. </summary>
  38547. <param name="cellName">Cell name.</param>
  38548. <param name="totalRows">Number of rows in this hyperlink range.</param>
  38549. <param name="totalColumns">Number of columns of this hyperlink range.</param>
  38550. <param name="address">Address of the hyperlink.</param>
  38551. <returns>
  38552. <see cref="T:Aspose.Cells.Hyperlink" /> object index.</returns>
  38553. </member>
  38554. <member name="M:Aspose.Cells.HyperlinkCollection.Add(System.String,System.String,System.String,System.String,System.String)">
  38555. <summary>
  38556. Adds a hyperlink to a specified cell or a range of cells.
  38557. </summary>
  38558. <param name="startCellName">The top-left cell of the range.</param>
  38559. <param name="endCellName">The bottom-right cell of the range.</param>
  38560. <param name="address">Address of the hyperlink.</param>
  38561. <param name="textToDisplay">The text to be displayed for the specified hyperlink.</param>
  38562. <param name="screenTip">The screenTip text for the specified hyperlink.</param>
  38563. <returns>
  38564. <see cref="T:Aspose.Cells.Hyperlink" /> object index.</returns>
  38565. </member>
  38566. <member name="M:Aspose.Cells.HyperlinkCollection.RemoveAt(System.Int32)">
  38567. <summary>
  38568. Remove the hyperlink at the specified index.
  38569. </summary>
  38570. <param name="index">The zero based index of the element.</param>
  38571. </member>
  38572. <member name="M:Aspose.Cells.HyperlinkCollection.Clear">
  38573. <summary>
  38574. Clears all hyperlinks.
  38575. </summary>
  38576. </member>
  38577. <member name="P:Aspose.Cells.HyperlinkCollection.Item(System.Int32)">
  38578. <summary>
  38579. Gets the <see cref="T:Aspose.Cells.Hyperlink" /> element at the specified index.
  38580. </summary>
  38581. <param name="index">The zero based index of the element.</param>
  38582. <returns>The element at the specified index.</returns>
  38583. </member>
  38584. <member name="T:Aspose.Cells.TxtSaveOptions">
  38585. <summary>
  38586. Represents the save options for csv/tab delimited/other text format.
  38587. </summary>
  38588. </member>
  38589. <member name="M:Aspose.Cells.TxtSaveOptions.#ctor">
  38590. <summary>
  38591. Creates text file save options.
  38592. </summary>
  38593. </member>
  38594. <member name="M:Aspose.Cells.TxtSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  38595. <summary>
  38596. Creates text file save options.
  38597. </summary>
  38598. <param name="format">The save format of the text file.</param>
  38599. </member>
  38600. <member name="P:Aspose.Cells.TxtSaveOptions.Separator">
  38601. <summary>
  38602. Gets and sets char Delimiter of text file.
  38603. </summary>
  38604. </member>
  38605. <member name="P:Aspose.Cells.TxtSaveOptions.SeparatorString">
  38606. <summary>
  38607. Gets and sets the a string value as separator.
  38608. </summary>
  38609. </member>
  38610. <member name="P:Aspose.Cells.TxtSaveOptions.Encoding">
  38611. <summary>
  38612. Gets and sets the default encoding.
  38613. </summary>
  38614. </member>
  38615. <member name="P:Aspose.Cells.TxtSaveOptions.AlwaysQuoted">
  38616. <summary>
  38617. Indicates whether always adding '"' for each field.
  38618. If true then all values will be quoted;
  38619. If false then only quote values when needed(when values contain special characters such as '"' , '\n' or separator character).
  38620. Default is false.
  38621. </summary>
  38622. <remarks>
  38623. NOTE: This member is now obsolete. Instead,
  38624. please use QuoteType property instead.
  38625. This property will be removed 12 months later since August 2012.
  38626. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38627. </member>
  38628. <member name="P:Aspose.Cells.TxtSaveOptions.QuoteType">
  38629. <summary>
  38630. Gets or sets how to quote values in the exported text file.
  38631. </summary>
  38632. </member>
  38633. <member name="P:Aspose.Cells.TxtSaveOptions.FormatStrategy">
  38634. <summary>
  38635. Gets and sets the format strategy when exporting the cell value as string.
  38636. </summary>
  38637. </member>
  38638. <member name="P:Aspose.Cells.TxtSaveOptions.LightCellsDataProvider">
  38639. <summary>
  38640. The Data provider to provide cells data for saving workbook in light mode.
  38641. </summary>
  38642. </member>
  38643. <member name="P:Aspose.Cells.TxtSaveOptions.TrimLeadingBlankRowAndColumn">
  38644. <summary>
  38645. Indicates whether leading blank rows and columns should be trimmed like what ms excel does. Default is true.
  38646. </summary>
  38647. </member>
  38648. <member name="P:Aspose.Cells.TxtSaveOptions.KeepSeparatorsForBlankRow">
  38649. <summary>
  38650. Indicates whether separators should be output for blank row. Default value is false which means the content for blank row will be empty.
  38651. </summary>
  38652. </member>
  38653. <member name="P:Aspose.Cells.TxtSaveOptions.ExportArea">
  38654. <summary>
  38655. The range of cells to be exported.
  38656. </summary>
  38657. </member>
  38658. <member name="T:Aspose.Cells.XmlColumnProperty">
  38659. <summary>
  38660. Represents Xml Data Binding information.
  38661. </summary>
  38662. </member>
  38663. <member name="T:Aspose.Cells.Drawing.Label">
  38664. <summary>
  38665. Encapsulates the object that represents a label in a spreadsheet.
  38666. </summary>
  38667. <example>
  38668. <code>
  38669. //Create a new Workbook.
  38670. Workbook workbook = new Workbook();
  38671. //Get the first worksheet in the workbook.
  38672. Worksheet sheet = workbook.Worksheets[0];
  38673. //Add a new label to the worksheet.
  38674. Aspose.Cells.Label label = sheet.Shapes.AddLabel(2, 0, 2, 0, 60, 120);
  38675. //Set the caption of the label.
  38676. label.Text = "This is a Label";
  38677. //Set the Placement Type, the way the
  38678. //label is attached to the cells.
  38679. label.Placement = PlacementType.FreeFloating;
  38680. //Set the fill color of the label.
  38681. label.FillFormat.ForeColor = Color.Yellow;
  38682. //Saves the file.
  38683. workbook.Save(@"d:\test\tstlabel.xls");
  38684. [VB.NET]
  38685. 'Create a new Workbook.
  38686. Dim workbook As Workbook = New Workbook()
  38687. 'Get the first worksheet in the workbook.
  38688. Dim sheet As Worksheet = workbook.Worksheets(0)
  38689. 'Add a new label to the worksheet.
  38690. Dim label As Aspose.Cells.Label = sheet.Shapes.AddLabel(2, 0, 2, 0, 60, 120)
  38691. 'Set the caption of the label.
  38692. label.Text = "This is a Label"
  38693. 'Set the Placement Type, the way the
  38694. 'label is attached to the cells.
  38695. label.Placement = PlacementType.FreeFloating
  38696. 'Set the fill color of the label.
  38697. label.FillFormat.ForeColor = Color.Yellow
  38698. 'Saves the file.
  38699. workbook.Save("d:\test\tstlabel.xls")
  38700. </code>
  38701. </example>
  38702. </member>
  38703. <member name="T:Aspose.Cells.Charts.Legend">
  38704. <summary>
  38705. Encapsulates the object that represents the chart legend.
  38706. </summary>
  38707. <example>
  38708. <code>
  38709. [C#]
  38710. //Set Legend's width and height
  38711. Legend legend = chart.Legend;
  38712. //Legend is at right side of chart by default.
  38713. //If the legend is at left or right side of the chart, setting Legend.X property will not take effect.
  38714. //If the legend is at top or bottom side of the chart, setting Legend.Y property will not take effect.
  38715. legend.Y = 1500;
  38716. legend.Width = 50;
  38717. legend.Height = 50;
  38718. //Set legend's position
  38719. legend.Position = LegendPositionType.Left;
  38720. [Visual Basic]
  38721. 'Set Legend's width and height
  38722. Dim legend as Legend = chart.Legend
  38723. 'Legend is at right side of chart by default.
  38724. 'If the legend is at left or right side of the chart, setting Legend.X property will not take effect.
  38725. 'If the legend is at top or bottom side of the chart, setting Legend.Y property will not take effect.
  38726. legend.Y = 1500
  38727. legend.Width = 50
  38728. legend.Height = 50
  38729. 'Set legend's position
  38730. legend.Position = LegendPositionType.Left
  38731. </code>
  38732. </example>
  38733. </member>
  38734. <member name="P:Aspose.Cells.Charts.Legend.Position">
  38735. <summary>
  38736. Gets or sets the legend position type.
  38737. </summary>
  38738. <remarks>
  38739. <br>Default position is right.</br>
  38740. <br>If the legend is at left or right side of the chart, setting Legend.X property will not take effect.</br>
  38741. <br>If the legend is at top or bottom side of the chart, setting Legend.Y property will not take effect.</br>
  38742. </remarks>
  38743. </member>
  38744. <member name="P:Aspose.Cells.Charts.Legend.LegendEntries">
  38745. <summary>
  38746. Gets a collection of all the LegendEntry objects in the specified chart legend.
  38747. Setting the legend entries of the surface chart is not supported.
  38748. So it will return null if the chart type is surface chart type.
  38749. </summary>
  38750. </member>
  38751. <member name="P:Aspose.Cells.Charts.Legend.LegendEntriesLabels">
  38752. <summary>
  38753. Gets the labels of the legend entries after call Chart.Calculate() method.
  38754. </summary>
  38755. </member>
  38756. <member name="P:Aspose.Cells.Charts.Legend.IsOverLay">
  38757. <summary>
  38758. Gets or sets whether other chart elements shall be allowed to overlap this chart element.
  38759. </summary>
  38760. </member>
  38761. <member name="T:Aspose.Cells.Charts.LegendEntryCollection">
  38762. <summary>
  38763. Represents a collection of all the <see cref="T:Aspose.Cells.Charts.LegendEntry" /> objects in the specified chart legend.
  38764. </summary>
  38765. </member>
  38766. <member name="P:Aspose.Cells.Charts.LegendEntryCollection.Item(System.Int32)">
  38767. <summary>
  38768. Gets the <see cref="T:Aspose.Cells.Charts.LegendEntry" /> element at the specified index.
  38769. </summary>
  38770. <param name="index">The zero based index of the element.</param>
  38771. <returns>The element at the specified index.</returns>
  38772. </member>
  38773. <member name="T:Aspose.Cells.Charts.LegendEntry">
  38774. <summary>
  38775. Represents a legend entry in a chart legend.
  38776. </summary>
  38777. </member>
  38778. <member name="P:Aspose.Cells.Charts.LegendEntry.IsDeleted">
  38779. <summary>
  38780. Gets and sets whether the legend entry is deleted.
  38781. </summary>
  38782. </member>
  38783. <member name="P:Aspose.Cells.Charts.LegendEntry.Font">
  38784. <summary>
  38785. Gets a <see cref="P:Aspose.Cells.Charts.LegendEntry.Font" /> object of the specified ChartFrame object.
  38786. </summary>
  38787. </member>
  38788. <member name="P:Aspose.Cells.Charts.LegendEntry.TextFont">
  38789. <summary>
  38790. Gets a <see cref="P:Aspose.Cells.Charts.LegendEntry.Font" /> object of the specified LegendEntry object.
  38791. </summary>
  38792. <remarks>NOTE: This member is now obsolete. Instead,
  38793. please use LegendEntry.Font property.
  38794. This property will be removed 12 months later since JANUARY 2012.
  38795. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38796. </member>
  38797. <member name="P:Aspose.Cells.Charts.LegendEntry.IsTextNoFill">
  38798. <summary>
  38799. Gets or sets no fill of the text.
  38800. </summary>
  38801. </member>
  38802. <member name="P:Aspose.Cells.Charts.LegendEntry.AutoScaleFont">
  38803. <summary>
  38804. True if the text in the object changes font size when the object size changes.
  38805. The default value is True.
  38806. </summary>
  38807. </member>
  38808. <member name="P:Aspose.Cells.Charts.LegendEntry.Background">
  38809. <summary>
  38810. Gets and sets the display mode of the background
  38811. </summary>
  38812. <remarks>NOTE: This member is now obsolete. Instead,
  38813. please use LegendEntry.BackgroundMode property.
  38814. This property will be removed 12 months later since JANUARY 2012.
  38815. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38816. </member>
  38817. <member name="P:Aspose.Cells.Charts.LegendEntry.BackgroundMode">
  38818. <summary>
  38819. Gets and sets the display mode of the background
  38820. </summary>
  38821. </member>
  38822. <member name="T:Aspose.Cells.Charts.LegendPositionType">
  38823. <summary>
  38824. Enumerates the legend position types.
  38825. </summary>
  38826. </member>
  38827. <member name="F:Aspose.Cells.Charts.LegendPositionType.Bottom">
  38828. <summary>
  38829. Displays the legend to the bottom of the chart's plot area.
  38830. </summary>
  38831. </member>
  38832. <member name="F:Aspose.Cells.Charts.LegendPositionType.Corner">
  38833. <summary>
  38834. Displays the legend to the corner of the chart's plot area.
  38835. </summary>
  38836. </member>
  38837. <member name="F:Aspose.Cells.Charts.LegendPositionType.Left">
  38838. <summary>
  38839. Displays the legend to the left of the chart's plot area.
  38840. </summary>
  38841. </member>
  38842. <member name="F:Aspose.Cells.Charts.LegendPositionType.NotDocked">
  38843. <summary>
  38844. Represents that the legend is not docked.
  38845. </summary>
  38846. </member>
  38847. <member name="F:Aspose.Cells.Charts.LegendPositionType.Right">
  38848. <summary>
  38849. Displays the legend to the right of the chart's plot area.
  38850. </summary>
  38851. </member>
  38852. <member name="F:Aspose.Cells.Charts.LegendPositionType.Top">
  38853. <summary>
  38854. Displays the legend to the top of the chart's plot area.
  38855. </summary>
  38856. </member>
  38857. <member name="T:Aspose.Cells.Drawing.LineShape">
  38858. <summary>
  38859. Represents the line shape.
  38860. </summary>
  38861. <example>
  38862. <code>
  38863. [C#]
  38864. //Instantiate a new Workbook.
  38865. Workbook workbook = new Workbook();
  38866. //Get the first worksheet in the book.
  38867. Worksheet worksheet = workbook.Worksheets[0];
  38868. //Add a new line to the worksheet.
  38869. Aspose.Cells.LineShape line1 = worksheet.Shapes.AddLine(5, 0, 1, 0, 0, 250);
  38870. //Set the line dash style
  38871. line1.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  38872. //Set the placement.
  38873. line1.Placement = PlacementType.FreeFloating;
  38874. //Add another line to the worksheet.
  38875. Aspose.Cells.LineShape line2 = worksheet.Shapes.AddLine(7, 0, 1, 0, 85, 250);
  38876. //Set the line dash style.
  38877. line2.LineFormat.DashStyle = MsoLineDashStyle.DashLongDash;
  38878. //Set the weight of the line.
  38879. line2.LineFormat.Weight = 4;
  38880. //Set the placement.
  38881. line2.Placement = PlacementType.FreeFloating;
  38882. //Add the third line to the worksheet.
  38883. Aspose.Cells.LineShape line3 = worksheet.Shapes.AddLine(13, 0, 1, 0, 0, 250);
  38884. //Set the line dash style
  38885. line3.LineFormat.DashStyle = MsoLineDashStyle.Solid;
  38886. //Set the placement.
  38887. line3.Placement = PlacementType.FreeFloating;
  38888. //Make the gridlines invisible in the first worksheet.
  38889. workbook.Worksheets[0].IsGridlinesVisible = false;
  38890. //Save the excel file.
  38891. workbook.Save("d:\\test\\tstlines.xls");
  38892. [VB.NET]
  38893. 'Instantiate a new Workbook.
  38894. Dim workbook As Workbook = New Workbook()
  38895. 'Get the first worksheet in the book.
  38896. Dim worksheet As Worksheet = workbook.Worksheets(0)
  38897. 'Add a new line to the worksheet.
  38898. Dim line1 As Aspose.Cells.LineShape = worksheet.Shapes.AddLine(5, 0, 1, 0, 0, 250)
  38899. 'Set the line dash style
  38900. line1.LineFormat.DashStyle = MsoLineDashStyle.Solid
  38901. 'Set the placement.
  38902. line1.Placement = PlacementType.FreeFloating
  38903. 'Add another line to the worksheet.
  38904. Dim line2 As Aspose.Cells.LineShape = worksheet.Shapes.AddLine(7, 0, 1, 0, 85, 250)
  38905. 'Set the line dash style.
  38906. line2.LineFormat.DashStyle = MsoLineDashStyle.DashLongDash
  38907. 'Set the weight of the line.
  38908. line2.LineFormat.Weight = 4
  38909. 'Set the placement.
  38910. line2.Placement = PlacementType.FreeFloating
  38911. 'Add the third line to the worksheet.
  38912. Dim line3 As Aspose.Cells.LineShape = worksheet.Shapes.AddLine(13, 0, 1, 0, 0, 250)
  38913. 'Set the line dash style
  38914. line3.LineFormat.DashStyle = MsoLineDashStyle.Solid
  38915. 'Set the placement.
  38916. line3.Placement = PlacementType.FreeFloating
  38917. 'Make the gridlines invisible in the first worksheet.
  38918. workbook.Worksheets(0).IsGridlinesVisible = False
  38919. 'Save the excel file.
  38920. workbook.Save("d:\test\tstlines.xls")
  38921. </code>
  38922. </example>
  38923. </member>
  38924. <member name="P:Aspose.Cells.Drawing.LineShape.BeginArrowheadStyle">
  38925. <summary>
  38926. Gets and sets the begin arrow head style of the line.
  38927. </summary>
  38928. <remarks>NOTE: This member is now obsolete. Instead,
  38929. please use Shape.Line.BeginArrowheadStyle property.
  38930. This property will be removed 12 months later since August 2016.
  38931. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38932. </member>
  38933. <member name="P:Aspose.Cells.Drawing.LineShape.BeginArrowheadWidth">
  38934. <summary>
  38935. Gets and sets the begin arrow head width of the line.
  38936. </summary>
  38937. <remarks>NOTE: This member is now obsolete. Instead,
  38938. please use Shape.Line.BeginArrowheadWidth property.
  38939. This property will be removed 12 months later since August 2016.
  38940. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38941. </member>
  38942. <member name="P:Aspose.Cells.Drawing.LineShape.BeginArrowheadLength">
  38943. <summary>
  38944. Gets and sets the begin arrow head length of the line.
  38945. </summary>
  38946. <remarks>NOTE: This member is now obsolete. Instead,
  38947. please use Shape.Line.BeginArrowheadLength property.
  38948. This property will be removed 12 months later since August 2016.
  38949. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38950. </member>
  38951. <member name="P:Aspose.Cells.Drawing.LineShape.EndArrowheadStyle">
  38952. <summary>
  38953. Gets and sets the end arrow head style of the line.
  38954. </summary>
  38955. <remarks>NOTE: This member is now obsolete. Instead,
  38956. please use Shape.Line.EndArrowheadStyle property.
  38957. This property will be removed 12 months later since August 2016.
  38958. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38959. </member>
  38960. <member name="P:Aspose.Cells.Drawing.LineShape.EndArrowheadWidth">
  38961. <summary>
  38962. Gets and sets the end arrow head width of the line.
  38963. </summary>
  38964. <remarks>NOTE: This member is now obsolete. Instead,
  38965. please use Shape.Line.EndArrowheadWidth property.
  38966. This property will be removed 12 months later since August 2016.
  38967. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38968. </member>
  38969. <member name="P:Aspose.Cells.Drawing.LineShape.EndArrowheadLength">
  38970. <summary>
  38971. Gets and sets the end arrow head length of the line.
  38972. </summary>
  38973. <remarks>NOTE: This member is now obsolete. Instead,
  38974. please use Shape.Line.EndArrowheadLength property.
  38975. This property will be removed 12 months later since August 2016.
  38976. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  38977. </member>
  38978. <member name="T:Aspose.Cells.Drawing.LineType">
  38979. <summary>
  38980. Enumerates the type of <see cref="T:Aspose.Cells.Drawing.Picture" /> border or <see cref="T:Aspose.Cells.Charts.Chart" /> line.
  38981. </summary>
  38982. </member>
  38983. <member name="F:Aspose.Cells.Drawing.LineType.DarkGray">
  38984. <summary>
  38985. Represents a dark gray line.
  38986. </summary>
  38987. </member>
  38988. <member name="F:Aspose.Cells.Drawing.LineType.Dash">
  38989. <summary>
  38990. Represent a dash line.
  38991. </summary>
  38992. </member>
  38993. <member name="F:Aspose.Cells.Drawing.LineType.DashDot">
  38994. <summary>
  38995. Represents a dash-dot line
  38996. </summary>
  38997. </member>
  38998. <member name="F:Aspose.Cells.Drawing.LineType.DashDotDot">
  38999. <summary>
  39000. Represents a dash-dot-dot line.
  39001. </summary>
  39002. </member>
  39003. <member name="F:Aspose.Cells.Drawing.LineType.Dot">
  39004. <summary>
  39005. Represents a dotted line.
  39006. </summary>
  39007. </member>
  39008. <member name="F:Aspose.Cells.Drawing.LineType.LightGray">
  39009. <summary>
  39010. Represents a light gray line.
  39011. </summary>
  39012. </member>
  39013. <member name="F:Aspose.Cells.Drawing.LineType.MediumGray">
  39014. <summary>
  39015. Represents a medium gray line.
  39016. </summary>
  39017. </member>
  39018. <member name="F:Aspose.Cells.Drawing.LineType.Solid">
  39019. <summary>
  39020. Represent a solid line.
  39021. </summary>
  39022. </member>
  39023. <member name="T:Aspose.Cells.Drawing.ListBox">
  39024. <summary>
  39025. Represents a list box object.
  39026. </summary>
  39027. <example>
  39028. <code>
  39029. [C#]
  39030. //Create a new Workbook.
  39031. Workbook workbook = new Workbook();
  39032. //Get the first worksheet.
  39033. Worksheet sheet = workbook.Worksheets[0];
  39034. //Get the worksheet cells collection.
  39035. Cells cells = sheet.Cells;
  39036. //Input a value.
  39037. cells["B3"].PutValue("Choose Dept:");
  39038. //Set it bold.
  39039. cells["B3"].Style.Font.IsBold = true;
  39040. //Input some values that denote the input range
  39041. //for the list box.
  39042. cells["A2"].PutValue("Sales");
  39043. cells["A3"].PutValue("Finance");
  39044. cells["A4"].PutValue("MIS");
  39045. cells["A5"].PutValue("R&amp;D");
  39046. cells["A6"].PutValue("Marketing");
  39047. cells["A7"].PutValue("HRA");
  39048. //Add a new list box.
  39049. ListBox listBox = sheet.Shapes.AddListBox(2, 0, 3, 0, 122, 100);
  39050. //Set the placement type.
  39051. listBox.Placement = PlacementType.FreeFloating;
  39052. //Set the linked cell.
  39053. listBox.LinkedCell = "A1";
  39054. //Set the input range.
  39055. listBox.InputRange = "A2:A7";
  39056. //Set the selection tyle.
  39057. listBox.SelectionType = SelectionType.Single;
  39058. //Set the list box with 3-D shading.
  39059. listBox.Shadow = true;
  39060. //Saves the file.
  39061. workbook.Save(@"d:\test\tstlistbox.xls");
  39062. [VB.NET]
  39063. 'Create a new Workbook.
  39064. Dim workbook As Aspose.Cells.Workbook = New Aspose.Cells.Workbook()
  39065. 'Get the first worksheet.
  39066. Dim sheet As Worksheet = workbook.Worksheets(0)
  39067. 'Get the worksheet cells collection.
  39068. Dim cells As Cells = sheet.Cells
  39069. 'Input a value.
  39070. cells("B3").PutValue("Choose Dept:")
  39071. 'Set it bold.
  39072. cells("B3").Style.Font.IsBold = True
  39073. 'Input some values that denote the input range
  39074. 'for the list box.
  39075. cells("A2").PutValue("Sales")
  39076. cells("A3").PutValue("Finance")
  39077. cells("A4").PutValue("MIS")
  39078. cells("A5").PutValue("R&amp;D")
  39079. cells("A6").PutValue("Marketing")
  39080. cells("A7").PutValue("HRA")
  39081. 'Add a new list box.
  39082. Dim listBox As Aspose.Cells.ListBox = sheet.Shapes.AddListBox(2, 0, 3, 0, 122, 100)
  39083. 'Set the placement type.
  39084. listBox.Placement = PlacementType.FreeFloating
  39085. 'Set the linked cell.
  39086. listBox.LinkedCell = "A1"
  39087. 'Set the input range.
  39088. listBox.InputRange = "A2:A7"
  39089. 'Set the selection tyle.
  39090. listBox.SelectionType = SelectionType.Single
  39091. 'Set the list box with 3-D shading.
  39092. listBox.Shadow = True
  39093. 'Saves the file.
  39094. workbook.Save("d:\test\tstlistbox.xls")
  39095. </code>
  39096. </example>
  39097. </member>
  39098. <member name="M:Aspose.Cells.Drawing.ListBox.SelectedItem(System.Int32,System.Boolean)">
  39099. <summary>
  39100. Sets whether the item is selected
  39101. </summary>
  39102. <param name="itemIndex">The item index</param>
  39103. <param name="isSelected">Whether the item is selected.
  39104. True means that this item should be selected.
  39105. False means that this item should be unselected.
  39106. </param>
  39107. </member>
  39108. <member name="M:Aspose.Cells.Drawing.ListBox.IsSelected(System.Int32)">
  39109. <summary>
  39110. Indicates whether the item is selected.
  39111. </summary>
  39112. <param name="itemIndex">The item index.</param>
  39113. <returns>whether the item is selected.</returns>
  39114. </member>
  39115. <member name="P:Aspose.Cells.Drawing.ListBox.ItemCount">
  39116. <summary>
  39117. Gets the number of items in the list box.
  39118. </summary>
  39119. </member>
  39120. <member name="P:Aspose.Cells.Drawing.ListBox.SelectedIndex">
  39121. <summary>
  39122. Gets or sets the index number of the currently selected item in a list box or combo box.
  39123. Zero-based.
  39124. </summary>
  39125. <remarks>-1 presents no item is selected.</remarks>
  39126. </member>
  39127. <member name="P:Aspose.Cells.Drawing.ListBox.SelectedCells">
  39128. <summary>
  39129. Gets the selected cells.
  39130. Returns null if the input range is not set or no item is selected
  39131. </summary>
  39132. </member>
  39133. <member name="P:Aspose.Cells.Drawing.ListBox.Shadow">
  39134. <summary>
  39135. Indicates whether the combobox has 3-D shading.
  39136. </summary>
  39137. </member>
  39138. <member name="P:Aspose.Cells.Drawing.ListBox.SelectionType">
  39139. <summary>
  39140. Gets or sets the selection mode of the specified list box.
  39141. </summary>
  39142. </member>
  39143. <member name="P:Aspose.Cells.Drawing.ListBox.PageChange">
  39144. <summary>
  39145. Specifies the amount by which the control's value is changed
  39146. when the user clicks on the scrollbar's page up or page down region.
  39147. </summary>
  39148. </member>
  39149. <member name="T:Aspose.Cells.Tables.ListColumn">
  39150. <summary>
  39151. Represents a column in a list.
  39152. </summary>
  39153. </member>
  39154. <member name="M:Aspose.Cells.Tables.ListColumn.GetCustomCalculatedFormula(System.Boolean,System.Boolean)">
  39155. <summary>
  39156. Gets the formula of this list column.
  39157. </summary>
  39158. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  39159. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  39160. <returns>The formula of this list column.</returns>
  39161. </member>
  39162. <member name="M:Aspose.Cells.Tables.ListColumn.SetCustomCalculatedFormula(System.String,System.Boolean,System.Boolean)">
  39163. <summary>
  39164. Sets the formula for this list column.
  39165. </summary>
  39166. <param name="formula">the formula for this list column.</param>
  39167. <param name="isR1C1">Whether the formula needs to be formatted as R1C1.</param>
  39168. <param name="isLocal">Whether the formula needs to be formatted by locale.</param>
  39169. </member>
  39170. <member name="P:Aspose.Cells.Tables.ListColumn.Name">
  39171. <summary>
  39172. Gets and sets the name of the column.
  39173. </summary>
  39174. <remarks>
  39175. If sets the name of the column, the according cell' value will be changed too.
  39176. </remarks>
  39177. </member>
  39178. <member name="P:Aspose.Cells.Tables.ListColumn.TotalsCalculation">
  39179. <summary>
  39180. Gets and sets the type of calculation in the Totals row of the list column.
  39181. </summary>
  39182. </member>
  39183. <member name="P:Aspose.Cells.Tables.ListColumn.Range">
  39184. <summary>
  39185. Gets the range of this list column.
  39186. </summary>
  39187. </member>
  39188. <member name="P:Aspose.Cells.Tables.ListColumn.Formula">
  39189. <summary>
  39190. Gets and sets the formula of the list column.
  39191. </summary>
  39192. </member>
  39193. <member name="T:Aspose.Cells.Tables.ListColumnCollection">
  39194. <summary>
  39195. Represents A collection of all the <see cref="T:Aspose.Cells.Tables.ListColumn" /> objects in the specified ListObject object.
  39196. </summary>
  39197. </member>
  39198. <member name="P:Aspose.Cells.Tables.ListColumnCollection.Item(System.Int32)">
  39199. <summary>
  39200. Gets the ListColumn by the index.
  39201. </summary>
  39202. <param name="index">The index.</param>
  39203. <returns>the ListColumn object.</returns>
  39204. </member>
  39205. <member name="P:Aspose.Cells.Tables.ListColumnCollection.Item(System.String)">
  39206. <summary>
  39207. Gets the ListColumn by the name.
  39208. </summary>
  39209. <param name="name">The name of the ListColumn</param>
  39210. <returns>The ListColumn object.</returns>
  39211. </member>
  39212. <member name="T:Aspose.Cells.Tables.ListObjectCollection">
  39213. <summary>
  39214. Represents a collection of <see cref="T:Aspose.Cells.Tables.ListObject" /> objects in the worksheet.
  39215. </summary>
  39216. </member>
  39217. <member name="M:Aspose.Cells.Tables.ListObjectCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean)">
  39218. <summary>
  39219. Adds a ListObject to the worksheet.
  39220. </summary>
  39221. <param name="startRow">The start row of the list range.</param>
  39222. <param name="startColumn">The start row of the list range.</param>
  39223. <param name="endRow">The start row of the list range.</param>
  39224. <param name="endColumn">The start row of the list range.</param>
  39225. <param name="hasHeaders">Whether the range has headers.</param>
  39226. <returns>The index of the new ListObject</returns>
  39227. </member>
  39228. <member name="M:Aspose.Cells.Tables.ListObjectCollection.Add(System.String,System.String,System.Boolean)">
  39229. <summary>
  39230. Adds a ListObject to the worksheet.
  39231. </summary>
  39232. <param name="startCell">The start cell of the list range.</param>
  39233. <param name="endCell">The end cell of the list range.</param>
  39234. <param name="hasHeaders">Whether the range has headers.</param>
  39235. <returns>The index of the new ListObject</returns>
  39236. </member>
  39237. <member name="M:Aspose.Cells.Tables.ListObjectCollection.UpdateColumnName">
  39238. <summary>
  39239. Update all column name of the tables.
  39240. </summary>
  39241. </member>
  39242. <member name="P:Aspose.Cells.Tables.ListObjectCollection.Item(System.Int32)">
  39243. <summary>
  39244. Gets the ListObject by index.
  39245. </summary>
  39246. <param name="index">The index.</param>
  39247. <returns>The ListObject</returns>
  39248. </member>
  39249. <member name="P:Aspose.Cells.Tables.ListObjectCollection.Item(System.String)">
  39250. <summary>
  39251. Gets the ListObject by specified name.
  39252. </summary>
  39253. <param name="tableName">ListObject name.</param>
  39254. <returns>The ListObject</returns>
  39255. </member>
  39256. <member name="T:Aspose.Cells.Charts.Marker">
  39257. <summary>
  39258. Represents the marker in a line chart, scatter chart, or radar chart.
  39259. </summary>
  39260. </member>
  39261. <member name="P:Aspose.Cells.Charts.Marker.Border">
  39262. <summary>
  39263. Gets the <see cref="T:Aspose.Cells.Drawing.Line">border</see>.
  39264. </summary>
  39265. </member>
  39266. <member name="P:Aspose.Cells.Charts.Marker.Area">
  39267. <summary>
  39268. Gets the <see cref="P:Aspose.Cells.Charts.Marker.Area">area</see>.
  39269. </summary>
  39270. </member>
  39271. <member name="P:Aspose.Cells.Charts.Marker.MarkerStyle">
  39272. <summary>
  39273. Represents the marker style. Applies to line chart, scatter chart, or radar chart.
  39274. </summary>
  39275. </member>
  39276. <member name="P:Aspose.Cells.Charts.Marker.MarkerSize">
  39277. <summary>
  39278. Represents the marker size in unit of points. Applies to line chart, scatter chart, or radar chart.
  39279. </summary>
  39280. </member>
  39281. <member name="P:Aspose.Cells.Charts.Marker.MarkerSizePx">
  39282. <summary>
  39283. Represents the marker size in unit of pixels. Applies to line chart, scatter chart, or radar chart.
  39284. </summary>
  39285. </member>
  39286. <member name="T:Aspose.Cells.Drawing.MsoArrowheadStyle">
  39287. <summary>
  39288. Enumerates the line end type of the shape border line.
  39289. </summary>
  39290. </member>
  39291. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.None">
  39292. <summary>
  39293. No line end type.
  39294. </summary>
  39295. </member>
  39296. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.Arrow">
  39297. <summary>
  39298. Arrow line end type.
  39299. </summary>
  39300. </member>
  39301. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.ArrowStealth">
  39302. <summary>
  39303. Arrow Stealth line end type.
  39304. </summary>
  39305. </member>
  39306. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.ArrowDiamond">
  39307. <summary>
  39308. Arrow Diamond Line end type.
  39309. </summary>
  39310. </member>
  39311. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.ArrowOval">
  39312. <summary>
  39313. Arrow Oval line end type.
  39314. </summary>
  39315. </member>
  39316. <member name="F:Aspose.Cells.Drawing.MsoArrowheadStyle.ArrowOpen">
  39317. <summary>
  39318. Arrow Open line end type.
  39319. </summary>
  39320. </member>
  39321. <member name="T:Aspose.Cells.Charts.ChartLineFormattingType">
  39322. <summary>
  39323. Represents line format type of chart line.
  39324. </summary>
  39325. </member>
  39326. <member name="F:Aspose.Cells.Charts.ChartLineFormattingType.Automatic">
  39327. <summary>
  39328. Represents automatic formatting type.
  39329. </summary>
  39330. </member>
  39331. <member name="F:Aspose.Cells.Charts.ChartLineFormattingType.Solid">
  39332. <summary>
  39333. Represents solid formatting type.
  39334. </summary>
  39335. </member>
  39336. <member name="F:Aspose.Cells.Charts.ChartLineFormattingType.None">
  39337. <summary>
  39338. Represents none formatting type.
  39339. </summary>
  39340. </member>
  39341. <member name="F:Aspose.Cells.Charts.ChartLineFormattingType.Gradient">
  39342. <summary>
  39343. Gradient
  39344. </summary>
  39345. </member>
  39346. <member name="T:Aspose.Cells.Drawing.GradientFill">
  39347. <summary>
  39348. Represents the gradient fill.
  39349. </summary>
  39350. </member>
  39351. <member name="M:Aspose.Cells.Drawing.GradientFill.SetGradient(Aspose.Cells.Drawing.GradientFillType,System.Double,Aspose.Cells.Drawing.GradientDirectionType)">
  39352. <summary>
  39353. Set the gradient fill type and direction.
  39354. </summary>
  39355. <param name="type">Gradient fill type.</param>
  39356. <param name="angle">The angle. Only applies for GradientFillType.Linear. </param>
  39357. <param name="direction">The direction type. Only applies for GradientFillType.Radial and GradientFillType.Rectangle.</param>
  39358. </member>
  39359. <member name="M:Aspose.Cells.Drawing.GradientFill.SetOneColorGradient(System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  39360. <summary>
  39361. Sets the specified fill to a one-color gradient.
  39362. Only applies for Excel 2007.
  39363. </summary>
  39364. <param name="color">One gradient color.</param>
  39365. <param name="degree">The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light).</param>
  39366. <param name="style">Gradient shading style.</param>
  39367. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  39368. </member>
  39369. <member name="M:Aspose.Cells.Drawing.GradientFill.SetTwoColorGradient(System.Drawing.Color,System.Drawing.Color,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  39370. <summary>
  39371. Sets the specified fill to a two-color gradient.
  39372. Only applies for Excel 2007.
  39373. </summary>
  39374. <param name="color1">One gradient color.</param>
  39375. <param name="color2">Two gradient color.</param>
  39376. <param name="style">Gradient shading style.</param>
  39377. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  39378. </member>
  39379. <member name="M:Aspose.Cells.Drawing.GradientFill.SetTwoColorGradient(System.Drawing.Color,System.Double,System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  39380. <summary>
  39381. Sets the specified fill to a two-color gradient.
  39382. Only applies for Excel 2007.
  39383. </summary>
  39384. <param name="color1">One gradient color.</param>
  39385. <param name="transparency1">The degree of transparency of the color1 as a value from 0.0 (opaque) through 1.0 (clear).</param>
  39386. <param name="color2">Two gradient color.</param>
  39387. <param name="transparency2">The degree of transparency of the color2 as a value from 0.0 (opaque) through 1.0 (clear).</param>
  39388. <param name="style">Gradient shading style.</param>
  39389. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  39390. </member>
  39391. <member name="P:Aspose.Cells.Drawing.GradientFill.GradientStops">
  39392. <summary>
  39393. Represents the gradient stop collection.
  39394. </summary>
  39395. </member>
  39396. <member name="P:Aspose.Cells.Drawing.GradientFill.FillType">
  39397. <summary>
  39398. Gets the gradient fill type.
  39399. </summary>
  39400. </member>
  39401. <member name="P:Aspose.Cells.Drawing.GradientFill.DirectionType">
  39402. <summary>
  39403. Gets the gradient direction type.
  39404. </summary>
  39405. </member>
  39406. <member name="P:Aspose.Cells.Drawing.GradientFill.Angle">
  39407. <summary>
  39408. The angle of linear fill.
  39409. </summary>
  39410. </member>
  39411. <member name="T:Aspose.Cells.Drawing.GradientFillType">
  39412. <summary>
  39413. Represents all Gradient fill type.
  39414. </summary>
  39415. </member>
  39416. <member name="F:Aspose.Cells.Drawing.GradientFillType.Linear">
  39417. <summary>
  39418. Linear
  39419. </summary>
  39420. </member>
  39421. <member name="F:Aspose.Cells.Drawing.GradientFillType.Radial">
  39422. <summary>
  39423. Radial
  39424. </summary>
  39425. </member>
  39426. <member name="F:Aspose.Cells.Drawing.GradientFillType.Rectangle">
  39427. <summary>
  39428. Rectangle
  39429. </summary>
  39430. </member>
  39431. <member name="F:Aspose.Cells.Drawing.GradientFillType.Path">
  39432. <summary>
  39433. Path
  39434. </summary>
  39435. </member>
  39436. <member name="T:Aspose.Cells.Drawing.GradientStop">
  39437. <summary>
  39438. Represents the gradient stop.
  39439. </summary>
  39440. </member>
  39441. <member name="P:Aspose.Cells.Drawing.GradientStop.Position">
  39442. <summary>
  39443. The position of the stop.
  39444. </summary>
  39445. </member>
  39446. <member name="P:Aspose.Cells.Drawing.GradientStop.CellsColor">
  39447. <summary>
  39448. Gets the color of this gradient stop.
  39449. </summary>
  39450. </member>
  39451. <member name="P:Aspose.Cells.Drawing.GradientStop.Transparency">
  39452. <summary>
  39453. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
  39454. </summary>
  39455. </member>
  39456. <member name="T:Aspose.Cells.Drawing.GradientDirectionType">
  39457. <summary>
  39458. Represents all direction type of gradient.
  39459. </summary>
  39460. </member>
  39461. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.FromUpperLeftCorner">
  39462. <summary>
  39463. FromUpperLeftCorner
  39464. </summary>
  39465. </member>
  39466. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.FromUpperRightCorner">
  39467. <summary>
  39468. FromUpperRightCorner
  39469. </summary>
  39470. </member>
  39471. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.FromLowerLeftCorner">
  39472. <summary>
  39473. FromLowerLeftCorner
  39474. </summary>
  39475. </member>
  39476. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.FromLowerRightCorner">
  39477. <summary>
  39478. FromLowerRightCorner
  39479. </summary>
  39480. </member>
  39481. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.FromCenter">
  39482. <summary>
  39483. FromCenter
  39484. </summary>
  39485. </member>
  39486. <member name="F:Aspose.Cells.Drawing.GradientDirectionType.Unknown">
  39487. <summary>
  39488. Unknown
  39489. </summary>
  39490. </member>
  39491. <member name="T:Aspose.Cells.Drawing.LineCapType">
  39492. <summary>
  39493. Represents the caps of a line
  39494. </summary>
  39495. </member>
  39496. <member name="F:Aspose.Cells.Drawing.LineCapType.Square">
  39497. <summary>
  39498. Square protrudes by half line width.
  39499. </summary>
  39500. </member>
  39501. <member name="F:Aspose.Cells.Drawing.LineCapType.Round">
  39502. <summary>
  39503. Rounded ends.
  39504. </summary>
  39505. </member>
  39506. <member name="F:Aspose.Cells.Drawing.LineCapType.Flat">
  39507. <summary>
  39508. Line ends at end point.
  39509. </summary>
  39510. </member>
  39511. <member name="F:Aspose.Cells.Drawing.LineCapType.None">
  39512. <summary>
  39513. None cap
  39514. </summary>
  39515. </member>
  39516. <member name="T:Aspose.Cells.Drawing.LineJoinType">
  39517. <summary>
  39518. Represents the join styles of a line.
  39519. </summary>
  39520. </member>
  39521. <member name="F:Aspose.Cells.Drawing.LineJoinType.Round">
  39522. <summary>
  39523. Round joint
  39524. </summary>
  39525. </member>
  39526. <member name="F:Aspose.Cells.Drawing.LineJoinType.Bevel">
  39527. <summary>
  39528. Bevel joint
  39529. </summary>
  39530. </member>
  39531. <member name="F:Aspose.Cells.Drawing.LineJoinType.Miter">
  39532. <summary>
  39533. Miter joint
  39534. </summary>
  39535. </member>
  39536. <member name="F:Aspose.Cells.Drawing.LineJoinType.None">
  39537. <summary>
  39538. None joint
  39539. </summary>
  39540. </member>
  39541. <member name="T:Aspose.Cells.Drawing.PatternFill">
  39542. <summary>
  39543. Encapsulates the object that represents pattern fill format
  39544. </summary>
  39545. </member>
  39546. <member name="P:Aspose.Cells.Drawing.PatternFill.Pattern">
  39547. <summary>
  39548. Gets or sets the fill pattern type
  39549. </summary>
  39550. </member>
  39551. <member name="P:Aspose.Cells.Drawing.PatternFill.BackgroundColor">
  39552. <summary>
  39553. Gets or sets the background <see cref="T:System.Drawing.Color" /> of the <see cref="T:Aspose.Cells.Drawing.Area" />.
  39554. </summary>
  39555. </member>
  39556. <member name="P:Aspose.Cells.Drawing.PatternFill.BackgroundCellsColor">
  39557. <summary>
  39558. Gets and sets the foreground <see cref="T:Aspose.Cells.CellsColor" /> object.
  39559. </summary>
  39560. </member>
  39561. <member name="P:Aspose.Cells.Drawing.PatternFill.ForegroundColor">
  39562. <summary>
  39563. Gets or sets the foreground <see cref="T:System.Drawing.Color" />.
  39564. </summary>
  39565. </member>
  39566. <member name="P:Aspose.Cells.Drawing.PatternFill.ForegroundCellsColor">
  39567. <summary>
  39568. Gets and sets the foreground <see cref="T:Aspose.Cells.CellsColor" /> object.
  39569. </summary>
  39570. </member>
  39571. <member name="P:Aspose.Cells.Drawing.PatternFill.ForeTransparency">
  39572. <summary>
  39573. Gets or sets the transparency of foreground color.
  39574. </summary>
  39575. </member>
  39576. <member name="P:Aspose.Cells.Drawing.PatternFill.BackTransparency">
  39577. <summary>
  39578. Gets or sets the transparency of background color.
  39579. </summary>
  39580. </member>
  39581. <member name="T:Aspose.Cells.Charts.PlotEmptyCellsType">
  39582. <summary>
  39583. Represents all plot empty cells type of a chart.
  39584. </summary>
  39585. </member>
  39586. <member name="F:Aspose.Cells.Charts.PlotEmptyCellsType.NotPlotted">
  39587. <summary>
  39588. Not plotted(leave gap)
  39589. </summary>
  39590. </member>
  39591. <member name="F:Aspose.Cells.Charts.PlotEmptyCellsType.Zero">
  39592. <summary>
  39593. Zero
  39594. </summary>
  39595. </member>
  39596. <member name="F:Aspose.Cells.Charts.PlotEmptyCellsType.Interpolated">
  39597. <summary>
  39598. Interpolated
  39599. </summary>
  39600. </member>
  39601. <member name="T:Aspose.Cells.Drawing.TextureFill">
  39602. <summary>
  39603. Encapsulates the object that represents texture fill format
  39604. </summary>
  39605. </member>
  39606. <member name="P:Aspose.Cells.Drawing.TextureFill.Type">
  39607. <summary>
  39608. Gets and sets the texture type
  39609. </summary>
  39610. </member>
  39611. <member name="P:Aspose.Cells.Drawing.TextureFill.ImageData">
  39612. <summary>
  39613. Gets and sets the image data of the fill.
  39614. </summary>
  39615. </member>
  39616. <member name="P:Aspose.Cells.Drawing.TextureFill.IsTiling">
  39617. <summary>
  39618. Indicates whether tile picture as texture.
  39619. </summary>
  39620. </member>
  39621. <member name="P:Aspose.Cells.Drawing.TextureFill.PicFormatOption">
  39622. <summary>
  39623. Gets or sets picture format option.
  39624. </summary>
  39625. </member>
  39626. <member name="P:Aspose.Cells.Drawing.TextureFill.TilePicOption">
  39627. <summary>
  39628. Gets or sets tile picture option.
  39629. </summary>
  39630. </member>
  39631. <member name="P:Aspose.Cells.Drawing.TextureFill.PictureFormatType">
  39632. <summary>
  39633. Gets and sets the picture format type.
  39634. </summary>
  39635. </member>
  39636. <member name="P:Aspose.Cells.Drawing.TextureFill.Scale">
  39637. <summary>
  39638. Gets and sets the picture format scale.
  39639. </summary>
  39640. </member>
  39641. <member name="P:Aspose.Cells.Drawing.TextureFill.Transparency">
  39642. <summary>
  39643. Returns or sets the degree of transparency of the area as a value from 0.0 (opaque) through 1.0 (clear).
  39644. </summary>
  39645. </member>
  39646. <member name="T:Aspose.Cells.Drawing.FillPictureType">
  39647. <summary>
  39648. Represents the picture fill type.
  39649. </summary>
  39650. </member>
  39651. <member name="F:Aspose.Cells.Drawing.FillPictureType.Stretch">
  39652. <summary>
  39653. Stretch
  39654. </summary>
  39655. </member>
  39656. <member name="F:Aspose.Cells.Drawing.FillPictureType.Stack">
  39657. <summary>
  39658. Stack
  39659. </summary>
  39660. </member>
  39661. <member name="F:Aspose.Cells.Drawing.FillPictureType.StackAndScale">
  39662. <summary>
  39663. StackAndScale
  39664. </summary>
  39665. </member>
  39666. <member name="T:Aspose.Cells.Drawing.MsoDrawingType">
  39667. <summary>
  39668. Represents office drawing objects type.
  39669. </summary>
  39670. </member>
  39671. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Group">
  39672. <summary>
  39673. Group
  39674. </summary>
  39675. </member>
  39676. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Line">
  39677. <summary>
  39678. Line
  39679. </summary>
  39680. </member>
  39681. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Rectangle">
  39682. <summary>
  39683. Rectangle
  39684. </summary>
  39685. </member>
  39686. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Oval">
  39687. <summary>
  39688. Oval
  39689. </summary>
  39690. </member>
  39691. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Arc">
  39692. <summary>
  39693. Arc
  39694. </summary>
  39695. </member>
  39696. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Chart">
  39697. <summary>
  39698. Chart
  39699. </summary>
  39700. </member>
  39701. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.TextBox">
  39702. <summary>
  39703. TextBox
  39704. </summary>
  39705. </member>
  39706. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Button">
  39707. <summary>
  39708. Button
  39709. </summary>
  39710. </member>
  39711. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Picture">
  39712. <summary>
  39713. Picture
  39714. </summary>
  39715. </member>
  39716. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Polygon">
  39717. <summary>
  39718. Polygon
  39719. </summary>
  39720. </member>
  39721. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.CheckBox">
  39722. <summary>
  39723. CheckBox
  39724. </summary>
  39725. </member>
  39726. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.RadioButton">
  39727. <summary>
  39728. RadioButton
  39729. </summary>
  39730. </member>
  39731. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Label">
  39732. <summary>
  39733. Label
  39734. </summary>
  39735. </member>
  39736. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.DialogBox">
  39737. <summary>
  39738. DialogBox
  39739. </summary>
  39740. </member>
  39741. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Spinner">
  39742. <summary>
  39743. Spinner
  39744. </summary>
  39745. </member>
  39746. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.ScrollBar">
  39747. <summary>
  39748. ScrollBar
  39749. </summary>
  39750. </member>
  39751. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.ListBox">
  39752. <summary>
  39753. ListBox
  39754. </summary>
  39755. </member>
  39756. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.GroupBox">
  39757. <summary>
  39758. GroupBox
  39759. </summary>
  39760. </member>
  39761. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.ComboBox">
  39762. <summary>
  39763. ComboBox
  39764. </summary>
  39765. </member>
  39766. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Comment">
  39767. <summary>
  39768. Comment
  39769. </summary>
  39770. </member>
  39771. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.OleObject">
  39772. <summary>
  39773. OleObject
  39774. </summary>
  39775. </member>
  39776. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.CellsDrawing">
  39777. <summary>
  39778. Only for preserving the drawing object in the template file.
  39779. </summary>
  39780. </member>
  39781. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Unknown">
  39782. <summary>
  39783. Only for preserving the drawing object in the xlsx file.
  39784. </summary>
  39785. </member>
  39786. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Slicer">
  39787. <summary>
  39788. Slicer
  39789. </summary>
  39790. </member>
  39791. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.WebExtension">
  39792. <summary>
  39793. Web extension
  39794. </summary>
  39795. </member>
  39796. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.SmartArt">
  39797. <summary>
  39798. Smart Art
  39799. </summary>
  39800. </member>
  39801. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.CustomXml">
  39802. <summary>
  39803. Custom xml shape ,such as Ink.
  39804. </summary>
  39805. </member>
  39806. <member name="F:Aspose.Cells.Drawing.MsoDrawingType.Model3D">
  39807. <summary>
  39808. 3D Model
  39809. </summary>
  39810. </member>
  39811. <member name="T:Aspose.Cells.Drawing.MsoPresetTextEffect">
  39812. <summary>
  39813. Represents preset text effect type of WordArt.
  39814. </summary>
  39815. </member>
  39816. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect1">
  39817. <summary>
  39818. TextEffect1
  39819. </summary>
  39820. </member>
  39821. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect2">
  39822. <summary>
  39823. TextEffect2
  39824. </summary>
  39825. </member>
  39826. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect3">
  39827. <summary>
  39828. TextEffect3
  39829. </summary>
  39830. </member>
  39831. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect4">
  39832. <summary>
  39833. TextEffect4
  39834. </summary>
  39835. </member>
  39836. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect5">
  39837. <summary>
  39838. TextEffect5
  39839. </summary>
  39840. </member>
  39841. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect6">
  39842. <summary>
  39843. TextEffect6
  39844. </summary>
  39845. </member>
  39846. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect7">
  39847. <summary>
  39848. TextEffect7
  39849. </summary>
  39850. </member>
  39851. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect8">
  39852. <summary>
  39853. TextEffect8
  39854. </summary>
  39855. </member>
  39856. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect9">
  39857. <summary>
  39858. TextEffect9
  39859. </summary>
  39860. </member>
  39861. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect10">
  39862. <summary>
  39863. TextEffect10
  39864. </summary>
  39865. </member>
  39866. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect11">
  39867. <summary>
  39868. TextEffect11
  39869. </summary>
  39870. </member>
  39871. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect12">
  39872. <summary>
  39873. TextEffect12
  39874. </summary>
  39875. </member>
  39876. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect13">
  39877. <summary>
  39878. TextEffect13
  39879. </summary>
  39880. </member>
  39881. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect14">
  39882. <summary>
  39883. TextEffect14
  39884. </summary>
  39885. </member>
  39886. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect15">
  39887. <summary>
  39888. TextEffect15
  39889. </summary>
  39890. </member>
  39891. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect16">
  39892. <summary>
  39893. TextEffect16
  39894. </summary>
  39895. </member>
  39896. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect17">
  39897. <summary>
  39898. TextEffect17
  39899. </summary>
  39900. </member>
  39901. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect18">
  39902. <summary>
  39903. TextEffect18
  39904. </summary>
  39905. </member>
  39906. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect19">
  39907. <summary>
  39908. TextEffect19
  39909. </summary>
  39910. </member>
  39911. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect20">
  39912. <summary>
  39913. TextEffect20
  39914. </summary>
  39915. </member>
  39916. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect21">
  39917. <summary>
  39918. TextEffect21
  39919. </summary>
  39920. </member>
  39921. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect22">
  39922. <summary>
  39923. TextEffect22
  39924. </summary>
  39925. </member>
  39926. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect23">
  39927. <summary>
  39928. TextEffect23
  39929. </summary>
  39930. </member>
  39931. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect24">
  39932. <summary>
  39933. TextEffect24
  39934. </summary>
  39935. </member>
  39936. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect25">
  39937. <summary>
  39938. TextEffect25
  39939. </summary>
  39940. </member>
  39941. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect26">
  39942. <summary>
  39943. TextEffect26
  39944. </summary>
  39945. </member>
  39946. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect27">
  39947. <summary>
  39948. TextEffect27
  39949. </summary>
  39950. </member>
  39951. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect28">
  39952. <summary>
  39953. TextEffect28
  39954. </summary>
  39955. </member>
  39956. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect29">
  39957. <summary>
  39958. TextEffect29
  39959. </summary>
  39960. </member>
  39961. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffect.TextEffect30">
  39962. <summary>
  39963. TextEffect30
  39964. </summary>
  39965. </member>
  39966. <member name="T:Aspose.Cells.Drawing.MsoPresetTextEffectShape">
  39967. <summary>
  39968. Represents preset text effect shape type of WordArt.
  39969. </summary>
  39970. </member>
  39971. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.PlainText">
  39972. <summary>
  39973. PlainText
  39974. </summary>
  39975. </member>
  39976. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Stop">
  39977. <summary>
  39978. Stop
  39979. </summary>
  39980. </member>
  39981. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.TriangleUp">
  39982. <summary>
  39983. TriangleUp
  39984. </summary>
  39985. </member>
  39986. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.TriangleDown">
  39987. <summary>
  39988. TriangleDown
  39989. </summary>
  39990. </member>
  39991. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ChevronUp">
  39992. <summary>
  39993. ChevronUp
  39994. </summary>
  39995. </member>
  39996. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ChevronDown">
  39997. <summary>
  39998. ChevronDown
  39999. </summary>
  40000. </member>
  40001. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.RingInside">
  40002. <summary>
  40003. RingInside
  40004. </summary>
  40005. </member>
  40006. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.RingOutside">
  40007. <summary>
  40008. RingOutside
  40009. </summary>
  40010. </member>
  40011. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ArchUpCurve">
  40012. <summary>
  40013. ArchUpCurve
  40014. </summary>
  40015. </member>
  40016. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ArchDownCurve">
  40017. <summary>
  40018. ArchDownCurve
  40019. </summary>
  40020. </member>
  40021. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CircleCurve">
  40022. <summary>
  40023. CircleCurve
  40024. </summary>
  40025. </member>
  40026. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ButtonCurve">
  40027. <summary>
  40028. ButtonCurve
  40029. </summary>
  40030. </member>
  40031. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ArchUpPour">
  40032. <summary>
  40033. ArchUpPour
  40034. </summary>
  40035. </member>
  40036. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ArchDownPour">
  40037. <summary>
  40038. ArchDownPour
  40039. </summary>
  40040. </member>
  40041. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CirclePour">
  40042. <summary>
  40043. CirclePour
  40044. </summary>
  40045. </member>
  40046. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.ButtonPour">
  40047. <summary>
  40048. ButtonPour
  40049. </summary>
  40050. </member>
  40051. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CurveUp">
  40052. <summary>
  40053. CurveUp
  40054. </summary>
  40055. </member>
  40056. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CurveDown">
  40057. <summary>
  40058. CurveDown
  40059. </summary>
  40060. </member>
  40061. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CanUp">
  40062. <summary>
  40063. CanUp
  40064. </summary>
  40065. </member>
  40066. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CanDown">
  40067. <summary>
  40068. CanDown
  40069. </summary>
  40070. </member>
  40071. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Wave1">
  40072. <summary>
  40073. Wave1
  40074. </summary>
  40075. </member>
  40076. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Wave2">
  40077. <summary>
  40078. Wave2
  40079. </summary>
  40080. </member>
  40081. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DoubleWave1">
  40082. <summary>
  40083. DoubleWave1
  40084. </summary>
  40085. </member>
  40086. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DoubleWave2">
  40087. <summary>
  40088. DoubleWave2
  40089. </summary>
  40090. </member>
  40091. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Inflate">
  40092. <summary>
  40093. Inflate
  40094. </summary>
  40095. </member>
  40096. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Deflate">
  40097. <summary>
  40098. Deflate
  40099. </summary>
  40100. </member>
  40101. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.InflateBottom">
  40102. <summary>
  40103. InflateBottom
  40104. </summary>
  40105. </member>
  40106. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DeflateBottom">
  40107. <summary>
  40108. DeflateBottom
  40109. </summary>
  40110. </member>
  40111. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.InflateTop">
  40112. <summary>
  40113. InflateTop
  40114. </summary>
  40115. </member>
  40116. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DeflateTop">
  40117. <summary>
  40118. DeflateTop
  40119. </summary>
  40120. </member>
  40121. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DeflateInflate">
  40122. <summary>
  40123. DeflateInflate
  40124. </summary>
  40125. </member>
  40126. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.DeflateInflateDeflate">
  40127. <summary>
  40128. DeflateInflateDeflate
  40129. </summary>
  40130. </member>
  40131. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.FadeRight">
  40132. <summary>
  40133. FadeRight
  40134. </summary>
  40135. </member>
  40136. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.FadeLeft">
  40137. <summary>
  40138. FadeLeft
  40139. </summary>
  40140. </member>
  40141. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.FadeUp">
  40142. <summary>
  40143. FadeUp
  40144. </summary>
  40145. </member>
  40146. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.FadeDown">
  40147. <summary>
  40148. FadeDown
  40149. </summary>
  40150. </member>
  40151. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.SlantUp">
  40152. <summary>
  40153. SlantUp
  40154. </summary>
  40155. </member>
  40156. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.SlantDown">
  40157. <summary>
  40158. SlantDown
  40159. </summary>
  40160. </member>
  40161. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CascadeUp">
  40162. <summary>
  40163. CascadeUp
  40164. </summary>
  40165. </member>
  40166. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.CascadeDown">
  40167. <summary>
  40168. CascadeDown
  40169. </summary>
  40170. </member>
  40171. <member name="F:Aspose.Cells.Drawing.MsoPresetTextEffectShape.Mixed">
  40172. <summary>
  40173. Mixed
  40174. </summary>
  40175. </member>
  40176. <member name="T:Aspose.Cells.Drawing.TextEffectFormat">
  40177. <summary>
  40178. Contains properties and methods that apply to WordArt objects.
  40179. </summary>
  40180. <example>
  40181. <code>
  40182. [C#]
  40183. //Instantiating a Workbook object
  40184. Workbook workbook = new Workbook();
  40185. Shapes shapes = workbook.Worksheets[0].Shapes;
  40186. shapes.AddTextEffect(MsoPresetTextEffect.TextEffect1, "Aspose", "Arial", 30, false, false, 0, 0, 0, 0, 100, 200);
  40187. TextEffectFormat textEffectFormat = shapes[0].TextEffect;
  40188. textEffectFormat.SetTextEffect(MsoPresetTextEffect.TextEffect10);
  40189. workbook.Save("C:\\Book1.xls");
  40190. [Visual Basic]
  40191. 'Instantiating a Workbook object
  40192. Dim workbook As Workbook = New Workbook()
  40193. Dim shapes As Shapes = workbook.Worksheets(0).Shapes
  40194. shapes.AddTextEffect(MsoPresetTextEffect.TextEffect1, "Aspose", "Arial", 30, false, false, 0, 0, 0, 0, 100, 200)
  40195. Dim textEffectFormat As TextEffectFormat = shapes(0).TextEffect
  40196. TextEffectFormat.SetTextEffect(MsoPresetTextEffect.TextEffect10)
  40197. workbook.Save("C:\\Book1.xls")
  40198. </code>
  40199. </example>
  40200. </member>
  40201. <member name="M:Aspose.Cells.Drawing.TextEffectFormat.SetTextEffect(Aspose.Cells.Drawing.MsoPresetTextEffect)">
  40202. <summary>
  40203. Sets the preset text effect.
  40204. </summary>
  40205. <param name="effect">The preset text effect.</param>
  40206. </member>
  40207. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.Text">
  40208. <summary>
  40209. The text in the WordArt.
  40210. </summary>
  40211. </member>
  40212. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.FontName">
  40213. <summary>
  40214. The name of the font used in the WordArt.
  40215. </summary>
  40216. </member>
  40217. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.FontBold">
  40218. <summary>
  40219. Indicates whether font is bold.
  40220. </summary>
  40221. </member>
  40222. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.FontItalic">
  40223. <summary>
  40224. Indicates whether font is italic.
  40225. </summary>
  40226. </member>
  40227. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.RotatedChars">
  40228. <summary>
  40229. If true,characters in the specified WordArt are rotated 90 degrees relative to the WordArt's bounding shape.
  40230. </summary>
  40231. </member>
  40232. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.FontSize">
  40233. <summary>
  40234. The size (in points) of the font used in the WordArt.
  40235. </summary>
  40236. </member>
  40237. <member name="P:Aspose.Cells.Drawing.TextEffectFormat.PresetShape">
  40238. <summary>
  40239. Gets and sets the preset shape type.
  40240. </summary>
  40241. </member>
  40242. <member name="T:Aspose.Cells.Drawing.MsoFillFormat">
  40243. <summary>
  40244. Represents fill formatting for a shape.
  40245. </summary>
  40246. </member>
  40247. <member name="M:Aspose.Cells.Drawing.MsoFillFormat.SetOneColorGradient(System.Drawing.Color,System.Double,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  40248. <summary>
  40249. Sets the specified fill to a one-color gradient.
  40250. </summary>
  40251. <param name="color">One gradient color.</param>
  40252. <param name="degree">The gradient degree. Can be a value from 0.0 (dark) through 1.0 (light).</param>
  40253. <param name="style">Gradient shading style.</param>
  40254. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  40255. </member>
  40256. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.ForeColor">
  40257. <summary>
  40258. Gets and sets the fill fore color.
  40259. </summary>
  40260. </member>
  40261. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.Transparency">
  40262. <summary>
  40263. Returns or sets the degree of transparency of the specified fill as a value from 0.0 (opaque) through 1.0 (clear).
  40264. </summary>
  40265. </member>
  40266. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.BackColor">
  40267. <summary>
  40268. Gets and sets the file back color.
  40269. </summary>
  40270. </member>
  40271. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.ImageData">
  40272. <summary>
  40273. Gets and sets the Texture and Picture fill data.
  40274. </summary>
  40275. </member>
  40276. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.Texture">
  40277. <summary>
  40278. Gets the texture fill type.
  40279. </summary>
  40280. </member>
  40281. <member name="P:Aspose.Cells.Drawing.MsoFillFormat.IsVisible">
  40282. <summary>
  40283. Indicates whether there is fill.
  40284. </summary>
  40285. </member>
  40286. <member name="T:Aspose.Cells.Drawing.MsoFormatPicture">
  40287. <summary>
  40288. Represents the picture format.
  40289. </summary>
  40290. </member>
  40291. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.TopCrop">
  40292. <summary>
  40293. Represents the location of the top of the crop rectangle expressed, expressed as a ratio of the image's height.
  40294. </summary>
  40295. </member>
  40296. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.BottomCrop">
  40297. <summary>
  40298. Represents the location of the bottom of the crop rectangle expressed, expressed as a ratio of the image's height.
  40299. </summary>
  40300. </member>
  40301. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.LeftCrop">
  40302. <summary>
  40303. Represents the location of the left of the crop rectangle expressed, expressed as a ratio of the image's width.
  40304. </summary>
  40305. </member>
  40306. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.RightCrop">
  40307. <summary>
  40308. Represents the location of the right of the crop rectangle expressed, expressed as a ratio of the image's width.
  40309. </summary>
  40310. </member>
  40311. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.TransparentColor">
  40312. <summary>
  40313. Gets and sets the transparent color of the picture.
  40314. </summary>
  40315. </member>
  40316. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.Contrast">
  40317. <summary>
  40318. Represents the contrast modification for the picture.in unit of percentage.
  40319. </summary>
  40320. <remarks>
  40321. It is between -100% and 100%. It works same as Excel 2007 or above version.
  40322. </remarks>
  40323. </member>
  40324. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.Brightness">
  40325. <summary>
  40326. Represents the brightness modification for the picture in unit of percentage.
  40327. </summary>
  40328. <remarks>
  40329. It is between -100% and 100%. It works same as Excel 2007 or above version.
  40330. </remarks>
  40331. </member>
  40332. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.Gamma">
  40333. <summary>
  40334. Represents gamma of the picture.
  40335. </summary>
  40336. </member>
  40337. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.IsBiLevel">
  40338. <summary>
  40339. Indicates whether this picture should be displayed in two-color black and white.
  40340. </summary>
  40341. </member>
  40342. <member name="P:Aspose.Cells.Drawing.MsoFormatPicture.IsGray">
  40343. <summary>
  40344. Indicates whether this picture SHOULD be displayed in grayscale.
  40345. </summary>
  40346. </member>
  40347. <member name="T:Aspose.Cells.Drawing.MsoLineDashStyle">
  40348. <summary>
  40349. Represents style of dash drawing lines.
  40350. </summary>
  40351. </member>
  40352. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.Dash">
  40353. <summary>
  40354. Represent a dash line.
  40355. </summary>
  40356. </member>
  40357. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.DashDot">
  40358. <summary>
  40359. Represents a dash-dot line.
  40360. </summary>
  40361. </member>
  40362. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.DashDotDot">
  40363. <summary>
  40364. Represents a dash-dot-dot line.
  40365. </summary>
  40366. </member>
  40367. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.DashLongDash">
  40368. <summary>
  40369. Represents a long dash-short dash line.
  40370. </summary>
  40371. </member>
  40372. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.DashLongDashDot">
  40373. <summary>
  40374. Represents a long dash-short dash-dot line.
  40375. </summary>
  40376. </member>
  40377. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.RoundDot">
  40378. <summary>
  40379. Represents a round-dot line.
  40380. </summary>
  40381. </member>
  40382. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.Solid">
  40383. <summary>
  40384. Represent a solid line.
  40385. </summary>
  40386. </member>
  40387. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.SquareDot">
  40388. <summary>
  40389. Represents a square-dot line.
  40390. </summary>
  40391. </member>
  40392. <member name="F:Aspose.Cells.Drawing.MsoLineDashStyle.Custom">
  40393. <summary>
  40394. Custom dash style.
  40395. </summary>
  40396. </member>
  40397. <member name="T:Aspose.Cells.Drawing.MsoLineFormat">
  40398. <summary>
  40399. Represents line and arrowhead formatting.
  40400. </summary>
  40401. </member>
  40402. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.IsVisible">
  40403. <summary>
  40404. Indicates whether the object is visible.
  40405. </summary>
  40406. </member>
  40407. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.Style">
  40408. <summary>
  40409. Returns a Style object that represents the style of the specified range.
  40410. </summary>
  40411. </member>
  40412. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.ForeColor">
  40413. <summary>
  40414. Gets and sets the border line fore color.
  40415. </summary>
  40416. </member>
  40417. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.BackColor">
  40418. <summary>
  40419. Gets and sets the border line back color.
  40420. </summary>
  40421. </member>
  40422. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.DashStyle">
  40423. <summary>
  40424. Gets or sets the dash style for the specified line.
  40425. </summary>
  40426. </member>
  40427. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.Transparency">
  40428. <summary>
  40429. Returns or sets the degree of transparency of the specified fill as a value from 0.0 (opaque) through 1.0 (clear).
  40430. </summary>
  40431. </member>
  40432. <member name="P:Aspose.Cells.Drawing.MsoLineFormat.Weight">
  40433. <summary>
  40434. Returns or sets the weight of the line ,in units of pt.
  40435. </summary>
  40436. </member>
  40437. <member name="T:Aspose.Cells.Drawing.MsoLineStyle">
  40438. <summary>
  40439. Represents style of drawing lines.
  40440. </summary>
  40441. </member>
  40442. <member name="F:Aspose.Cells.Drawing.MsoLineStyle.Single">
  40443. <summary>
  40444. Single line (of width lineWidth)
  40445. </summary>
  40446. </member>
  40447. <member name="F:Aspose.Cells.Drawing.MsoLineStyle.ThickBetweenThin">
  40448. <summary>
  40449. Three lines, thin, thick, thin
  40450. </summary>
  40451. </member>
  40452. <member name="F:Aspose.Cells.Drawing.MsoLineStyle.ThinThick">
  40453. <summary>
  40454. Double lines, one thin, one thick
  40455. </summary>
  40456. </member>
  40457. <member name="F:Aspose.Cells.Drawing.MsoLineStyle.ThickThin">
  40458. <summary>
  40459. Double lines, one thick, one thin
  40460. </summary>
  40461. </member>
  40462. <member name="F:Aspose.Cells.Drawing.MsoLineStyle.ThinThin">
  40463. <summary>
  40464. Double lines of equal width
  40465. </summary>
  40466. </member>
  40467. <member name="T:Aspose.Cells.Drawing.MsoTextFrame">
  40468. <summary>
  40469. Represents the text frame in a Shape object.
  40470. </summary>
  40471. </member>
  40472. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.AutoSize">
  40473. <summary>
  40474. Indicates if size of shape is adjusted automatically according to its content.
  40475. </summary>
  40476. </member>
  40477. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.IsAutoMargin">
  40478. <summary>
  40479. Indicates whether the margin is auto calculated.
  40480. </summary>
  40481. </member>
  40482. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.RotateTextWithShape">
  40483. <summary>
  40484. Indicates whether rotating text with shape.
  40485. </summary>
  40486. </member>
  40487. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.LeftMarginPt">
  40488. <summary>
  40489. Returns the left margin in unit of Points
  40490. </summary>
  40491. </member>
  40492. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.RightMarginPt">
  40493. <summary>
  40494. Returns the right margin in unit of Points
  40495. </summary>
  40496. </member>
  40497. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.TopMarginPt">
  40498. <summary>
  40499. Returns the top margin in unit of Points
  40500. </summary>
  40501. </member>
  40502. <member name="P:Aspose.Cells.Drawing.MsoTextFrame.BottomMarginPt">
  40503. <summary>
  40504. Returns the bottom margin in unit of Points
  40505. </summary>
  40506. </member>
  40507. <member name="T:Aspose.Cells.Name">
  40508. <summary>
  40509. Represents a defined name for a range of cells.
  40510. </summary>
  40511. <example>
  40512. <code>
  40513. [C#]
  40514. //Instantiating a Workbook object
  40515. Workbook workbook = new Workbook();
  40516. //Accessing the first worksheet in the Excel file
  40517. Worksheet worksheet = workbook.Worksheets[0];
  40518. //Creating a named range
  40519. Range range = worksheet.Cells.CreateRange("B4", "G14");
  40520. //Setting the name of the named range
  40521. range.Name = "TestRange";
  40522. //Saving the modified Excel file in default (that is Excel 2000) format
  40523. workbook.Save("C:\\output.xls");
  40524. [Visual Basic]
  40525. 'Instantiating a Workbook object
  40526. Dim workbook As Workbook = New Workbook()
  40527. 'Accessing the first worksheet in the Excel file
  40528. Dim worksheet As Worksheet = workbook.Worksheets(0)
  40529. 'Creating a named range
  40530. Dim range As Range = worksheet.Cells.CreateRange("B4", "G14")
  40531. 'Setting the name of the named range
  40532. range.Name = "TestRange"
  40533. 'Saving the modified Excel file in default (that is Excel 2000) format
  40534. workbook.Save("C:\\output.xls")
  40535. </code>
  40536. </example>
  40537. </member>
  40538. <member name="M:Aspose.Cells.Name.GetRefersTo(System.Boolean,System.Boolean)">
  40539. <summary>
  40540. Get the reference of this Name.
  40541. </summary>
  40542. <param name="isR1C1">Whether the reference needs to be formatted as R1C1.</param>
  40543. <param name="isLocal">Whether the reference needs to be formatted by locale.</param>
  40544. </member>
  40545. <member name="M:Aspose.Cells.Name.SetRefersTo(System.String,System.Boolean,System.Boolean)">
  40546. <summary>
  40547. Set the reference of this Name.
  40548. </summary>
  40549. <param name="refersTo">The reference.</param>
  40550. <param name="isR1C1">Whether the reference is R1C1 format.</param>
  40551. <param name="isLocal">Whether the reference is locale formatted.</param>
  40552. </member>
  40553. <member name="M:Aspose.Cells.Name.ToString">
  40554. <summary>
  40555. Returns a string represents the current Range object.
  40556. </summary>
  40557. <returns>
  40558. </returns>
  40559. </member>
  40560. <member name="M:Aspose.Cells.Name.GetRanges">
  40561. <summary>
  40562. Gets all ranges referred by this name.
  40563. </summary>
  40564. <returns>All ranges.</returns>
  40565. </member>
  40566. <member name="M:Aspose.Cells.Name.GetRanges(System.Boolean)">
  40567. <summary>
  40568. Gets all ranges referred by this name.
  40569. </summary>
  40570. <param name="recalculate">whether recalculate it if this name has been calculated before this invocation.</param>
  40571. <returns>All ranges.</returns>
  40572. </member>
  40573. <member name="M:Aspose.Cells.Name.GetReferredAreas(System.Boolean)">
  40574. <summary>
  40575. Gets all references referred by this name.
  40576. </summary>
  40577. <param name="recalculate">whether recalculate it if this name has been calculated before this invocation.</param>
  40578. <returns>All ranges.</returns>
  40579. </member>
  40580. <member name="M:Aspose.Cells.Name.GetRange">
  40581. <summary>
  40582. Gets the range if this name refers to a range.
  40583. </summary>
  40584. <returns>The range.</returns>
  40585. </member>
  40586. <member name="M:Aspose.Cells.Name.GetRange(System.Boolean)">
  40587. <summary>
  40588. Gets the range if this name refers to a range
  40589. </summary>
  40590. <param name="recalculate">whether recalculate it if this name has been calculated before this invocation.</param>
  40591. <returns>The range.</returns>
  40592. </member>
  40593. <member name="M:Aspose.Cells.Name.GetRange(System.Int32,System.Int32,System.Int32)">
  40594. <summary>
  40595. Gets the range if this name refers to a range.
  40596. If the reference of this name is not absolute, the range may be different for different cell.
  40597. </summary>
  40598. <param name="sheetIndex">The according sheet index.</param>
  40599. <param name="row">The according row index.</param>
  40600. <param name="column">The according column index</param>
  40601. <returns>The range.</returns>
  40602. </member>
  40603. <member name="P:Aspose.Cells.Name.Comment">
  40604. <summary>
  40605. Gets and sets the comment of the name.
  40606. Only applies for Excel 2007.
  40607. </summary>
  40608. </member>
  40609. <member name="P:Aspose.Cells.Name.Text">
  40610. <summary>
  40611. Gets the name text of the object.
  40612. </summary>
  40613. </member>
  40614. <member name="P:Aspose.Cells.Name.FullText">
  40615. <summary>
  40616. Gets the name full text of the object with the scope setting.
  40617. </summary>
  40618. </member>
  40619. <member name="P:Aspose.Cells.Name.RefersTo">
  40620. <summary>
  40621. Returns or sets the formula that the name is defined to refer to, beginning with an equal sign.
  40622. </summary>
  40623. </member>
  40624. <member name="P:Aspose.Cells.Name.R1C1RefersTo">
  40625. <summary>
  40626. Gets or sets a R1C1 reference of the <see cref="T:Aspose.Cells.Name" />.
  40627. </summary>
  40628. </member>
  40629. <member name="P:Aspose.Cells.Name.IsReferred">
  40630. <summary>
  40631. Indicates whether this name is referred by other formulas.
  40632. </summary>
  40633. </member>
  40634. <member name="P:Aspose.Cells.Name.IsVisible">
  40635. <summary>
  40636. Indicates whether the name is visible.
  40637. </summary>
  40638. </member>
  40639. <member name="P:Aspose.Cells.Name.SheetIndex">
  40640. <summary>
  40641. Indicates this name belongs to Workbook or Worksheet.
  40642. 0 = Global name, otherwise index to sheet (one-based)
  40643. </summary>
  40644. </member>
  40645. <member name="T:Aspose.Cells.NameCollection">
  40646. <summary>
  40647. Represents a collection of all the <see cref="T:Aspose.Cells.Name" /> objects in the spreadsheet.
  40648. </summary>
  40649. </member>
  40650. <member name="M:Aspose.Cells.NameCollection.Add(System.String)">
  40651. <summary>
  40652. Defines a new name.
  40653. </summary>
  40654. <param name="text">The text to use as the name.</param>
  40655. <returns>
  40656. <see cref="T:Aspose.Cells.Name" /> object index.</returns>
  40657. <remarks>Name cannot include spaces and cannot look like cell references.</remarks>
  40658. </member>
  40659. <member name="M:Aspose.Cells.NameCollection.Remove(System.String[])">
  40660. <summary>
  40661. Remove an array of name
  40662. </summary>
  40663. <param name="names">The names' text.</param>
  40664. </member>
  40665. <member name="M:Aspose.Cells.NameCollection.Remove(System.String)">
  40666. <summary>
  40667. Remove the name.
  40668. </summary>
  40669. <param name="text">The name text.</param>
  40670. </member>
  40671. <member name="M:Aspose.Cells.NameCollection.RemoveAt(System.Int32)">
  40672. <summary>
  40673. Remove the name at the specific index.
  40674. </summary>
  40675. <param name="index">index of the Name to be removed.</param>
  40676. <remarks>
  40677. Please make sure that the name is not referred by the other formulas before calling the method.
  40678. And if the name is referred, setting Name.RefersTo as null is better.
  40679. </remarks>
  40680. </member>
  40681. <member name="M:Aspose.Cells.NameCollection.Clear">
  40682. <summary>
  40683. Remove all defined names which are not referenced by the formulas and data source.
  40684. If the defined name is referred, we only set Name.ReferTo as null and hide them.
  40685. </summary>
  40686. </member>
  40687. <member name="M:Aspose.Cells.NameCollection.RemoveDuplicateNames">
  40688. <summary>
  40689. Remove the duplicate defined names
  40690. </summary>
  40691. </member>
  40692. <member name="M:Aspose.Cells.NameCollection.Sort">
  40693. <summary>
  40694. Sorts defined names.
  40695. </summary>
  40696. <remarks>If you create a large amount of named ranges in the Excel file, please call this method after all named ranges are created and before saving </remarks>
  40697. </member>
  40698. <member name="P:Aspose.Cells.NameCollection.Item(System.Int32)">
  40699. <summary>
  40700. Gets the <see cref="T:Aspose.Cells.Name" /> element at the specified index.
  40701. </summary>
  40702. <param name="index">The zero based index of the element.</param>
  40703. <returns>The element at the specified index.</returns>
  40704. </member>
  40705. <member name="P:Aspose.Cells.NameCollection.Item(System.String)">
  40706. <summary>
  40707. Gets the <see cref="T:Aspose.Cells.Name" /> element with the specified name.
  40708. </summary>
  40709. <param name="text">Name text.</param>
  40710. <returns>The element with the specified name.</returns>
  40711. </member>
  40712. <member name="T:Aspose.Cells.Charts.SeriesCollection">
  40713. <summary>
  40714. Encapsulates a collection of <see cref="T:Aspose.Cells.Charts.Series" /> objects.
  40715. </summary>
  40716. <example>
  40717. <code>
  40718. [C#]
  40719. //Instantiating a Workbook object
  40720. Workbook workbook = new Workbook();
  40721. //Adding a new worksheet to the Excel object
  40722. int sheetIndex = workbook.Worksheets.Add();
  40723. //Obtaining the reference of the newly added worksheet by passing its sheet index
  40724. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  40725. //Adding a sample value to "A1" cell
  40726. worksheet.Cells["A1"].PutValue(50);
  40727. //Adding a sample value to "A2" cell
  40728. worksheet.Cells["A2"].PutValue(100);
  40729. //Adding a sample value to "A3" cell
  40730. worksheet.Cells["A3"].PutValue(150);
  40731. //Adding a sample value to "A4" cell
  40732. worksheet.Cells["A4"].PutValue(200);
  40733. //Adding a sample value to "B1" cell
  40734. worksheet.Cells["B1"].PutValue(60);
  40735. //Adding a sample value to "B2" cell
  40736. worksheet.Cells["B2"].PutValue(32);
  40737. //Adding a sample value to "B3" cell
  40738. worksheet.Cells["B3"].PutValue(50);
  40739. //Adding a sample value to "B4" cell
  40740. worksheet.Cells["B4"].PutValue(40);
  40741. //Adding a sample value to "C1" cell as category data
  40742. worksheet.Cells["C1"].PutValue("Q1");
  40743. //Adding a sample value to "C2" cell as category data
  40744. worksheet.Cells["C2"].PutValue("Q2");
  40745. //Adding a sample value to "C3" cell as category data
  40746. worksheet.Cells["C3"].PutValue("Y1");
  40747. //Adding a sample value to "C4" cell as category data
  40748. worksheet.Cells["C4"].PutValue("Y2");
  40749. //Adding a chart to the worksheet
  40750. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  40751. //Accessing the instance of the newly added chart
  40752. Chart chart = worksheet.Charts[chartIndex];
  40753. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  40754. chart.NSeries.Add("A1:B4", true);
  40755. //Setting the data source for the category data of NSeries
  40756. chart.NSeries.CategoryData = "C1:C4";
  40757. //Saving the Excel file
  40758. workbook.Save("C:\\book1.xls");
  40759. [Visual Basic]
  40760. 'Instantiating a Workbook object
  40761. Dim workbook As Workbook = New Workbook()
  40762. 'Adding a new worksheet to the Excel object
  40763. Dim sheetIndex As Integer = workbook.Worksheets.Add()
  40764. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  40765. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  40766. 'Adding a sample value to "A1" cell
  40767. worksheet.Cells("A1").PutValue(50)
  40768. 'Adding a sample value to "A2" cell
  40769. worksheet.Cells("A2").PutValue(100)
  40770. 'Adding a sample value to "A3" cell
  40771. worksheet.Cells("A3").PutValue(150)
  40772. 'Adding a sample value to "A4" cell
  40773. worksheet.Cells("A4").PutValue(200)
  40774. 'Adding a sample value to "B1" cell
  40775. worksheet.Cells("B1").PutValue(60)
  40776. 'Adding a sample value to "B2" cell
  40777. worksheet.Cells("B2").PutValue(32)
  40778. 'Adding a sample value to "B3" cell
  40779. worksheet.Cells("B3").PutValue(50)
  40780. 'Adding a sample value to "B4" cell
  40781. worksheet.Cells("B4").PutValue(40)
  40782. 'Adding a sample value to "C1" cell as category data
  40783. worksheet.Cells("C1").PutValue("Q1")
  40784. 'Adding a sample value to "C2" cell as category data
  40785. worksheet.Cells("C2").PutValue("Q2")
  40786. 'Adding a sample value to "C3" cell as category data
  40787. worksheet.Cells("C3").PutValue("Y1")
  40788. 'Adding a sample value to "C4" cell as category data
  40789. worksheet.Cells("C4").PutValue("Y2")
  40790. 'Adding a chart to the worksheet
  40791. Dim chartIndex As Integer = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  40792. 'Accessing the instance of the newly added chart
  40793. Dim chart As Chart = worksheet.Charts(chartIndex)
  40794. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  40795. chart.NSeries.Add("A1:B4", True)
  40796. 'Setting the data source for the category data of NSeries
  40797. chart.NSeries.CategoryData = "C1:C4"
  40798. 'Saving the Excel file
  40799. workbook.Save("C:\book1.xls")
  40800. </code>
  40801. </example>
  40802. </member>
  40803. <member name="M:Aspose.Cells.Charts.SeriesCollection.GetSeriesByOrder(System.Int32)">
  40804. <summary>
  40805. Gets the <see cref="T:Aspose.Cells.Charts.Series" /> element by order.
  40806. </summary>
  40807. <param name="order">The order of series</param>
  40808. <returns>The element series</returns>
  40809. </member>
  40810. <member name="M:Aspose.Cells.Charts.SeriesCollection.RemoveAt(System.Int32)">
  40811. <summary>
  40812. Remove at a series at the specific index.
  40813. </summary>
  40814. <param name="index">The index.</param>
  40815. </member>
  40816. <member name="M:Aspose.Cells.Charts.SeriesCollection.ChangeSeriesOrder(System.Int32,System.Int32)">
  40817. <summary>
  40818. Directly changes the orders of the two series.
  40819. </summary>
  40820. <param name="sourceIndex">The current index</param>
  40821. <param name="destIndex">The dest index</param>
  40822. </member>
  40823. <member name="M:Aspose.Cells.Charts.SeriesCollection.AddR1C1(System.String,System.Boolean)">
  40824. <summary>
  40825. Adds the <see cref="T:Aspose.Cells.Charts.SeriesCollection" /> collection to a chart.
  40826. </summary>
  40827. <param name="area">Specifies values from which to plot the data series</param>
  40828. <param name="isVertical">Specifies whether to plot the series from a range of cell values by row or by column.</param>
  40829. <returns>Return the first index of the added ASeries in the NSeries.</returns>
  40830. <remarks>
  40831. <br>If set data on contiguous cells, use colon to seperate them.For example, R[1]C[1]:R[3]C[2].</br>
  40832. <br>If set data on contiguous cells, use comma to seperate them.For example,(R[1]C[1],R[3]C[2]).</br>
  40833. </remarks>
  40834. </member>
  40835. <member name="M:Aspose.Cells.Charts.SeriesCollection.Add(System.String,System.Boolean)">
  40836. <summary>
  40837. Adds the <see cref="T:Aspose.Cells.Charts.SeriesCollection" /> collection to a chart.
  40838. </summary>
  40839. <param name="area">Specifies values from which to plot the data series</param>
  40840. <param name="isVertical">Specifies whether to plot the series from a range of cell values by row or by column.</param>
  40841. <returns>Return the first index of the added ASeries in the NSeries.</returns>
  40842. <remarks>
  40843. <br>If set data on contiguous cells, use colon to seperate them.For example, $C$2:$C$5.</br>
  40844. <br>If set data on non contiguous cells, use comma to seperate them.For example: ($C$2,$D$5).</br>
  40845. </remarks>
  40846. </member>
  40847. <member name="M:Aspose.Cells.Charts.SeriesCollection.Clear">
  40848. <summary>
  40849. Clears the collection
  40850. </summary>
  40851. </member>
  40852. <member name="P:Aspose.Cells.Charts.SeriesCollection.Item(System.Int32)">
  40853. <summary>
  40854. Gets the <see cref="T:Aspose.Cells.Charts.Series" /> element at the specified index.
  40855. </summary>
  40856. <param name="index">The zero based index of the element.</param>
  40857. <returns>The element at the specified index.</returns>
  40858. </member>
  40859. <member name="P:Aspose.Cells.Charts.SeriesCollection.CategoryData">
  40860. <summary>
  40861. Gets or sets the range of category Axis values.
  40862. It can be a range of cells (such as, "d1:e10"),
  40863. or a sequence of values (such as,"{2,6,8,10}").
  40864. </summary>
  40865. </member>
  40866. <member name="P:Aspose.Cells.Charts.SeriesCollection.SecondCatergoryData">
  40867. <summary>
  40868. Gets or sets the range of second category Axis values.
  40869. It can be a range of cells (such as, "d1:e10"),
  40870. or a sequence of values (such as,"{2,6,8,10}").
  40871. Only effects when some ASerieses plot on the second axis.
  40872. </summary>
  40873. <remarks>
  40874. NOTE: This member is now obsolete. Instead,
  40875. please use SeriesCollection.SecondCategoryData property.
  40876. This property will be removed 12 months later since February 2014.
  40877. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  40878. </member>
  40879. <member name="P:Aspose.Cells.Charts.SeriesCollection.SecondCategoryData">
  40880. <summary>
  40881. Gets or sets the range of second category Axis values.
  40882. It can be a range of cells (such as, "d1:e10"),
  40883. or a sequence of values (such as,"{2,6,8,10}").
  40884. Only effects when some ASerieses plot on the second axis.
  40885. </summary>
  40886. </member>
  40887. <member name="P:Aspose.Cells.Charts.SeriesCollection.IsColorVaried">
  40888. <summary>
  40889. Represents if the color of points is varied.
  40890. </summary>
  40891. </member>
  40892. <member name="T:Aspose.Cells.Drawing.OleObject">
  40893. <summary>
  40894. Represents an OleObject in a worksheet.
  40895. </summary>
  40896. <example>
  40897. <code>
  40898. [C#]
  40899. //Instantiate a new Workbook.
  40900. Workbook workbook = new Workbook();
  40901. //Get the first worksheet.
  40902. Worksheet sheet = workbook.Worksheets[0];
  40903. //Define a string variable to store the image path.
  40904. string ImageUrl = @"C:\school.jpg";
  40905. //Get the picture into the streams.
  40906. FileStream fs = File.OpenRead(ImageUrl);
  40907. //Define a byte array.
  40908. byte[] imageData = new Byte[fs.Length];
  40909. //Obtain the picture into the array of bytes from streams.
  40910. fs.Read(imageData, 0, imageData.Length);
  40911. //Close the stream.
  40912. fs.Close();
  40913. //Get an excel file path in a variable.
  40914. string path = @"C:\Book1.xls";
  40915. //Get the file into the streams.
  40916. fs = File.OpenRead(path);
  40917. //Define an array of bytes.
  40918. byte[] objectData = new Byte[fs.Length];
  40919. //Store the file from streams.
  40920. fs.Read(objectData, 0, objectData.Length);
  40921. //Close the stream.
  40922. fs.Close();
  40923. //Add an Ole object into the worksheet with the image
  40924. //shown in MS Excel.
  40925. sheet.OleObjects.Add(14, 3, 200, 220, imageData);
  40926. //Set embedded ole object data.
  40927. sheet.OleObjects[0].ObjectData = objectData;
  40928. //Save the excel file
  40929. workbook.Save(@"C:\oleobjects.xls");
  40930. [Visual Basic]
  40931. 'Instantiate a new Workbook.
  40932. Dim workbook As Workbook = New Workbook()
  40933. 'Get the first worksheet.
  40934. Dim sheet As Worksheet = workbook.Worksheets(0)
  40935. 'Define a string variable to store the image path.
  40936. Dim ImageUrl As String = @"C:\school.jpg"
  40937. 'Get the picture into the streams.
  40938. Dim fs As FileStream = File.OpenRead(ImageUrl)
  40939. 'Define a byte array.
  40940. Dim imageData(fs.Length) As Byte
  40941. 'Obtain the picture into the array of bytes from streams.
  40942. fs.Read(imageData, 0, imageData.Length)
  40943. 'Close the stream.
  40944. fs.Close()
  40945. 'Get an excel file path in a variable.
  40946. Dim path As String = @"C:\Book1.xls"
  40947. 'Get the file into the streams.
  40948. fs = File.OpenRead(path)
  40949. 'Define an array of bytes.
  40950. Dim objectData(fs.Length) As Byte
  40951. 'Store the file from streams.
  40952. fs.Read(objectData, 0, objectData.Length)
  40953. 'Close the stream.
  40954. fs.Close()
  40955. 'Add an Ole object into the worksheet with the image
  40956. 'shown in MS Excel.
  40957. sheet.OleObjects.Add(14, 3, 200, 220, imageData)
  40958. 'Set embedded ole object data.
  40959. sheet.OleObjects(0).ObjectData = objectData
  40960. 'Save the excel file
  40961. workbook.Save("C:\oleobjects.xls")
  40962. </code>
  40963. </example>
  40964. </member>
  40965. <member name="M:Aspose.Cells.Drawing.OleObject.SetNativeSourceFullName(System.String)">
  40966. <summary>
  40967. Sets the ole native source full file name with path.
  40968. </summary>
  40969. <param name="sourceFullName">the ole native source full file name</param>
  40970. </member>
  40971. <member name="P:Aspose.Cells.Drawing.OleObject.IsAutoSize">
  40972. <summary>
  40973. True indicates that the size of the ole object will be auto changed as the size of snapshop of the embedded content
  40974. when the ole object is activated.
  40975. </summary>
  40976. </member>
  40977. <member name="P:Aspose.Cells.Drawing.OleObject.IsLink">
  40978. <summary>
  40979. Returns true if the OleObject is linked
  40980. </summary>
  40981. </member>
  40982. <member name="P:Aspose.Cells.Drawing.OleObject.DisplayAsIcon">
  40983. <summary>
  40984. True if the specified object is displayed as an icon
  40985. and the image will not be auto changed.
  40986. </summary>
  40987. </member>
  40988. <member name="P:Aspose.Cells.Drawing.OleObject.ImageData">
  40989. <summary>
  40990. Represents image of ole object as byte array.
  40991. </summary>
  40992. </member>
  40993. <member name="P:Aspose.Cells.Drawing.OleObject.ObjectData">
  40994. <summary>
  40995. Represents embedded ole object data as byte array.
  40996. </summary>
  40997. </member>
  40998. <member name="P:Aspose.Cells.Drawing.OleObject.FullObjectBin">
  40999. <summary>
  41000. Gets the full embedded ole object binary data in the template file.
  41001. </summary>
  41002. </member>
  41003. <member name="P:Aspose.Cells.Drawing.OleObject.ImageSourceFullName">
  41004. <summary>
  41005. Gets or sets the path and name of the source file for the linked image.
  41006. </summary>
  41007. <remarks>
  41008. The default value is an empty string.
  41009. If SourceFullName is not an empty string, the image is linked.
  41010. If SourceFullName is not an empty string, but Data is null, then the image is linked and not stored in the file.
  41011. </remarks>
  41012. </member>
  41013. <member name="P:Aspose.Cells.Drawing.OleObject.ProgID">
  41014. <summary>
  41015. Gets or sets the ProgID of the OLE object.
  41016. </summary>
  41017. </member>
  41018. <member name="P:Aspose.Cells.Drawing.OleObject.FileFormatType">
  41019. <summary>
  41020. Gets and sets the file type of the embedded ole object data
  41021. </summary>
  41022. </member>
  41023. <member name="P:Aspose.Cells.Drawing.OleObject.FileType">
  41024. <summary>
  41025. Gets and sets the file type of the embedded ole object data
  41026. </summary>
  41027. <remarks>
  41028. NOTE: This member is now obsolete. Instead,
  41029. please use OleObject.FileFormatType property.
  41030. This property will be removed 12 months later since December 2013.
  41031. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  41032. </member>
  41033. <member name="P:Aspose.Cells.Drawing.OleObject.ObjectSourceFullName">
  41034. <summary>
  41035. Returns the source full name of the source file for the linked OLE object.
  41036. </summary>
  41037. <remarks>Only supports setting the source full name when the file type is OleFileType.Unknown.
  41038. Such as wav file ,avi file..etc..
  41039. </remarks>
  41040. </member>
  41041. <member name="P:Aspose.Cells.Drawing.OleObject.Label">
  41042. <summary>
  41043. Gets and sets the display label of the linked ole object.
  41044. </summary>
  41045. </member>
  41046. <member name="P:Aspose.Cells.Drawing.OleObject.SourceFullName">
  41047. <summary>
  41048. Returns the source full name of the source file for the linked OLE object.
  41049. </summary>
  41050. <remarks>
  41051. NOTE: This member is now obsolete. Instead,
  41052. please use OleObject.ObjectSourceFullName property.
  41053. This property will be removed 12 months later since November 2013.
  41054. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  41055. </member>
  41056. <member name="P:Aspose.Cells.Drawing.OleObject.AutoUpdate">
  41057. <summary>
  41058. Specifies whether the link to the OleObject is automatically updated or not.
  41059. </summary>
  41060. </member>
  41061. <member name="P:Aspose.Cells.Drawing.OleObject.AutoLoad">
  41062. <summary>
  41063. Specifies whether the host application for the embedded object shall be called to load
  41064. the object data automatically when the parent workbook is opened.
  41065. </summary>
  41066. </member>
  41067. <member name="P:Aspose.Cells.Drawing.OleObject.ClassIdentifier">
  41068. <summary>
  41069. Gets and sets the class identifier of the embedded object.
  41070. It means which application opens the embedded file.
  41071. </summary>
  41072. </member>
  41073. <member name="P:Aspose.Cells.Drawing.OleObject.ImageType">
  41074. <summary>
  41075. Gets the image format of the ole object.
  41076. </summary>
  41077. </member>
  41078. <member name="T:Aspose.Cells.Drawing.OleObjectCollection">
  41079. <summary>
  41080. Represents embedded OLE objects.
  41081. </summary>
  41082. </member>
  41083. <member name="M:Aspose.Cells.Drawing.OleObjectCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])">
  41084. <summary>
  41085. Adds an OleObject to the collection.
  41086. </summary>
  41087. <param name="upperLeftRow">Upper left row index.</param>
  41088. <param name="upperLeftColumn">Upper left column index.</param>
  41089. <param name="height">Height of oleObject, in unit of pixel.</param>
  41090. <param name="width">Width of oleObject, in unit of pixel.</param>
  41091. <param name="imageData"> Image of ole object as byte array.</param>
  41092. <returns>
  41093. <see cref="T:Aspose.Cells.Drawing.OleObject" /> object index.</returns>
  41094. </member>
  41095. <member name="M:Aspose.Cells.Drawing.OleObjectCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.String)">
  41096. <summary>
  41097. Adds an linked OleObject to the collection.
  41098. </summary>
  41099. <param name="upperLeftRow">Upper left row index.</param>
  41100. <param name="upperLeftColumn">Upper left column index.</param>
  41101. <param name="height">Height of oleObject, in unit of pixel.</param>
  41102. <param name="width">Width of oleObject, in unit of pixel.</param>
  41103. <param name="imageData"> Image of ole object as byte array.</param>
  41104. <param name="linkedFile">
  41105. </param>
  41106. <returns>
  41107. <see cref="T:Aspose.Cells.Drawing.OleObject" /> object index.</returns>
  41108. </member>
  41109. <member name="M:Aspose.Cells.Drawing.OleObjectCollection.Clear">
  41110. <summary>
  41111. Remove all embedded OLE objects.
  41112. </summary>
  41113. </member>
  41114. <member name="M:Aspose.Cells.Drawing.OleObjectCollection.RemoveAt(System.Int32)">
  41115. <summary>
  41116. Removes the element at the specified index.
  41117. </summary>
  41118. <param name="index">The specified index.</param>
  41119. </member>
  41120. <member name="P:Aspose.Cells.Drawing.OleObjectCollection.Item(System.Int32)">
  41121. <summary>
  41122. Gets the <see cref="T:Aspose.Cells.Drawing.OleObject" /> element at the specified index.
  41123. </summary>
  41124. <param name="index">The zero based index of the element.</param>
  41125. <returns>The element at the specified index.</returns>
  41126. </member>
  41127. <member name="T:Aspose.Cells.OperatorType">
  41128. <summary>
  41129. Represents the operator type of conditional format and data validation.
  41130. </summary>
  41131. </member>
  41132. <member name="F:Aspose.Cells.OperatorType.Between">
  41133. <summary>
  41134. Represents Between operator of conditional format and data validation.
  41135. </summary>
  41136. </member>
  41137. <member name="F:Aspose.Cells.OperatorType.Equal">
  41138. <summary>
  41139. Represents Equal operator of conditional format and data validation.
  41140. </summary>
  41141. </member>
  41142. <member name="F:Aspose.Cells.OperatorType.GreaterThan">
  41143. <summary>
  41144. Represents GreaterThan operator of conditional format and data validation.
  41145. </summary>
  41146. </member>
  41147. <member name="F:Aspose.Cells.OperatorType.GreaterOrEqual">
  41148. <summary>
  41149. Represents GreaterOrEqual operator of conditional format and data validation.
  41150. </summary>
  41151. </member>
  41152. <member name="F:Aspose.Cells.OperatorType.LessThan">
  41153. <summary>
  41154. Represents LessThan operator of conditional format and data validation.
  41155. </summary>
  41156. </member>
  41157. <member name="F:Aspose.Cells.OperatorType.LessOrEqual">
  41158. <summary>
  41159. Represents LessOrEqual operator of conditional format and data validation.
  41160. </summary>
  41161. </member>
  41162. <member name="F:Aspose.Cells.OperatorType.None">
  41163. <summary>
  41164. Represents no comparison.
  41165. </summary>
  41166. </member>
  41167. <member name="F:Aspose.Cells.OperatorType.NotBetween">
  41168. <summary>
  41169. Represents NotBetween operator of conditional format and data validation.
  41170. </summary>
  41171. </member>
  41172. <member name="F:Aspose.Cells.OperatorType.NotEqual">
  41173. <summary>
  41174. Represents NotEqual operator of conditional format and data validation.
  41175. </summary>
  41176. </member>
  41177. <member name="T:Aspose.Cells.Outline">
  41178. <summary>
  41179. Represents an outline on a worksheet.
  41180. </summary>
  41181. </member>
  41182. <member name="P:Aspose.Cells.Outline.SummaryRowBelow">
  41183. <summary>
  41184. Indicates if the summary row will be positioned below the detail rows in the outline.
  41185. </summary>
  41186. </member>
  41187. <member name="P:Aspose.Cells.Outline.SummaryColumnRight">
  41188. <summary>
  41189. Indicates if the summary column will be positioned to the right of the detail columns in the outline.
  41190. </summary>
  41191. </member>
  41192. <member name="T:Aspose.Cells.Drawing.Oval">
  41193. <summary>
  41194. Represents the oval shape.
  41195. </summary>
  41196. </member>
  41197. <member name="T:Aspose.Cells.PageOrientationType">
  41198. <summary>
  41199. Represents print orientation constants.
  41200. </summary>
  41201. </member>
  41202. <member name="F:Aspose.Cells.PageOrientationType.Landscape">
  41203. <summary>
  41204. Landscape orientation
  41205. </summary>
  41206. </member>
  41207. <member name="F:Aspose.Cells.PageOrientationType.Portrait">
  41208. <summary>
  41209. Portrait orientation
  41210. </summary>
  41211. </member>
  41212. <member name="T:Aspose.Cells.PaneCollection">
  41213. <summary>
  41214. Represents all Pane objects shown in the specified window.
  41215. </summary>
  41216. </member>
  41217. <member name="P:Aspose.Cells.PaneCollection.FirstVisibleRowOfBottomPane">
  41218. <summary>
  41219. Gets and sets the first visible row of the bottom pane.
  41220. </summary>
  41221. </member>
  41222. <member name="P:Aspose.Cells.PaneCollection.FirstVisibleColumnOfRightPane">
  41223. <summary>
  41224. Gets and sets the first visible column of the right pane.
  41225. </summary>
  41226. </member>
  41227. <member name="P:Aspose.Cells.PaneCollection.AcitvePaneType">
  41228. <summary>
  41229. Gets and sets the active pane.
  41230. </summary>
  41231. </member>
  41232. <member name="T:Aspose.Cells.PaperSizeType">
  41233. <summary>
  41234. Represents paper size constants.
  41235. </summary>
  41236. </member>
  41237. <member name="F:Aspose.Cells.PaperSizeType.PaperLetter">
  41238. <summary>
  41239. Letter (8-1/2 in. x 11 in.)
  41240. </summary>
  41241. </member>
  41242. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterSmall">
  41243. <summary>
  41244. Letter Small (8-1/2 in. x 11 in.)
  41245. </summary>
  41246. </member>
  41247. <member name="F:Aspose.Cells.PaperSizeType.PaperTabloid">
  41248. <summary>
  41249. Tabloid (11 in. x 17 in.)
  41250. </summary>
  41251. </member>
  41252. <member name="F:Aspose.Cells.PaperSizeType.PaperLedger">
  41253. <summary>
  41254. Ledger (17 in. x 11 in.)
  41255. </summary>
  41256. </member>
  41257. <member name="F:Aspose.Cells.PaperSizeType.PaperLegal">
  41258. <summary>
  41259. Legal (8-1/2 in. x 14 in.)
  41260. </summary>
  41261. </member>
  41262. <member name="F:Aspose.Cells.PaperSizeType.PaperStatement">
  41263. <summary>
  41264. Statement (5-1/2 in. x 8-1/2 in.)
  41265. </summary>
  41266. </member>
  41267. <member name="F:Aspose.Cells.PaperSizeType.PaperExecutive">
  41268. <summary>
  41269. Executive (7-1/4 in. x 10-1/2 in.)
  41270. </summary>
  41271. </member>
  41272. <member name="F:Aspose.Cells.PaperSizeType.PaperA3">
  41273. <summary>
  41274. A3 (297 mm x 420 mm)
  41275. </summary>
  41276. </member>
  41277. <member name="F:Aspose.Cells.PaperSizeType.PaperA4">
  41278. <summary>
  41279. A4 (210 mm x 297 mm)
  41280. </summary>
  41281. </member>
  41282. <member name="F:Aspose.Cells.PaperSizeType.PaperA4Small">
  41283. <summary>
  41284. A4 Small (210 mm x 297 mm)
  41285. </summary>
  41286. </member>
  41287. <member name="F:Aspose.Cells.PaperSizeType.PaperA5">
  41288. <summary>
  41289. A5 (148 mm x 210 mm)
  41290. </summary>
  41291. </member>
  41292. <member name="F:Aspose.Cells.PaperSizeType.PaperB4">
  41293. <summary>
  41294. JIS B4 (257 mm x 364 mm)
  41295. </summary>
  41296. </member>
  41297. <member name="F:Aspose.Cells.PaperSizeType.PaperB5">
  41298. <summary>
  41299. JIS B5 (182 mm x 257 mm)
  41300. </summary>
  41301. </member>
  41302. <member name="F:Aspose.Cells.PaperSizeType.PaperFolio">
  41303. <summary>
  41304. Folio (8-1/2 in. x 13 in.)
  41305. </summary>
  41306. </member>
  41307. <member name="F:Aspose.Cells.PaperSizeType.PaperQuarto">
  41308. <summary>
  41309. Quarto (215 mm x 275 mm)
  41310. </summary>
  41311. </member>
  41312. <member name="F:Aspose.Cells.PaperSizeType.Paper10x14">
  41313. <summary>
  41314. 10 in. x 14 in.
  41315. </summary>
  41316. </member>
  41317. <member name="F:Aspose.Cells.PaperSizeType.Paper11x17">
  41318. <summary>
  41319. 11 in. x 17 in.
  41320. </summary>
  41321. </member>
  41322. <member name="F:Aspose.Cells.PaperSizeType.PaperNote">
  41323. <summary>
  41324. Note (8-1/2 in. x 11 in.)
  41325. </summary>
  41326. </member>
  41327. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelope9">
  41328. <summary>
  41329. Envelope #9 (3-7/8 in. x 8-7/8 in.)
  41330. </summary>
  41331. </member>
  41332. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelope10">
  41333. <summary>
  41334. Envelope #10 (4-1/8 in. x 9-1/2 in.)
  41335. </summary>
  41336. </member>
  41337. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelope11">
  41338. <summary>
  41339. Envelope #11 (4-1/2 in. x 10-3/8 in.)
  41340. </summary>
  41341. </member>
  41342. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelope12">
  41343. <summary>
  41344. Envelope #12 (4-1/2 in. x 11 in.)
  41345. </summary>
  41346. </member>
  41347. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelope14">
  41348. <summary>
  41349. Envelope #14 (5 in. x 11-1/2 in.)
  41350. </summary>
  41351. </member>
  41352. <member name="F:Aspose.Cells.PaperSizeType.PaperCSheet">
  41353. <summary>
  41354. C size sheet
  41355. </summary>
  41356. </member>
  41357. <member name="F:Aspose.Cells.PaperSizeType.PaperDSheet">
  41358. <summary>
  41359. D size sheet
  41360. </summary>
  41361. </member>
  41362. <member name="F:Aspose.Cells.PaperSizeType.PaperESheet">
  41363. <summary>
  41364. E size sheet
  41365. </summary>
  41366. </member>
  41367. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeDL">
  41368. <summary>
  41369. Envelope DL (110 mm x 220 mm)
  41370. </summary>
  41371. </member>
  41372. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeC5">
  41373. <summary>
  41374. Envelope C5 (162 mm x 229 mm)
  41375. </summary>
  41376. </member>
  41377. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeC3">
  41378. <summary>
  41379. Envelope C3 (324 mm x 458 mm)
  41380. </summary>
  41381. </member>
  41382. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeC4">
  41383. <summary>
  41384. Envelope C4 (229 mm x 324 mm)
  41385. </summary>
  41386. </member>
  41387. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeC6">
  41388. <summary>
  41389. Envelope C6 (114 mm x 162 mm)
  41390. </summary>
  41391. </member>
  41392. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeC65">
  41393. <summary>
  41394. Envelope C65 (114 mm x 229 mm)
  41395. </summary>
  41396. </member>
  41397. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeB4">
  41398. <summary>
  41399. Envelope B4 (250 mm x 353 mm)
  41400. </summary>
  41401. </member>
  41402. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeB5">
  41403. <summary>
  41404. Envelope B5 (176 mm x 250 mm)
  41405. </summary>
  41406. </member>
  41407. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeB6">
  41408. <summary>
  41409. Envelope B6 (176 mm x 125 mm)
  41410. </summary>
  41411. </member>
  41412. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeItaly">
  41413. <summary>
  41414. Envelope Italy (110 mm x 230 mm)
  41415. </summary>
  41416. </member>
  41417. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeMonarch">
  41418. <summary>
  41419. Envelope Monarch (3-7/8 in. x 7-1/2 in.)
  41420. </summary>
  41421. </member>
  41422. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopePersonal">
  41423. <summary>
  41424. Envelope (3-5/8 in. x 6-1/2 in.)
  41425. </summary>
  41426. </member>
  41427. <member name="F:Aspose.Cells.PaperSizeType.PaperFanfoldUS">
  41428. <summary>
  41429. U.S. Standard Fanfold (14-7/8 in. x 11 in.)
  41430. </summary>
  41431. </member>
  41432. <member name="F:Aspose.Cells.PaperSizeType.PaperFanfoldStdGerman">
  41433. <summary>
  41434. German Standard Fanfold (8-1/2 in. x 12 in.)
  41435. </summary>
  41436. </member>
  41437. <member name="F:Aspose.Cells.PaperSizeType.PaperFanfoldLegalGerman">
  41438. <summary>
  41439. German Legal Fanfold (8-1/2 in. x 13 in.)
  41440. </summary>
  41441. </member>
  41442. <member name="F:Aspose.Cells.PaperSizeType.PaperISOB4">
  41443. <summary>
  41444. B4 (ISO) 250 x 353 mm
  41445. </summary>
  41446. </member>
  41447. <member name="F:Aspose.Cells.PaperSizeType.PaperJapanesePostcard">
  41448. <summary>
  41449. Japanese Postcard (100mm ¡Á 148mm)
  41450. </summary>
  41451. </member>
  41452. <member name="F:Aspose.Cells.PaperSizeType.Paper9x11">
  41453. <summary>
  41454. 9? ¡Á 11?
  41455. </summary>
  41456. </member>
  41457. <member name="F:Aspose.Cells.PaperSizeType.Paper10x11">
  41458. <summary>
  41459. 10? ¡Á 11?
  41460. </summary>
  41461. </member>
  41462. <member name="F:Aspose.Cells.PaperSizeType.Paper15x11">
  41463. <summary>
  41464. 15? ¡Á 11?
  41465. </summary>
  41466. </member>
  41467. <member name="F:Aspose.Cells.PaperSizeType.PaperEnvelopeInvite">
  41468. <summary>
  41469. Envelope Invite(220mm ¡Á 220mm)
  41470. </summary>
  41471. </member>
  41472. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterExtra">
  41473. <summary>
  41474. US Letter Extra 9 \275 x 12 in
  41475. </summary>
  41476. </member>
  41477. <member name="F:Aspose.Cells.PaperSizeType.PaperLegalExtra">
  41478. <summary>
  41479. US Legal Extra 9 \275 x 15 in
  41480. </summary>
  41481. </member>
  41482. <member name="F:Aspose.Cells.PaperSizeType.PaperTabloidExtra">
  41483. <summary>
  41484. US Tabloid Extra 11.69 x 18 in
  41485. </summary>
  41486. </member>
  41487. <member name="F:Aspose.Cells.PaperSizeType.PaperA4Extra">
  41488. <summary>
  41489. A4 Extra 9.27 x 12.69 in
  41490. </summary>
  41491. </member>
  41492. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterTransverse">
  41493. <summary>
  41494. Letter Transverse 8 \275 x 11 in
  41495. </summary>
  41496. </member>
  41497. <member name="F:Aspose.Cells.PaperSizeType.PaperA4Transverse">
  41498. <summary>
  41499. A4 Transverse 210 x 297 mm
  41500. </summary>
  41501. </member>
  41502. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterExtraTransverse">
  41503. <summary>
  41504. Letter Extra Transverse 9\275 x 12 in
  41505. </summary>
  41506. </member>
  41507. <member name="F:Aspose.Cells.PaperSizeType.PaperSuperA">
  41508. <summary>
  41509. SuperA/SuperA/A4 227 x 356 mm
  41510. </summary>
  41511. </member>
  41512. <member name="F:Aspose.Cells.PaperSizeType.PaperSuperB">
  41513. <summary>
  41514. SuperB/SuperB/A3 305 x 487 mm
  41515. </summary>
  41516. </member>
  41517. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterPlus">
  41518. <summary>
  41519. US Letter Plus 8.5 x 12.69 in
  41520. </summary>
  41521. </member>
  41522. <member name="F:Aspose.Cells.PaperSizeType.PaperA4Plus">
  41523. <summary>
  41524. A4 Plus 210 x 330 mm
  41525. </summary>
  41526. </member>
  41527. <member name="F:Aspose.Cells.PaperSizeType.PaperA5Transverse">
  41528. <summary>
  41529. A5 Transverse 148 x 210 mm
  41530. </summary>
  41531. </member>
  41532. <member name="F:Aspose.Cells.PaperSizeType.PaperJISB5Transverse">
  41533. <summary>
  41534. B5 (JIS) Transverse 182 x 257 mm
  41535. </summary>
  41536. </member>
  41537. <member name="F:Aspose.Cells.PaperSizeType.PaperA3Extra">
  41538. <summary>
  41539. A3 Extra 322 x 445 mm
  41540. </summary>
  41541. </member>
  41542. <member name="F:Aspose.Cells.PaperSizeType.PaperA5Extra">
  41543. <summary>
  41544. A5 Extra 174 x 235 mm
  41545. </summary>
  41546. </member>
  41547. <member name="F:Aspose.Cells.PaperSizeType.PaperISOB5Extra">
  41548. <summary>
  41549. B5 (ISO) Extra 201 x 276 mm
  41550. </summary>
  41551. </member>
  41552. <member name="F:Aspose.Cells.PaperSizeType.PaperA2">
  41553. <summary>
  41554. A2 420 x 594 mm
  41555. </summary>
  41556. </member>
  41557. <member name="F:Aspose.Cells.PaperSizeType.PaperA3Transverse">
  41558. <summary>
  41559. A3 Transverse 297 x 420 mm
  41560. </summary>
  41561. </member>
  41562. <member name="F:Aspose.Cells.PaperSizeType.PaperA3ExtraTransverse">
  41563. <summary>
  41564. A3 Extra Transverse 322 x 445 mm
  41565. </summary>
  41566. </member>
  41567. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseDoublePostcard">
  41568. <summary>
  41569. Japanese Double Postcard 200 x 148 mm
  41570. </summary>
  41571. </member>
  41572. <member name="F:Aspose.Cells.PaperSizeType.PaperA6">
  41573. <summary>
  41574. A6 105 x 148 mm
  41575. </summary>
  41576. </member>
  41577. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeKaku2">
  41578. <summary>
  41579. Japanese Envelope Kaku #2
  41580. </summary>
  41581. </member>
  41582. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeKaku3">
  41583. <summary>
  41584. Japanese Envelope Kaku #3
  41585. </summary>
  41586. </member>
  41587. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeChou3">
  41588. <summary>
  41589. Japanese Envelope Chou #3
  41590. </summary>
  41591. </member>
  41592. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeChou4">
  41593. <summary>
  41594. Japanese Envelope Chou #4
  41595. </summary>
  41596. </member>
  41597. <member name="F:Aspose.Cells.PaperSizeType.PaperLetterRotated">
  41598. <summary>
  41599. 11in ¡Á 8.5in
  41600. </summary>
  41601. </member>
  41602. <member name="F:Aspose.Cells.PaperSizeType.PaperA3Rotated">
  41603. <summary>
  41604. 420mm ¡Á 297mm
  41605. </summary>
  41606. </member>
  41607. <member name="F:Aspose.Cells.PaperSizeType.PaperA4Rotated">
  41608. <summary>
  41609. 297mm ¡Á 210mm
  41610. </summary>
  41611. </member>
  41612. <member name="F:Aspose.Cells.PaperSizeType.PaperA5Rotated">
  41613. <summary>
  41614. 210mm ¡Á 148mm
  41615. </summary>
  41616. </member>
  41617. <member name="F:Aspose.Cells.PaperSizeType.PaperJISB4Rotated">
  41618. <summary>
  41619. B4 (JIS) Rotated 364 x 257 mm
  41620. </summary>
  41621. </member>
  41622. <member name="F:Aspose.Cells.PaperSizeType.PaperJISB5Rotated">
  41623. <summary>
  41624. B5 (JIS) Rotated 257 x 182 mm
  41625. </summary>
  41626. </member>
  41627. <member name="F:Aspose.Cells.PaperSizeType.PaperJapanesePostcardRotated">
  41628. <summary>
  41629. Japanese Postcard Rotated 148 x 100 mm
  41630. </summary>
  41631. </member>
  41632. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseDoublePostcardRotated">
  41633. <summary>
  41634. Double Japanese Postcard Rotated 148 x 200 mm
  41635. </summary>
  41636. </member>
  41637. <member name="F:Aspose.Cells.PaperSizeType.PaperA6Rotated">
  41638. <summary>
  41639. A6 Rotated 148 x 105 mm
  41640. </summary>
  41641. </member>
  41642. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeKaku2Rotated">
  41643. <summary>
  41644. Japanese Envelope Kaku #2 Rotated
  41645. </summary>
  41646. </member>
  41647. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeKaku3Rotated">
  41648. <summary>
  41649. Japanese Envelope Kaku #3 Rotated
  41650. </summary>
  41651. </member>
  41652. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeChou3Rotated">
  41653. <summary>
  41654. Japanese Envelope Chou #3 Rotated
  41655. </summary>
  41656. </member>
  41657. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeChou4Rotated">
  41658. <summary>
  41659. Japanese Envelope Chou #4 Rotated
  41660. </summary>
  41661. </member>
  41662. <member name="F:Aspose.Cells.PaperSizeType.PaperJISB6">
  41663. <summary>
  41664. B6 (JIS) 128 x 182 mm
  41665. </summary>
  41666. </member>
  41667. <member name="F:Aspose.Cells.PaperSizeType.PaperJISB6Rotated">
  41668. <summary>
  41669. B6 (JIS) Rotated 182 x 128 mm
  41670. </summary>
  41671. </member>
  41672. <member name="F:Aspose.Cells.PaperSizeType.Paper12x11">
  41673. <summary>
  41674. 12 x 11 in
  41675. </summary>
  41676. </member>
  41677. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeYou4">
  41678. <summary>
  41679. Japanese Envelope You #4
  41680. </summary>
  41681. </member>
  41682. <member name="F:Aspose.Cells.PaperSizeType.PaperJapaneseEnvelopeYou4Rotated">
  41683. <summary>
  41684. Japanese Envelope You #4 Rotated
  41685. </summary>
  41686. </member>
  41687. <member name="F:Aspose.Cells.PaperSizeType.PaperPRC16K">
  41688. <summary>
  41689. PRC 16K 146 x 215 mm
  41690. </summary>
  41691. </member>
  41692. <member name="F:Aspose.Cells.PaperSizeType.PaperPRC32K">
  41693. <summary>
  41694. PRC 32K 97 x 151 mm
  41695. </summary>
  41696. </member>
  41697. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCBig32K">
  41698. <summary>
  41699. PRC 32K(Big) 97 x 151 mm
  41700. </summary>
  41701. </member>
  41702. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope1">
  41703. <summary>
  41704. PRC Envelope #1 102 x 165 mm
  41705. </summary>
  41706. </member>
  41707. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope2">
  41708. <summary>
  41709. PRC Envelope #2 102 x 176 mm
  41710. </summary>
  41711. </member>
  41712. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope3">
  41713. <summary>
  41714. PRC Envelope #3 125 x 176 mm
  41715. </summary>
  41716. </member>
  41717. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope4">
  41718. <summary>
  41719. PRC Envelope #4 110 x 208 mm
  41720. </summary>
  41721. </member>
  41722. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope5">
  41723. <summary>
  41724. PRC Envelope #5 110 x 220 mm
  41725. </summary>
  41726. </member>
  41727. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope6">
  41728. <summary>
  41729. PRC Envelope #6 120 x 230 mm
  41730. </summary>
  41731. </member>
  41732. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope7">
  41733. <summary>
  41734. PRC Envelope #7 160 x 230 mm
  41735. </summary>
  41736. </member>
  41737. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope8">
  41738. <summary>
  41739. PRC Envelope #8 120 x 309 mm
  41740. </summary>
  41741. </member>
  41742. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope9">
  41743. <summary>
  41744. PRC Envelope #9 229 x 324 mm
  41745. </summary>
  41746. </member>
  41747. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope10">
  41748. <summary>
  41749. PRC Envelope #10 324 x 458 mm
  41750. </summary>
  41751. </member>
  41752. <member name="F:Aspose.Cells.PaperSizeType.PaperPRC16KRotated">
  41753. <summary>
  41754. PRC 16K Rotated
  41755. </summary>
  41756. </member>
  41757. <member name="F:Aspose.Cells.PaperSizeType.PaperPRC32KRotated">
  41758. <summary>
  41759. PRC 32K Rotated
  41760. </summary>
  41761. </member>
  41762. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCBig32KRotated">
  41763. <summary>
  41764. PRC 32K(Big) Rotated
  41765. </summary>
  41766. </member>
  41767. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope1Rotated">
  41768. <summary>
  41769. PRC Envelope #1 Rotated 165 x 102 mm
  41770. </summary>
  41771. </member>
  41772. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope2Rotated">
  41773. <summary>
  41774. PRC Envelope #2 Rotated 176 x 102 mm
  41775. </summary>
  41776. </member>
  41777. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope3Rotated">
  41778. <summary>
  41779. PRC Envelope #3 Rotated 176 x 125 mm
  41780. </summary>
  41781. </member>
  41782. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope4Rotated">
  41783. <summary>
  41784. PRC Envelope #4 Rotated 208 x 110 mm
  41785. </summary>
  41786. </member>
  41787. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope5Rotated">
  41788. <summary>
  41789. PRC Envelope #5 Rotated 220 x 110 mm
  41790. </summary>
  41791. </member>
  41792. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope6Rotated">
  41793. <summary>
  41794. PRC Envelope #6 Rotated 230 x 120 mm
  41795. </summary>
  41796. </member>
  41797. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope7Rotated">
  41798. <summary>
  41799. PRC Envelope #7 Rotated 230 x 160 mm
  41800. </summary>
  41801. </member>
  41802. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope8Rotated">
  41803. <summary>
  41804. PRC Envelope #8 Rotated 309 x 120 mm
  41805. </summary>
  41806. </member>
  41807. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope9Rotated">
  41808. <summary>
  41809. PRC Envelope #9 Rotated 324 x 229 mm
  41810. </summary>
  41811. </member>
  41812. <member name="F:Aspose.Cells.PaperSizeType.PaperPRCEnvelope10Rotated">
  41813. <summary>
  41814. PRC Envelope #10 Rotated 458 x 324 mm
  41815. </summary>
  41816. </member>
  41817. <member name="F:Aspose.Cells.PaperSizeType.PaperB3">
  41818. <summary>
  41819. usual B3(13.9 x 19.7 in)
  41820. </summary>
  41821. </member>
  41822. <member name="F:Aspose.Cells.PaperSizeType.PaperBusinessCard">
  41823. <summary>
  41824. Business Card(90mm x 55 mm)
  41825. </summary>
  41826. </member>
  41827. <member name="F:Aspose.Cells.PaperSizeType.PaperThermal">
  41828. <summary>
  41829. Thermal(3 x 11 in)
  41830. </summary>
  41831. </member>
  41832. <member name="F:Aspose.Cells.PaperSizeType.Custom">
  41833. <summary>
  41834. Represents the custom paper size.
  41835. </summary>
  41836. </member>
  41837. <member name="T:Aspose.Cells.Drawing.Picture">
  41838. <summary>
  41839. Encapsulates the object that represents a single picture in a spreadsheet.
  41840. </summary>
  41841. <example>
  41842. <code>
  41843. [C#]
  41844. //Instantiating a Workbook object
  41845. Workbook workbook = new Workbook();
  41846. //Adding a new worksheet to the Workbook object
  41847. int sheetIndex = workbook.Worksheets.Add();
  41848. //Obtaining the reference of the newly added worksheet by passing its sheet index
  41849. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  41850. //Adding a picture at the location of a cell whose row and column indices
  41851. //are 5 in the worksheet. It is "F6" cell
  41852. worksheet.Pictures.Add(5, 5, "C:\\image.gif");
  41853. //Saving the Excel file
  41854. workbook.Save(saveFileDialog1.FileName, SaveFormat.Excel97To2003);
  41855. [Visual Basic]
  41856. 'Instantiating a Workbook object
  41857. Dim workbook As Workbook = New Workbook()
  41858. 'Adding a new worksheet to the Workbook object
  41859. Dim sheetIndex As Integer = workbook.Worksheets.Add()
  41860. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  41861. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  41862. 'Adding a picture at the location of a cell whose row and column indices
  41863. 'are 5 in the worksheet. It is "F6" cell
  41864. worksheet.Pictures.Add(5, 5, "C:\image.gif")
  41865. 'Saving the Excel file
  41866. workbook.Save("C:\book1.xls", SaveFormat.Excel97To2003)
  41867. </code>
  41868. </example>
  41869. </member>
  41870. <member name="M:Aspose.Cells.Drawing.Picture.Copy(Aspose.Cells.Drawing.Picture,Aspose.Cells.CopyOptions)">
  41871. <summary>
  41872. Copy the picture.
  41873. </summary>
  41874. <param name="source">The source picture.</param>
  41875. <param name="options">The copy options.</param>
  41876. </member>
  41877. <member name="M:Aspose.Cells.Drawing.Picture.Move(System.Int32,System.Int32)">
  41878. <summary>
  41879. Moves the picture to a specified location.
  41880. </summary>
  41881. <param name="upperLeftRow">Upper left row index.</param>
  41882. <param name="upperLeftColumn">Upper left column index.</param>
  41883. </member>
  41884. <member name="P:Aspose.Cells.Drawing.Picture.OriginalHeight">
  41885. <summary>
  41886. Gets the original height of the picture.
  41887. </summary>
  41888. </member>
  41889. <member name="P:Aspose.Cells.Drawing.Picture.OriginalWidth">
  41890. <summary>
  41891. Gets the original width of the picture.
  41892. </summary>
  41893. </member>
  41894. <member name="P:Aspose.Cells.Drawing.Picture.BorderLineColor">
  41895. <summary>
  41896. Represents the <see cref="T:System.Drawing.Color" /> of the border line of a picture.
  41897. </summary>
  41898. </member>
  41899. <member name="P:Aspose.Cells.Drawing.Picture.BorderWeight">
  41900. <summary>
  41901. Gets or sets the weight of the border line of a picture in units of pt.
  41902. </summary>
  41903. </member>
  41904. <member name="P:Aspose.Cells.Drawing.Picture.Data">
  41905. <summary>
  41906. Gets the data of the picture.
  41907. </summary>
  41908. </member>
  41909. <member name="P:Aspose.Cells.Drawing.Picture.SourceFullName">
  41910. <summary>
  41911. Gets or sets the path and name of the source file for the linked image.
  41912. </summary>
  41913. <remarks>
  41914. The default value is an empty string.
  41915. If SourceFullName is not an empty string, the image is linked.
  41916. If SourceFullName is not an empty string, but Data is null, then the image is linked and not stored in the file.
  41917. </remarks>
  41918. </member>
  41919. <member name="P:Aspose.Cells.Drawing.Picture.Formula">
  41920. <summary>
  41921. Gets and sets the data of the formula.
  41922. </summary>
  41923. </member>
  41924. <member name="P:Aspose.Cells.Drawing.Picture.IsAutoSize">
  41925. <summary>
  41926. True indicates that the size of the ole object will be auto changed as the size of snapshop of the embedded content
  41927. when the ole object is activated.
  41928. </summary>
  41929. </member>
  41930. <member name="P:Aspose.Cells.Drawing.Picture.IsLink">
  41931. <summary>
  41932. Returns true if the picture is linked to a file.
  41933. </summary>
  41934. </member>
  41935. <member name="P:Aspose.Cells.Drawing.Picture.IsDynamicDataExchange">
  41936. <summary>
  41937. Gets or sets whether dynamic data exchange
  41938. </summary>
  41939. </member>
  41940. <member name="P:Aspose.Cells.Drawing.Picture.DisplayAsIcon">
  41941. <summary>
  41942. True if the specified object is displayed as an icon
  41943. and the image will not be auto changed.
  41944. </summary>
  41945. </member>
  41946. <member name="P:Aspose.Cells.Drawing.Picture.ImageType">
  41947. <summary>
  41948. Gets the image format of the picture.
  41949. </summary>
  41950. </member>
  41951. <member name="P:Aspose.Cells.Drawing.Picture.OriginalHeightCM">
  41952. <summary>
  41953. Gets the original height of picture, in unit of centimeters.
  41954. </summary>
  41955. </member>
  41956. <member name="P:Aspose.Cells.Drawing.Picture.OriginalWidthCM">
  41957. <summary>
  41958. Gets the original width of picture, in unit of centimeters.
  41959. </summary>
  41960. </member>
  41961. <member name="P:Aspose.Cells.Drawing.Picture.OriginalHeightInch">
  41962. <summary>
  41963. Gets the original height of picture, in unit of inches.
  41964. </summary>
  41965. </member>
  41966. <member name="P:Aspose.Cells.Drawing.Picture.OriginalWidthInch">
  41967. <summary>
  41968. Gets the original width of picture, in unit of inches.
  41969. </summary>
  41970. </member>
  41971. <member name="P:Aspose.Cells.Drawing.Picture.SignatureLine">
  41972. <summary>
  41973. Gets and sets the signature line
  41974. </summary>
  41975. </member>
  41976. <member name="T:Aspose.Cells.Drawing.PictureCollection">
  41977. <summary>
  41978. Encapsulates a collection of <see cref="T:Aspose.Cells.Drawing.Picture" /> objects.
  41979. </summary>
  41980. </member>
  41981. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream)">
  41982. <summary>
  41983. Adds a picture to the collection.
  41984. </summary>
  41985. <param name="upperLeftRow">Upper left row index.</param>
  41986. <param name="upperLeftColumn">Upper left column index.</param>
  41987. <param name="lowerRightRow">Lower right row index</param>
  41988. <param name="lowerRightColumn">Lower right column index</param>
  41989. <param name="stream">Stream object which contains the image data.</param>
  41990. <returns>
  41991. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  41992. </member>
  41993. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
  41994. <summary>
  41995. Adds a picture to the collection.
  41996. </summary>
  41997. <param name="upperLeftRow">Upper left row index.</param>
  41998. <param name="upperLeftColumn">Upper left column index.</param>
  41999. <param name="lowerRightRow">Lower right row index</param>
  42000. <param name="lowerRightColumn">Lower right column index</param>
  42001. <param name="fileName">Image filename.</param>
  42002. <returns>
  42003. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  42004. </member>
  42005. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.IO.Stream)">
  42006. <summary>
  42007. Adds a picture to the collection.
  42008. </summary>
  42009. <param name="upperLeftRow">Upper left row index.</param>
  42010. <param name="upperLeftColumn">Upper left column index.</param>
  42011. <param name="stream">Stream object which contains the image data.</param>
  42012. <returns>
  42013. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  42014. </member>
  42015. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.String)">
  42016. <summary>
  42017. Adds a picture to the collection.
  42018. </summary>
  42019. <param name="upperLeftRow">Upper left row index.</param>
  42020. <param name="upperLeftColumn">Upper left column index.</param>
  42021. <param name="fileName">Image filename.</param>
  42022. <returns>
  42023. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  42024. </member>
  42025. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.IO.Stream,System.Int32,System.Int32)">
  42026. <summary>
  42027. Adds a picture to the collection.
  42028. </summary>
  42029. <param name="upperLeftRow">Upper left row index.</param>
  42030. <param name="upperLeftColumn">Upper left column index.</param>
  42031. <param name="stream">Stream object which contains the image data.</param>
  42032. <param name="widthScale">Scale of image width, a percentage.</param>
  42033. <param name="heightScale">Scale of image height, a percentage.</param>
  42034. <returns>
  42035. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  42036. </member>
  42037. <member name="M:Aspose.Cells.Drawing.PictureCollection.Add(System.Int32,System.Int32,System.String,System.Int32,System.Int32)">
  42038. <summary>
  42039. Adds a picture to the collection.
  42040. </summary>
  42041. <param name="upperLeftRow">Upper left row index.</param>
  42042. <param name="upperLeftColumn">Upper left column index.</param>
  42043. <param name="fileName">Image filename.</param>
  42044. <param name="widthScale">Scale of image width, a percentage.</param>
  42045. <param name="heightScale">Scale of image height, a percentage.</param>
  42046. <returns>
  42047. <see cref="T:Aspose.Cells.Drawing.Picture" /> object index.</returns>
  42048. </member>
  42049. <member name="M:Aspose.Cells.Drawing.PictureCollection.Clear">
  42050. <summary>
  42051. Clear all pictures.
  42052. </summary>
  42053. </member>
  42054. <member name="M:Aspose.Cells.Drawing.PictureCollection.RemoveAt(System.Int32)">
  42055. <summary>
  42056. Remove shapes at the specific index
  42057. </summary>
  42058. </member>
  42059. <member name="P:Aspose.Cells.Drawing.PictureCollection.Item(System.Int32)">
  42060. <summary>
  42061. Gets the <see cref="T:Aspose.Cells.Drawing.Picture" /> element at the specified index.
  42062. </summary>
  42063. <param name="index">The zero based index of the element.</param>
  42064. <returns>The element at the specified index.</returns>
  42065. </member>
  42066. <member name="T:Aspose.Cells.Drawing.PlacementType">
  42067. <summary>
  42068. Represents the way the drawing object is attached to the cells below it.
  42069. </summary>
  42070. </member>
  42071. <member name="F:Aspose.Cells.Drawing.PlacementType.FreeFloating">
  42072. <summary>
  42073. Don't move or size with cells.
  42074. </summary>
  42075. </member>
  42076. <member name="F:Aspose.Cells.Drawing.PlacementType.Move">
  42077. <summary>
  42078. Move but don't size with cells.
  42079. </summary>
  42080. </member>
  42081. <member name="F:Aspose.Cells.Drawing.PlacementType.MoveAndSize">
  42082. <summary>
  42083. Move and size with cells.
  42084. </summary>
  42085. </member>
  42086. <member name="T:Aspose.Cells.PrintCommentsType">
  42087. <summary>
  42088. Represents the way comments are printed with the sheet.
  42089. </summary>
  42090. </member>
  42091. <member name="F:Aspose.Cells.PrintCommentsType.PrintInPlace">
  42092. <summary>
  42093. Represents to print comments as displayed on sheet.
  42094. </summary>
  42095. </member>
  42096. <member name="F:Aspose.Cells.PrintCommentsType.PrintNoComments">
  42097. <summary>
  42098. Represents not to print comments.
  42099. </summary>
  42100. </member>
  42101. <member name="F:Aspose.Cells.PrintCommentsType.PrintSheetEnd">
  42102. <summary>
  42103. Represents to print comments at end of sheet.
  42104. </summary>
  42105. </member>
  42106. <member name="T:Aspose.Cells.PrintErrorsType">
  42107. <summary>
  42108. Represents print errors constants.
  42109. </summary>
  42110. </member>
  42111. <member name="F:Aspose.Cells.PrintErrorsType.PrintErrorsBlank">
  42112. <summary>
  42113. Represents not to print errors.
  42114. </summary>
  42115. </member>
  42116. <member name="F:Aspose.Cells.PrintErrorsType.PrintErrorsDash">
  42117. <summary>
  42118. Represents to print errors as "--".
  42119. </summary>
  42120. </member>
  42121. <member name="F:Aspose.Cells.PrintErrorsType.PrintErrorsDisplayed">
  42122. <summary>
  42123. Represents to print errors as displayed.
  42124. </summary>
  42125. </member>
  42126. <member name="F:Aspose.Cells.PrintErrorsType.PrintErrorsNA">
  42127. <summary>
  42128. Represents to print errors as "#N/A".
  42129. </summary>
  42130. </member>
  42131. <member name="T:Aspose.Cells.PrintOrderType">
  42132. <summary>
  42133. Represent print order constants.
  42134. </summary>
  42135. </member>
  42136. <member name="F:Aspose.Cells.PrintOrderType.DownThenOver">
  42137. <summary>
  42138. Down, then over
  42139. </summary>
  42140. </member>
  42141. <member name="F:Aspose.Cells.PrintOrderType.OverThenDown">
  42142. <summary>
  42143. Over, then down
  42144. </summary>
  42145. </member>
  42146. <member name="T:Aspose.Cells.PrintSizeType">
  42147. <summary>
  42148. Represents the printed chart size.
  42149. </summary>
  42150. </member>
  42151. <member name="F:Aspose.Cells.PrintSizeType.Full">
  42152. <summary>
  42153. Use full page.
  42154. </summary>
  42155. </member>
  42156. <member name="F:Aspose.Cells.PrintSizeType.Fit">
  42157. <summary>
  42158. Scale to fit page.
  42159. </summary>
  42160. </member>
  42161. <member name="F:Aspose.Cells.PrintSizeType.Custom">
  42162. <summary>
  42163. Custom.
  42164. </summary>
  42165. </member>
  42166. <member name="T:Aspose.Cells.Protection">
  42167. <summary>
  42168. Represents the various types of protection options available for a worksheet.
  42169. Only used in ExcelXP and above version.
  42170. </summary>
  42171. <example>
  42172. <code>
  42173. [C#]
  42174. //Allowing users to select locked cells of the worksheet
  42175. worksheet.Protection.AllowSelectingLockedCell = true;
  42176. //Allowing users to select unlocked cells of the worksheet
  42177. worksheet.Protection.AllowSelectingUnlockedCell = true;
  42178. [Visual Basic]
  42179. 'Allowing users to select locked cells of the worksheet
  42180. worksheet.Protection.AllowSelectingLockedCell = True
  42181. 'Allowing users to select unlocked cells of the worksheet
  42182. worksheet.Protection.AllowSelectingUnlockedCell = True
  42183. </code>
  42184. </example>
  42185. </member>
  42186. <member name="M:Aspose.Cells.Protection.Copy(Aspose.Cells.Protection)">
  42187. <summary>
  42188. Copy protection info.
  42189. </summary>
  42190. <param name="source">
  42191. </param>
  42192. </member>
  42193. <member name="M:Aspose.Cells.Protection.GetPasswordHash">
  42194. <summary>
  42195. Gets the hash of current password.
  42196. </summary>
  42197. </member>
  42198. <member name="M:Aspose.Cells.Protection.VerifyPassword(System.String)">
  42199. <summary>
  42200. Verifies password.
  42201. </summary>
  42202. <param name="password">The password.</param>
  42203. <returns>
  42204. </returns>
  42205. </member>
  42206. <member name="P:Aspose.Cells.Protection.AllowDeletingColumn">
  42207. <summary>
  42208. Represents if the deletion of columns is allowed on a protected worksheet.
  42209. </summary>
  42210. <remarks>The columns containing the cells to be deleted must be unlocked when the sheet is protected,
  42211. and "Select unlocked cells" option must be enabled. </remarks>
  42212. </member>
  42213. <member name="P:Aspose.Cells.Protection.IsDeletingColumnsAllowed">
  42214. <summary>
  42215. Represents if the deletion of columns is allowed on a protected worksheet.
  42216. </summary>
  42217. <remarks>The columns containing the cells to be deleted must be unlocked when the sheet is protected,
  42218. and "Select unlocked cells" option must be enabled. </remarks>
  42219. <remarks>NOTE: This member is now obsolete. Instead,
  42220. please use Protection.AllowDeletingColumn property.
  42221. This property will be removed 12 months later since June 2010.
  42222. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42223. </member>
  42224. <member name="P:Aspose.Cells.Protection.AllowDeletingRow">
  42225. <summary>
  42226. Represents if the deletion of rows is allowed on a protected worksheet.
  42227. </summary>
  42228. <remarks>The rows containing the cells to be deleted must be unlocked when the sheet is protected,
  42229. and "Select unlocked cells" option must be enabled. </remarks>
  42230. </member>
  42231. <member name="P:Aspose.Cells.Protection.IsDeletingRowsAllowed">
  42232. <summary>
  42233. Represents if the deletion of rows is allowed on a protected worksheet.
  42234. </summary>
  42235. <remarks>The rows containing the cells to be deleted must be unlocked when the sheet is protected,
  42236. and "Select unlocked cells" option must be enabled. </remarks>
  42237. <remarks>NOTE: This member is now obsolete. Instead,
  42238. please use Protection.AllowDeletingRow property.
  42239. This property will be removed 12 months later since June 2010.
  42240. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42241. </member>
  42242. <member name="P:Aspose.Cells.Protection.AllowFiltering">
  42243. <summary>
  42244. Represents if the user is allowed to make use of an AutoFilter that was created before the sheet was protected.
  42245. </summary>
  42246. </member>
  42247. <member name="P:Aspose.Cells.Protection.IsFilteringAllowed">
  42248. <summary>
  42249. Represents if the user is allowed to make use of an AutoFilter that was created before the sheet was protected.
  42250. </summary>
  42251. <remarks>NOTE: This member is now obsolete. Instead,
  42252. please use Protection.AllowFiltering property.
  42253. This property will be removed 12 months later since June 2010.
  42254. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42255. </member>
  42256. <member name="P:Aspose.Cells.Protection.AllowFormattingCell">
  42257. <summary>
  42258. Represents if the formatting of cells is allowed on a protected worksheet.
  42259. </summary>
  42260. </member>
  42261. <member name="P:Aspose.Cells.Protection.IsFormattingCellsAllowed">
  42262. <summary>
  42263. Represents if the formatting of cells is allowed on a protected worksheet.
  42264. </summary>
  42265. <remarks>NOTE: This member is now obsolete. Instead,
  42266. please use Protection.AllowFormattingCell property.
  42267. This property will be removed 12 months later since June 2010.
  42268. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42269. </member>
  42270. <member name="P:Aspose.Cells.Protection.AllowFormattingColumn">
  42271. <summary>
  42272. Represents if the formatting of columns is allowed on a protected worksheet
  42273. </summary>
  42274. </member>
  42275. <member name="P:Aspose.Cells.Protection.IsFormattingColumnsAllowed">
  42276. <summary>
  42277. Represents if the formatting of columns is allowed on a protected worksheet
  42278. </summary>
  42279. <remarks>NOTE: This member is now obsolete. Instead,
  42280. please use Protection.AllowFormattingColumn property.
  42281. This property will be removed 12 months later since June 2010.
  42282. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42283. </member>
  42284. <member name="P:Aspose.Cells.Protection.AllowFormattingRow">
  42285. <summary>
  42286. Represents if the formatting of rows is allowed on a protected worksheet
  42287. </summary>
  42288. </member>
  42289. <member name="P:Aspose.Cells.Protection.IsFormattingRowsAllowed">
  42290. <summary>
  42291. Represents if the formatting of rows is allowed on a protected worksheet
  42292. </summary>
  42293. <remarks>NOTE: This member is now obsolete. Instead,
  42294. please use Protection.AllowFormattingRow property.
  42295. This property will be removed 12 months later since June 2010.
  42296. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42297. </member>
  42298. <member name="P:Aspose.Cells.Protection.AllowInsertingColumn">
  42299. <summary>
  42300. Represents if the insertion of columns is allowed on a protected worksheet
  42301. </summary>
  42302. </member>
  42303. <member name="P:Aspose.Cells.Protection.IsInsertingColumnsAllowed">
  42304. <summary>
  42305. Represents if the insertion of columns is allowed on a protected worksheet
  42306. </summary>
  42307. <remarks>NOTE: This member is now obsolete. Instead,
  42308. please use Protection.AllowInsertingColumn property.
  42309. This property will be removed 12 months later since June 2010.
  42310. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42311. </member>
  42312. <member name="P:Aspose.Cells.Protection.AllowInsertingHyperlink">
  42313. <summary>
  42314. Represents if the insertion of hyperlinks is allowed on a protected worksheet
  42315. </summary>
  42316. </member>
  42317. <member name="P:Aspose.Cells.Protection.IsInsertingHyperlinksAllowed">
  42318. <summary>
  42319. Represents if the insertion of hyperlinks is allowed on a protected worksheet
  42320. </summary>
  42321. <remarks>NOTE: This member is now obsolete. Instead,
  42322. please use Protection.AllowInsertingHyperlink property.
  42323. This property will be removed 12 months later since June 2010.
  42324. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42325. </member>
  42326. <member name="P:Aspose.Cells.Protection.AllowInsertingRow">
  42327. <summary>
  42328. Represents if the insertion of rows is allowed on a protected worksheet
  42329. </summary>
  42330. </member>
  42331. <member name="P:Aspose.Cells.Protection.IsInsertingRowsAllowed">
  42332. <summary>
  42333. Represents if the insertion of rows is allowed on a protected worksheet
  42334. </summary>
  42335. <remarks>NOTE: This member is now obsolete. Instead,
  42336. please use Protection.AllowInsertingRow property.
  42337. This property will be removed 12 months later since June 2010.
  42338. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42339. </member>
  42340. <member name="P:Aspose.Cells.Protection.AllowSorting">
  42341. <summary>
  42342. Represents if the sorting option is allowed on a protected worksheet.
  42343. </summary>
  42344. </member>
  42345. <member name="P:Aspose.Cells.Protection.IsSortingAllowed">
  42346. <summary>
  42347. Represents if the sorting option is allowed on a protected worksheet.
  42348. </summary>
  42349. <remarks>NOTE: This member is now obsolete. Instead,
  42350. please use Protection.AllowSorting property.
  42351. This property will be removed 12 months later since June 2010.
  42352. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42353. </member>
  42354. <member name="P:Aspose.Cells.Protection.AllowUsingPivotTable">
  42355. <summary>
  42356. Represents if the user is allowed to manipulate pivot tables on a protected worksheet.
  42357. </summary>
  42358. </member>
  42359. <member name="P:Aspose.Cells.Protection.IsUsingPivotTablesAllowed">
  42360. <summary>
  42361. Represents if the user is allowed to manipulate pivot tables on a protected worksheet.
  42362. </summary>
  42363. <remarks>NOTE: This member is now obsolete. Instead,
  42364. please use Protection.AllowUsingPivotTable property.
  42365. This property will be removed 12 months later since June 2010.
  42366. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42367. </member>
  42368. <member name="P:Aspose.Cells.Protection.AllowEditingContent">
  42369. <summary>
  42370. Represents if the user is allowed to edit contents of locked cells on a protected worksheet.
  42371. </summary>
  42372. </member>
  42373. <member name="P:Aspose.Cells.Protection.IsEditingContentsAllowed">
  42374. <summary>
  42375. Represents if the user is allowed to edit contents of locked cells on a protected worksheet.
  42376. </summary>
  42377. <remarks>NOTE: This member is now obsolete. Instead,
  42378. please use Protection.AllowEditingContent property.
  42379. This property will be removed 12 months later since June 2010.
  42380. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42381. </member>
  42382. <member name="P:Aspose.Cells.Protection.AllowEditingObject">
  42383. <summary>
  42384. Represents if the user is allowed to manipulate drawing objects on a protected worksheet.
  42385. </summary>
  42386. </member>
  42387. <member name="P:Aspose.Cells.Protection.IsEditingObjectsAllowed">
  42388. <summary>
  42389. Represents if the user is allowed to manipulate drawing objects on a protected worksheet.
  42390. </summary>
  42391. <remarks>NOTE: This member is now obsolete. Instead,
  42392. please use Protection.AllowEditingObject property.
  42393. This property will be removed 12 months later since June 2010.
  42394. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42395. </member>
  42396. <member name="P:Aspose.Cells.Protection.AllowEditingScenario">
  42397. <summary>
  42398. Represents if the user is allowed to edit scenarios on a protected worksheet.
  42399. </summary>
  42400. </member>
  42401. <member name="P:Aspose.Cells.Protection.IsEditingScenariosAllowed">
  42402. <summary>
  42403. Represents if the user is allowed to edit scenarios on a protected worksheet.
  42404. </summary>
  42405. <remarks>NOTE: This member is now obsolete. Instead,
  42406. please use Protection.AllowEditingScenario property.
  42407. This property will be removed 12 months later since June 2010.
  42408. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42409. </member>
  42410. <member name="P:Aspose.Cells.Protection.Password">
  42411. <summary>
  42412. Represents the password to protect the worksheet.
  42413. </summary>
  42414. <remarks>
  42415. If password is set to null or blank string, you can unprotect the worksheet or workbook without using a password. Otherwise, you must specify the password to unprotect the worksheet or workbook.
  42416. </remarks>
  42417. </member>
  42418. <member name="P:Aspose.Cells.Protection.IsProtectedWithPassword">
  42419. <summary>
  42420. Indicates whether the worksheets is protected with password.
  42421. </summary>
  42422. </member>
  42423. <member name="P:Aspose.Cells.Protection.AllowSelectingLockedCell">
  42424. <summary>
  42425. Represents if the user is allowed to select locked cells on a protected worksheet.
  42426. </summary>
  42427. </member>
  42428. <member name="P:Aspose.Cells.Protection.IsSelectingLockedCellsAllowed">
  42429. <summary>
  42430. Represents if the user is allowed to select locked cells on a protected worksheet.
  42431. </summary>
  42432. <remarks>NOTE: This member is now obsolete. Instead,
  42433. please use Protection.AllowSelectingLockedCell property.
  42434. This property will be removed 12 months later since June 2010.
  42435. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42436. </member>
  42437. <member name="P:Aspose.Cells.Protection.AllowSelectingUnlockedCell">
  42438. <summary>
  42439. Represents if the user is allowed to select unlocked cells on a protected worksheet.
  42440. </summary>
  42441. </member>
  42442. <member name="P:Aspose.Cells.Protection.IsSelectingUnlockedCellsAllowed">
  42443. <summary>
  42444. Represents if the user is allowed to select unlocked cells on a protected worksheet.
  42445. </summary>
  42446. <remarks>NOTE: This member is now obsolete. Instead,
  42447. please use Protection.AllowSelectingUnlockedCell property.
  42448. This property will be removed 12 months later since June 2010.
  42449. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  42450. </member>
  42451. <member name="T:Aspose.Cells.ProtectionType">
  42452. <summary>
  42453. Represents workbook/worksheet protection type.
  42454. </summary>
  42455. </member>
  42456. <member name="F:Aspose.Cells.ProtectionType.All">
  42457. <summary>
  42458. Represents to protect all.
  42459. </summary>
  42460. </member>
  42461. <member name="F:Aspose.Cells.ProtectionType.Contents">
  42462. <summary>
  42463. Represents to protect contents, used in Worksheet protection.
  42464. </summary>
  42465. </member>
  42466. <member name="F:Aspose.Cells.ProtectionType.Objects">
  42467. <summary>
  42468. Represents to protect objects, used in Worksheet protection.
  42469. </summary>
  42470. </member>
  42471. <member name="F:Aspose.Cells.ProtectionType.Scenarios">
  42472. <summary>
  42473. Represents to protect scenarios, used in Worksheet protection.
  42474. </summary>
  42475. </member>
  42476. <member name="F:Aspose.Cells.ProtectionType.Structure">
  42477. <summary>
  42478. Represents to protect structure, used in Workbook protection.
  42479. </summary>
  42480. </member>
  42481. <member name="F:Aspose.Cells.ProtectionType.Windows">
  42482. <summary>
  42483. Represents to protect window, used in Workbook protection.
  42484. </summary>
  42485. </member>
  42486. <member name="F:Aspose.Cells.ProtectionType.None">
  42487. <summary>
  42488. Represents no protection. Only for Reading property.
  42489. </summary>
  42490. </member>
  42491. <member name="T:Aspose.Cells.Drawing.RadioButton">
  42492. <summary>
  42493. Represents a radio button.
  42494. </summary>
  42495. </member>
  42496. <member name="P:Aspose.Cells.Drawing.RadioButton.IsChecked">
  42497. <summary>
  42498. Indicates if the radiobutton is checked or not.
  42499. </summary>
  42500. </member>
  42501. <member name="P:Aspose.Cells.Drawing.RadioButton.Shadow">
  42502. <summary>
  42503. Indicates whether the combobox has 3-D shading.
  42504. </summary>
  42505. </member>
  42506. <member name="P:Aspose.Cells.Drawing.RadioButton.GroupBox">
  42507. <summary>
  42508. Gets the GroupBox that contains this RadioButton.
  42509. </summary>
  42510. </member>
  42511. <member name="T:Aspose.Cells.RangeCollection">
  42512. <summary>
  42513. Encapsulates a collection of <see cref="T:Aspose.Cells.Range" /> objects.
  42514. </summary>
  42515. </member>
  42516. <member name="M:Aspose.Cells.RangeCollection.Add(Aspose.Cells.Range)">
  42517. <summary>
  42518. Adds a <see cref="T:Aspose.Cells.Range" /> item to the collection.
  42519. </summary>
  42520. <param name="range">Range object</param>
  42521. <returns>
  42522. </returns>
  42523. </member>
  42524. <member name="P:Aspose.Cells.RangeCollection.Item(System.Int32)">
  42525. <summary>
  42526. Gets the <see cref="T:Aspose.Cells.Range" /> element at the specified index.
  42527. </summary>
  42528. <param name="index">The zero based index of the element.</param>
  42529. <returns>The element at the specified index.</returns>
  42530. </member>
  42531. <member name="T:Aspose.Cells.Drawing.RectangleShape">
  42532. <summary>
  42533. Represents the rectangle shape.
  42534. </summary>
  42535. </member>
  42536. <member name="T:Aspose.Cells.Drawing.ScrollBar">
  42537. <summary>
  42538. Represents a scroll bar object.
  42539. </summary>
  42540. <remarks>Scroll value must be between 0 and 30000.</remarks>
  42541. </member>
  42542. <member name="P:Aspose.Cells.Drawing.ScrollBar.CurrentValue">
  42543. <summary>
  42544. Gets or sets the current value.
  42545. </summary>
  42546. </member>
  42547. <member name="P:Aspose.Cells.Drawing.ScrollBar.Min">
  42548. <summary>
  42549. Gets or sets the minimum value of a scroll bar or spinner range.
  42550. </summary>
  42551. </member>
  42552. <member name="P:Aspose.Cells.Drawing.ScrollBar.Max">
  42553. <summary>
  42554. Gets or sets the maximum value of a scroll bar or spinner range.
  42555. </summary>
  42556. </member>
  42557. <member name="P:Aspose.Cells.Drawing.ScrollBar.IncrementalChange">
  42558. <summary>
  42559. Gets or sets the amount that the scroll bar or spinner is incremented a line scroll.
  42560. </summary>
  42561. </member>
  42562. <member name="P:Aspose.Cells.Drawing.ScrollBar.PageChange">
  42563. <summary>
  42564. Gets or sets page change
  42565. </summary>
  42566. </member>
  42567. <member name="P:Aspose.Cells.Drawing.ScrollBar.Shadow">
  42568. <summary>
  42569. Indicates whether the shape has 3-D shading.
  42570. </summary>
  42571. </member>
  42572. <member name="P:Aspose.Cells.Drawing.ScrollBar.IsHorizontal">
  42573. <summary>
  42574. Indicates whether this is a horizontal scroll bar.
  42575. </summary>
  42576. </member>
  42577. <member name="T:Aspose.Cells.Drawing.SelectionType">
  42578. <summary>
  42579. The selection type of list box.
  42580. </summary>
  42581. </member>
  42582. <member name="F:Aspose.Cells.Drawing.SelectionType.Single">
  42583. <summary>
  42584. Sigle selection type.
  42585. </summary>
  42586. </member>
  42587. <member name="F:Aspose.Cells.Drawing.SelectionType.Multi">
  42588. <summary>
  42589. Multiple selection type.
  42590. </summary>
  42591. </member>
  42592. <member name="F:Aspose.Cells.Drawing.SelectionType.Extend">
  42593. <summary>
  42594. Extend selection type.
  42595. </summary>
  42596. </member>
  42597. <member name="T:Aspose.Cells.Drawing.ShapeCollection">
  42598. <summary>
  42599. Represents all the shape in a worksheet/chart.
  42600. </summary>
  42601. </member>
  42602. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddCopy(Aspose.Cells.Drawing.Shape,System.Int32,System.Int32,System.Int32,System.Int32)">
  42603. <summary>
  42604. Adds and copy a shape to the worksheet..
  42605. </summary>
  42606. <param name="sourceShape"> Source shape.</param>
  42607. <param name="upperLeftRow">Upper left row index.</param>
  42608. <param name="top">Represents the vertical offset of checkbox from its left row, in unit of pixel. </param>
  42609. <param name="upperLeftColumn">Upper left column index.</param>
  42610. <param name="left">Represents the horizontal offset of textbox from its left column, in unit of pixel. </param>
  42611. <returns>The new shape object index.</returns>
  42612. </member>
  42613. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddCheckBox(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42614. <summary>
  42615. Adds a checkbox to the worksheet.
  42616. </summary>
  42617. <param name="upperLeftRow">Upper left row index.</param>
  42618. <param name="top">Represents the vertical offset of checkbox from its left row, in unit of pixel. </param>
  42619. <param name="upperLeftColumn">Upper left column index.</param>
  42620. <param name="left">Represents the horizontal offset of textbox from its left column, in unit of pixel. </param>
  42621. <param name="height">Height of textbox, in unit of pixel.</param>
  42622. <param name="width">Width of textbox, in unit of pixel.</param>
  42623. <returns>The new CheckBox object index.</returns>
  42624. </member>
  42625. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddTextBox(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42626. <summary>
  42627. Adds a text box to the worksheet.
  42628. </summary>
  42629. <param name="upperLeftRow"> Upper left row index.</param>
  42630. <param name="top">Represents the vertical offset of textbox from its left row, in unit of pixel. </param>
  42631. <param name="upperLeftColumn">Upper left column index.</param>
  42632. <param name="left">Represents the horizontal offset of textbox from its left column, in unit of pixel. </param>
  42633. <param name="height">Represents the height of textbox, in unit of pixel. </param>
  42634. <param name="width">Represents the width of textbox, in unit of pixel. </param>
  42635. <returns>A <see cref="T:Aspose.Cells.Drawing.TextBox" /> object.</returns>
  42636. </member>
  42637. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddSpinner(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42638. <summary>
  42639. Adds a Spinner to the worksheet.
  42640. </summary>
  42641. <param name="upperLeftRow"> Upper left row index.</param>
  42642. <param name="top">Represents the vertical offset of Spinner from its left row, in unit of pixel. </param>
  42643. <param name="upperLeftColumn">Upper left column index.</param>
  42644. <param name="left">Represents the horizontal offset of Spinner from its left column, in unit of pixel. </param>
  42645. <param name="height">Represents the height of Spinner, in unit of pixel. </param>
  42646. <param name="width">Represents the width of Spinner, in unit of pixel. </param>
  42647. <returns>A Spinner object.</returns>
  42648. </member>
  42649. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddScrollBar(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42650. <summary>
  42651. Adds a ScrollBar to the worksheet.
  42652. </summary>
  42653. <param name="upperLeftRow"> Upper left row index.</param>
  42654. <param name="top">Represents the vertical offset of ScrollBar from its left row, in unit of pixel. </param>
  42655. <param name="upperLeftColumn">Upper left column index.</param>
  42656. <param name="left">Represents the horizontal offset of ScrollBar from its left column, in unit of pixel. </param>
  42657. <param name="height">Represents the height of ScrollBar, in unit of pixel. </param>
  42658. <param name="width">Represents the width of ScrollBar, in unit of pixel. </param>
  42659. <returns>A ScrollBar object.</returns>
  42660. </member>
  42661. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddRadioButton(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42662. <summary>
  42663. Adds a RadioButton to the worksheet.
  42664. </summary>
  42665. <param name="upperLeftRow"> Upper left row index.</param>
  42666. <param name="top">Represents the vertical offset of RadioButton from its left row, in unit of pixel. </param>
  42667. <param name="upperLeftColumn">Upper left column index.</param>
  42668. <param name="left">Represents the horizontal offset of RadioButton from its left column, in unit of pixel. </param>
  42669. <param name="height">Represents the height of RadioButton, in unit of pixel. </param>
  42670. <param name="width">Represents the width of RadioButton, in unit of pixel. </param>
  42671. <returns>A RadioButton object.</returns>
  42672. </member>
  42673. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddListBox(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42674. <summary>
  42675. Adds a ListBox to the worksheet.
  42676. </summary>
  42677. <param name="upperLeftRow"> Upper left row index.</param>
  42678. <param name="top">Represents the vertical offset of ListBox from its left row, in unit of pixel. </param>
  42679. <param name="upperLeftColumn">Upper left column index.</param>
  42680. <param name="left">Represents the horizontal offset of ListBox from its left column, in unit of pixel. </param>
  42681. <param name="height">Represents the height of ListBox, in unit of pixel. </param>
  42682. <param name="width">Represents the width of ListBox, in unit of pixel. </param>
  42683. <returns>A ListBox object.</returns>
  42684. </member>
  42685. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddComboBox(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42686. <summary>
  42687. Adds a ComboBox to the worksheet.
  42688. </summary>
  42689. <param name="upperLeftRow"> Upper left row index.</param>
  42690. <param name="top">Represents the vertical offset of ComboBox from its left row, in unit of pixel. </param>
  42691. <param name="upperLeftColumn">Upper left column index.</param>
  42692. <param name="left">Represents the horizontal offset of ComboBox from its left column, in unit of pixel. </param>
  42693. <param name="height">Represents the height of ComboBox, in unit of pixel. </param>
  42694. <param name="width">Represents the width of ComboBox, in unit of pixel. </param>
  42695. <returns>A ComboBox object.</returns>
  42696. </member>
  42697. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddGroupBox(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42698. <summary>
  42699. Adds a GroupBox to the worksheet.
  42700. </summary>
  42701. <param name="upperLeftRow"> Upper left row index.</param>
  42702. <param name="top">Represents the vertical offset of GroupBox from its left row, in unit of pixel. </param>
  42703. <param name="upperLeftColumn">Upper left column index.</param>
  42704. <param name="left">Represents the horizontal offset of GroupBox from its left column, in unit of pixel. </param>
  42705. <param name="height">Represents the height of GroupBox, in unit of pixel. </param>
  42706. <param name="width">Represents the width of GroupBox, in unit of pixel. </param>
  42707. <returns>A GroupBox object.</returns>
  42708. </member>
  42709. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddButton(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42710. <summary>
  42711. Adds a Button to the worksheet.
  42712. </summary>
  42713. <param name="upperLeftRow"> Upper left row index.</param>
  42714. <param name="top">Represents the vertical offset of Button from its left row, in unit of pixel. </param>
  42715. <param name="upperLeftColumn">Upper left column index.</param>
  42716. <param name="left">Represents the horizontal offset of Button from its left column, in unit of pixel. </param>
  42717. <param name="height">Represents the height of Button, in unit of pixel. </param>
  42718. <param name="width">Represents the width of Button, in unit of pixel. </param>
  42719. <returns>A Button object.</returns>
  42720. </member>
  42721. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddLabel(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42722. <summary>
  42723. Adds a Label to the worksheet.
  42724. </summary>
  42725. <param name="upperLeftRow"> Upper left row index.</param>
  42726. <param name="top">Represents the vertical offset of Label from its left row, in unit of pixel. </param>
  42727. <param name="upperLeftColumn">Upper left column index.</param>
  42728. <param name="left">Represents the horizontal offset of Label from its left column, in unit of pixel. </param>
  42729. <param name="height">Represents the height of Label, in unit of pixel. </param>
  42730. <param name="width">Represents the width of Label, in unit of pixel. </param>
  42731. <returns>A Label object.</returns>
  42732. </member>
  42733. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddLabelInChart(System.Int32,System.Int32,System.Int32,System.Int32)">
  42734. <summary>
  42735. Adds a label to the chart.
  42736. </summary>
  42737. <param name="top">Represents the vertical offset of label from the upper left corner in units of 1/4000 of the chart area. </param>
  42738. <param name="left">Represents the vertical offset of label from the upper left corner in units of 1/4000 of the chart area.</param>
  42739. <param name="height">Represents the height of label, in units of 1/4000 of the chart area.</param>
  42740. <param name="width">Represents the width of label, in units of 1/4000 of the chart area.</param>
  42741. <returns>A new Label object.</returns>
  42742. </member>
  42743. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddTextBoxInChart(System.Int32,System.Int32,System.Int32,System.Int32)">
  42744. <summary>
  42745. Adds a textbox to the chart.
  42746. </summary>
  42747. <param name="top">Represents the vertical offset of textbox from the upper left corner in units of 1/4000 of the chart area. </param>
  42748. <param name="left">Represents the vertical offset of textbox from the upper left corner in units of 1/4000 of the chart area.</param>
  42749. <param name="height">Represents the height of textbox, in units of 1/4000 of the chart area.</param>
  42750. <param name="width">Represents the width of textbox, in units of 1/4000 of the chart area.</param>
  42751. <returns>A TextBox object.</returns>
  42752. </member>
  42753. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddTextEffectInChart(Aspose.Cells.Drawing.MsoPresetTextEffect,System.String,System.String,System.Int32,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32)">
  42754. <summary>
  42755. Inserts a WordArt object to the chart
  42756. </summary>
  42757. <param name="effect">The mso preset text effect type.</param>
  42758. <param name="text">The WordArt text.</param>
  42759. <param name="fontName">The font name.</param>
  42760. <param name="size">The font size</param>
  42761. <param name="fontBold">Indicates whether font is bold.</param>
  42762. <param name="fontItalic">Indicates whether font is italic.</param>
  42763. <param name="top">Represents the vertical offset of shape from the upper left corner in units of 1/4000 of the chart area. </param>
  42764. <param name="left">Represents the vertical offset of shape from the upper left corner in units of 1/4000 of the chart area.</param>
  42765. <param name="height">Represents the height of shape, in units of 1/4000 of the chart area.</param>
  42766. <param name="width">Represents the width of shape, in units of 1/4000 of the chart area.</param>
  42767. <returns>Returns a Shape object that represents the new WordArt object.</returns>
  42768. </member>
  42769. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddTextEffect(Aspose.Cells.Drawing.MsoPresetTextEffect,System.String,System.String,System.Int32,System.Boolean,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42770. <summary>
  42771. Inserts a WordArt object.
  42772. </summary>
  42773. <param name="effect">The mso preset text effect type.</param>
  42774. <param name="text">The WordArt text.</param>
  42775. <param name="fontName">The font name.</param>
  42776. <param name="size">The font size</param>
  42777. <param name="fontBold">Indicates whether font is bold.</param>
  42778. <param name="fontItalic">Indicates whether font is italic.</param>
  42779. <param name="upperLeftRow"> Upper left row index.</param>
  42780. <param name="top">Represents the vertical offset of shape from its left row, in unit of pixel. </param>
  42781. <param name="upperLeftColumn">Upper left column index.</param>
  42782. <param name="left">Represents the horizontal offset of shape from its left column, in unit of pixel. </param>
  42783. <param name="height">Represents the height of shape, in unit of pixel. </param>
  42784. <param name="width">Represents the width of shape, in unit of pixel. </param>
  42785. <returns>Returns a Shape object that represents the new WordArt object.</returns>
  42786. </member>
  42787. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddWordArt(Aspose.Cells.Drawing.PresetWordArtStyle,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42788. <summary>
  42789. Adds preset WordArt since Excel 2007.s
  42790. </summary>
  42791. <param name="style">The preset WordArt Style.</param>
  42792. <param name="text">The text.</param>
  42793. <param name="upperLeftRow"> Upper left row index.</param>
  42794. <param name="top">Represents the vertical offset of shape from its left row, in unit of pixel. </param>
  42795. <param name="upperLeftColumn">Upper left column index.</param>
  42796. <param name="left">Represents the horizontal offset of shape from its left column, in unit of pixel. </param>
  42797. <param name="height">Represents the height of shape, in unit of pixel. </param>
  42798. <param name="width">Represents the width of shape, in unit of pixel. </param>
  42799. <returns>
  42800. </returns>
  42801. </member>
  42802. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddRectangle(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42803. <summary>
  42804. Adds a RectangleShape to the worksheet.
  42805. </summary>
  42806. <param name="upperLeftRow"> Upper left row index.</param>
  42807. <param name="top">Represents the vertical offset of RectangleShape from its left row, in unit of pixel. </param>
  42808. <param name="upperLeftColumn">Upper left column index.</param>
  42809. <param name="left">Represents the horizontal offset of RectangleShape from its left column, in unit of pixel. </param>
  42810. <param name="height">Represents the height of RectangleShape, in unit of pixel. </param>
  42811. <param name="width">Represents the width of RectangleShape, in unit of pixel. </param>
  42812. <returns>A RectangleShape object.</returns>
  42813. </member>
  42814. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddOval(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42815. <summary>
  42816. Adds a Oval to the worksheet.
  42817. </summary>
  42818. <param name="upperLeftRow"> Upper left row index.</param>
  42819. <param name="top">Represents the vertical offset of Oval from its left row, in unit of pixel. </param>
  42820. <param name="upperLeftColumn">Upper left column index.</param>
  42821. <param name="left">Represents the horizontal offset of Oval from its left column, in unit of pixel. </param>
  42822. <param name="height">Represents the height of Oval, in unit of pixel. </param>
  42823. <param name="width">Represents the width of Oval, in unit of pixel. </param>
  42824. <returns>A Oval object.</returns>
  42825. </member>
  42826. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddLine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42827. <summary>
  42828. Adds a LineShape to the worksheet.
  42829. </summary>
  42830. <param name="upperLeftRow"> Upper left row index.</param>
  42831. <param name="top">Represents the vertical offset of LineShape from its left row, in unit of pixel. </param>
  42832. <param name="upperLeftColumn">Upper left column index.</param>
  42833. <param name="left">Represents the horizontal offset of LineShape from its left column, in unit of pixel. </param>
  42834. <param name="height">Represents the height of LineShape, in unit of pixel. </param>
  42835. <param name="width">Represents the width of LineShape, in unit of pixel. </param>
  42836. <returns>A LineShape object.</returns>
  42837. </member>
  42838. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddFreeFloatingShape(Aspose.Cells.Drawing.MsoDrawingType,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Boolean)">
  42839. <summary>
  42840. Adds a free floating shape to the worksheet.Only applies for line/image shape.
  42841. </summary>
  42842. <param name="type">The shape type.</param>
  42843. <param name="top">Represents the vertical offset of shape from the worksheet's top row, in unit of pixel.</param>
  42844. <param name="left">Represents the horizontal offset of shape from the worksheet's left column, in unit of pixel.</param>
  42845. <param name="height">Represents the height of LineShape, in unit of pixel. </param>
  42846. <param name="width">Represents the width of LineShape, in unit of pixel. </param>
  42847. <param name="imageData">The image data,only applies for the picture.</param>
  42848. <param name="isOriginalSize">Whether the shape use original size if the shape is image.</param>
  42849. <returns>
  42850. </returns>
  42851. </member>
  42852. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddShapeInChart(Aspose.Cells.Drawing.MsoDrawingType,Aspose.Cells.Drawing.PlacementType,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])">
  42853. <summary>
  42854. Add a shape to chart .All unit is 1/4000 of chart area.
  42855. </summary>
  42856. <param name="type">The drawing type.</param>
  42857. <param name="placement">the placement type.</param>
  42858. <param name="left">In unit of 1/4000 chart area width.</param>
  42859. <param name="top">In unit of 1/4000 chart area height.</param>
  42860. <param name="right">In unit of 1/4000 chart area width.</param>
  42861. <param name="bottom">In unit of 1/4000 chart area height.</param>
  42862. <param name="imageData">If the shape is not a picture or ole object,imageData should be null.</param>
  42863. </member>
  42864. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddShapeInChart(Aspose.Cells.Drawing.MsoDrawingType,Aspose.Cells.Drawing.PlacementType,System.Int32,System.Int32,System.Int32,System.Int32)">
  42865. <summary>
  42866. Add a shape to chart .All unit is 1/4000 of chart area.
  42867. </summary>
  42868. <param name="type">The drawing type.</param>
  42869. <param name="placement">the placement type.</param>
  42870. <param name="left">In unit of 1/4000 chart area width.</param>
  42871. <param name="top">In unit of 1/4000 chart area height.</param>
  42872. <param name="right">In unit of 1/4000 chart area width.</param>
  42873. <param name="bottom">In unit of 1/4000 chart area height.</param>
  42874. </member>
  42875. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddArc(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42876. <summary>
  42877. Adds a ArcShape to the worksheet.
  42878. </summary>
  42879. <param name="upperLeftRow"> Upper left row index.</param>
  42880. <param name="top">Represents the vertical offset of ArcShape from its left row, in unit of pixel. </param>
  42881. <param name="upperLeftColumn">Upper left column index.</param>
  42882. <param name="left">Represents the horizontal offset of ArcShape from its left column, in unit of pixel. </param>
  42883. <param name="height">Represents the height of ArcShape, in unit of pixel. </param>
  42884. <param name="width">Represents the width of ArcShape, in unit of pixel. </param>
  42885. <returns>A ArcShape object.</returns>
  42886. </member>
  42887. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddShape(Aspose.Cells.Drawing.MsoDrawingType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42888. <summary>
  42889. Adds a Shape to the worksheet.
  42890. </summary>
  42891. <param name="type">Mso drawing type.</param>
  42892. <param name="upperLeftRow"> Upper left row index.</param>
  42893. <param name="top">Represents the vertical offset of Shape from its left row, in unit of pixel. </param>
  42894. <param name="upperLeftColumn">Upper left column index.</param>
  42895. <param name="left">Represents the horizontal offset of Shape from its left column, in unit of pixel. </param>
  42896. <param name="height">Represents the height of Shape, in unit of pixel. </param>
  42897. <param name="width">Represents the width of Shape, in unit of pixel. </param>
  42898. <returns>A Shape object.</returns>
  42899. <remarks>The type could not be Chart/Comment/Picture/OleObject/Polygon/DialogBox</remarks>
  42900. </member>
  42901. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddAutoShape(Aspose.Cells.Drawing.AutoShapeType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42902. <summary>
  42903. Adds a AutoShape to the worksheet.
  42904. </summary>
  42905. <param name="type">Auto shape type.</param>
  42906. <param name="upperLeftRow"> Upper left row index.</param>
  42907. <param name="top">Represents the vertical offset of Shape from its left row, in unit of pixel. </param>
  42908. <param name="upperLeftColumn">Upper left column index.</param>
  42909. <param name="left">Represents the horizontal offset of Shape from its left column, in unit of pixel. </param>
  42910. <param name="height">Represents the height of Shape, in unit of pixel. </param>
  42911. <param name="width">Represents the width of Shape, in unit of pixel. </param>
  42912. <returns>A Shape object.</returns>
  42913. <remarks>The type could not be Chart/Comment/Picture/OleObject/Polygon/DialogBox</remarks>
  42914. </member>
  42915. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddAutoShapeInChart(Aspose.Cells.Drawing.AutoShapeType,System.Int32,System.Int32,System.Int32,System.Int32)">
  42916. <summary>
  42917. Adds a AutoShape to the chart.
  42918. </summary>
  42919. <param name="type">Auto shape type.</param>
  42920. <param name="top">Represents the vertical offset of textbox from the upper left corner in units of 1/4000 of the chart area. </param>
  42921. <param name="left">Represents the vertical offset of textbox from the upper left corner in units of 1/4000 of the chart area.</param>
  42922. <param name="height">Represents the height of textbox, in units of 1/4000 of the chart area.</param>
  42923. <param name="width">Represents the width of textbox, in units of 1/4000 of the chart area.</param>
  42924. <returns>Returns a shape object.</returns>
  42925. <remarks>The type could not be Chart/Comment/Picture/OleObject/Polygon/DialogBox</remarks>
  42926. </member>
  42927. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddActiveXControl(Aspose.Cells.Drawing.ActiveXControls.ControlType,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
  42928. <summary>
  42929. Creates an Activex Control.
  42930. </summary>
  42931. <param name="type">The type of the control.</param>
  42932. <param name="topRow"> Upper left row index.</param>
  42933. <param name="top">Represents the vertical offset of Shape from its left row, in unit of pixel. </param>
  42934. <param name="leftColumn">Upper left column index.</param>
  42935. <param name="left">Represents the horizontal offset of Shape from its left column, in unit of pixel. </param>
  42936. <param name="height">Represents the height of Shape, in unit of pixel. </param>
  42937. <param name="width">Represents the width of Shape, in unit of pixel. </param>
  42938. <returns>
  42939. </returns>
  42940. </member>
  42941. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddPicture(System.Int32,System.Int32,System.Int32,System.Int32,System.IO.Stream)">
  42942. <summary>
  42943. Adds a picture to the collection.
  42944. </summary>
  42945. <param name="upperLeftRow">Upper left row index.</param>
  42946. <param name="upperLeftColumn">Upper left column index.</param>
  42947. <param name="lowerRightRow">Lower right row index</param>
  42948. <param name="lowerRightColumn">Lower right column index</param>
  42949. <param name="stream">Stream object which contains the image data.</param>
  42950. <returns>
  42951. <see cref="T:Aspose.Cells.Drawing.Picture" /> Picture object.</returns>
  42952. </member>
  42953. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddPicture(System.Int32,System.Int32,System.IO.Stream,System.Int32,System.Int32)">
  42954. <summary>
  42955. Adds a picture to the collection.
  42956. </summary>
  42957. <param name="upperLeftRow">Upper left row index.</param>
  42958. <param name="upperLeftColumn">Upper left column index.</param>
  42959. <param name="stream">Stream object which contains the image data.</param>
  42960. <param name="widthScale">Scale of image width, a percentage.</param>
  42961. <param name="heightScale">Scale of image height, a percentage.</param>
  42962. <returns>
  42963. <see cref="T:Aspose.Cells.Drawing.Picture" /> Picture object.</returns>
  42964. </member>
  42965. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddSvg(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Byte[])">
  42966. <summary>
  42967. Adds svg image.
  42968. </summary>
  42969. <param name="upperLeftRow"> Upper left row index.</param>
  42970. <param name="top">Represents the vertical offset of shape from its left row, in unit of pixel. </param>
  42971. <param name="upperLeftColumn">Upper left column index.</param>
  42972. <param name="left">The horizontal offset of shape from its left column, in unit of pixel. </param>
  42973. <param name="height">The height of shape, in unit of pixel. </param>
  42974. <param name="width">The width of shape, in unit of pixel. </param>
  42975. <param name="svgData">The svg image data.</param>
  42976. <param name="compatibleImageData">Converted image data from svg in order to be compatible with Excel 2016 or lower versions.</param>
  42977. <returns>
  42978. </returns>
  42979. </member>
  42980. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddLinkedPicture(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
  42981. <summary>
  42982. Add a linked picture.
  42983. </summary>
  42984. <param name="upperLeftRow">Upper left row index.</param>
  42985. <param name="upperLeftColumn">Upper left column index.</param>
  42986. <param name="height">The height of the shape. In unit of pixels</param>
  42987. <param name="width">The width of the shape. In unit of pixels</param>
  42988. <param name="sourceFullName">
  42989. The path and name of the source file for the linked image</param>
  42990. <returns>
  42991. <see cref="T:Aspose.Cells.Drawing.Picture" /> Picture object.</returns>
  42992. </member>
  42993. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddOleObjectWithLinkedImage(System.Int32,System.Int32,System.Int32,System.Int32,System.String)">
  42994. <summary>
  42995. Add a linked picture.
  42996. </summary>
  42997. <param name="upperLeftRow">Upper left row index.</param>
  42998. <param name="upperLeftColumn">Upper left column index.</param>
  42999. <param name="height">The height of the shape. In unit of pixels</param>
  43000. <param name="width">The width of the shape. In unit of pixels</param>
  43001. <param name="sourceFullName">
  43002. The path and name of the source file for the linked image</param>
  43003. <returns>
  43004. <see cref="T:Aspose.Cells.Drawing.Picture" /> Picture object.</returns>
  43005. </member>
  43006. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddPictureInChart(System.Int32,System.Int32,System.IO.Stream,System.Int32,System.Int32)">
  43007. <summary>
  43008. Adds a picture to the chart.
  43009. </summary>
  43010. <param name="top">Represents the vertical offset of shape from the upper left corner in units of 1/4000 of the chart area. </param>
  43011. <param name="left">Represents the horizontal offset of shape from the upper left corner in units of 1/4000 of the chart area.</param>
  43012. <param name="stream">Stream object which contains the image data.</param>
  43013. <param name="widthScale">Scale of image width, a percentage.</param>
  43014. <param name="heightScale">Scale of image height, a percentage.</param>
  43015. <returns>Returns a Picture object.</returns>
  43016. </member>
  43017. <member name="M:Aspose.Cells.Drawing.ShapeCollection.AddOleObject(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])">
  43018. <summary>
  43019. </summary>
  43020. <param name="upperLeftRow">
  43021. </param>
  43022. <param name="top">
  43023. </param>
  43024. <param name="upperLeftColumn">
  43025. </param>
  43026. <param name="left">
  43027. </param>
  43028. <param name="height">
  43029. </param>
  43030. <param name="width">
  43031. </param>
  43032. <param name="imageData">
  43033. </param>
  43034. <returns>
  43035. </returns>
  43036. </member>
  43037. <member name="M:Aspose.Cells.Drawing.ShapeCollection.CopyCommentsInRange(Aspose.Cells.Drawing.ShapeCollection,Aspose.Cells.CellArea,System.Int32,System.Int32)">
  43038. <summary>
  43039. Copy all comments in the range.
  43040. </summary>
  43041. <param name="shapes">The source shapes.</param>
  43042. <param name="ca">The source range.</param>
  43043. <param name="destRow">The dest range start row.</param>
  43044. <param name="destColumn">The dest range start column.</param>
  43045. </member>
  43046. <member name="M:Aspose.Cells.Drawing.ShapeCollection.CopyInRange(Aspose.Cells.Drawing.ShapeCollection,Aspose.Cells.CellArea,System.Int32,System.Int32,System.Boolean)">
  43047. <summary>
  43048. Copy shapes in the range to destination range.
  43049. </summary>
  43050. <param name="sourceShapes">Source shapes.</param>
  43051. <param name="ca">The source range.</param>
  43052. <param name="destRow">The dest row index of the dest range.</param>
  43053. <param name="destColumn">The dest column of the dest range.</param>
  43054. <param name="isContained">Whether only copy the shapes which are contained in the range.
  43055. If true,only copies the shapes in the range.
  43056. Otherwise,it works as MS Office.</param>
  43057. </member>
  43058. <member name="M:Aspose.Cells.Drawing.ShapeCollection.DeleteInRange(Aspose.Cells.CellArea)">
  43059. <summary>
  43060. Delete shapes in the range.Comment shapes will not be deleted.
  43061. </summary>
  43062. <param name="ca">The range.If the shapes are contained in the range, they will be removed.</param>
  43063. </member>
  43064. <member name="M:Aspose.Cells.Drawing.ShapeCollection.DeleteShape(Aspose.Cells.Drawing.Shape)">
  43065. <summary>
  43066. Delete a shape. If the shape is in the group or is a comment shape, it will not be deleted.
  43067. </summary>
  43068. <param name="shape">
  43069. </param>
  43070. </member>
  43071. <member name="M:Aspose.Cells.Drawing.ShapeCollection.Group(Aspose.Cells.Drawing.Shape[])">
  43072. <summary>
  43073. Group the shapes.
  43074. </summary>
  43075. <param name="groupItems">the group items.</param>
  43076. <returns>Return the group shape.</returns>
  43077. <remarks>
  43078. The shape in the groupItems should not be grouped.
  43079. The shape must be in this Shapes collection.</remarks>
  43080. </member>
  43081. <member name="M:Aspose.Cells.Drawing.ShapeCollection.Ungroup(Aspose.Cells.Drawing.GroupShape)">
  43082. <summary>
  43083. Ungroups the shape items.
  43084. </summary>
  43085. <param name="group">The group shape.</param>
  43086. <remarks>If the group shape is grouped by another group shape,nothing will be done.</remarks>
  43087. </member>
  43088. <member name="M:Aspose.Cells.Drawing.ShapeCollection.RemoveAt(System.Int32)">
  43089. <summary>
  43090. Remove the shape.
  43091. </summary>
  43092. <param name="index">The index of the shape.</param>
  43093. </member>
  43094. <member name="M:Aspose.Cells.Drawing.ShapeCollection.Remove(Aspose.Cells.Drawing.Shape)">
  43095. <summary>
  43096. Remove the shape.
  43097. </summary>
  43098. <param name="shape">
  43099. </param>
  43100. </member>
  43101. <member name="M:Aspose.Cells.Drawing.ShapeCollection.Clear">
  43102. <summary>
  43103. Clear all shapes.
  43104. </summary>
  43105. </member>
  43106. <member name="M:Aspose.Cells.Drawing.ShapeCollection.UpdateSelectedValue">
  43107. <summary>
  43108. Update the selected value by the value of the linked cell of the shapes.
  43109. </summary>
  43110. </member>
  43111. <member name="P:Aspose.Cells.Drawing.ShapeCollection.Item(System.Int32)">
  43112. <summary>
  43113. Gets the shape object at the specific index.
  43114. </summary>
  43115. <param name="index">
  43116. </param>
  43117. <returns>
  43118. </returns>
  43119. </member>
  43120. <member name="P:Aspose.Cells.Drawing.ShapeCollection.Item(System.String)">
  43121. <summary>
  43122. Gets the shape object by the shape image
  43123. </summary>
  43124. <param name="name">
  43125. </param>
  43126. <returns>
  43127. </returns>
  43128. </member>
  43129. <member name="T:Aspose.Cells.SheetType">
  43130. <summary>
  43131. Specifies the worksheet type.
  43132. </summary>
  43133. </member>
  43134. <member name="F:Aspose.Cells.SheetType.VB">
  43135. <summary>
  43136. Visual Basic module
  43137. </summary>
  43138. </member>
  43139. <member name="F:Aspose.Cells.SheetType.Worksheet">
  43140. <summary>
  43141. </summary>
  43142. </member>
  43143. <member name="F:Aspose.Cells.SheetType.Chart">
  43144. <summary>
  43145. Chart
  43146. </summary>
  43147. </member>
  43148. <member name="F:Aspose.Cells.SheetType.BIFF4Macro">
  43149. <summary>
  43150. BIFF4 Macro sheet
  43151. </summary>
  43152. </member>
  43153. <member name="F:Aspose.Cells.SheetType.InternationalMacro">
  43154. <summary>
  43155. International Macro sheet
  43156. </summary>
  43157. </member>
  43158. <member name="F:Aspose.Cells.SheetType.Other">
  43159. <summary>
  43160. </summary>
  43161. </member>
  43162. <member name="F:Aspose.Cells.SheetType.Dialog">
  43163. <summary>
  43164. Dialog worksheet
  43165. </summary>
  43166. </member>
  43167. <member name="T:Aspose.Cells.ShiftType">
  43168. <summary>
  43169. Represent the shift options when deleting a range of cells.
  43170. </summary>
  43171. </member>
  43172. <member name="F:Aspose.Cells.ShiftType.Down">
  43173. <summary>
  43174. Shift cells down.
  43175. </summary>
  43176. </member>
  43177. <member name="F:Aspose.Cells.ShiftType.Left">
  43178. <summary>
  43179. Shift cells left.
  43180. </summary>
  43181. </member>
  43182. <member name="F:Aspose.Cells.ShiftType.None">
  43183. <summary>
  43184. Do not shift cells.
  43185. </summary>
  43186. </member>
  43187. <member name="F:Aspose.Cells.ShiftType.Right">
  43188. <summary>
  43189. Shift cells right.
  43190. </summary>
  43191. </member>
  43192. <member name="F:Aspose.Cells.ShiftType.Up">
  43193. <summary>
  43194. Shift cells up.
  43195. </summary>
  43196. </member>
  43197. <member name="T:Aspose.Cells.SortOrder">
  43198. <summary>
  43199. Represents sort order for the data range.
  43200. </summary>
  43201. </member>
  43202. <member name="F:Aspose.Cells.SortOrder.Ascending">
  43203. <summary>
  43204. </summary>
  43205. </member>
  43206. <member name="F:Aspose.Cells.SortOrder.Descending">
  43207. <summary>
  43208. </summary>
  43209. </member>
  43210. <member name="T:Aspose.Cells.Drawing.Spinner">
  43211. <summary>
  43212. Represents the Forms control: Spinner.
  43213. </summary>
  43214. <remarks>Scroll value must be between 0 and 30000.</remarks>
  43215. </member>
  43216. <member name="P:Aspose.Cells.Drawing.Spinner.CurrentValue">
  43217. <summary>
  43218. Gets or sets the current value.
  43219. </summary>
  43220. </member>
  43221. <member name="P:Aspose.Cells.Drawing.Spinner.Min">
  43222. <summary>
  43223. Gets or sets the minimum value of a scroll bar or spinner range.
  43224. </summary>
  43225. </member>
  43226. <member name="P:Aspose.Cells.Drawing.Spinner.Max">
  43227. <summary>
  43228. Gets or sets the maximum value of a scroll bar or spinner range.
  43229. </summary>
  43230. </member>
  43231. <member name="P:Aspose.Cells.Drawing.Spinner.IncrementalChange">
  43232. <summary>
  43233. Gets or sets the amount that the scroll bar or spinner is incremented a line scroll.
  43234. </summary>
  43235. </member>
  43236. <member name="P:Aspose.Cells.Drawing.Spinner.Shadow">
  43237. <summary>
  43238. Indicates whether the shape has 3-D shading.
  43239. </summary>
  43240. </member>
  43241. <member name="P:Aspose.Cells.Drawing.Spinner.IsHorizontal">
  43242. <summary>
  43243. Indicates whether this is a horizontal scroll bar.
  43244. </summary>
  43245. </member>
  43246. <member name="T:Aspose.Cells.Style">
  43247. <summary>
  43248. Represents display style of excel document,such as font,color,alignment,border,etc.
  43249. </summary>
  43250. The Style object contains all style attributes (font, number format, alignment, and so on) as properties.
  43251. There are two methods to set a cell's style.
  43252. <example><code>
  43253. [C#]
  43254. Cell cell = excel.Worksheets[0].Cells["A1"];
  43255. Style style = cell.GetStyle();
  43256. style.Font.Name = "Times New Roman";
  43257. style.Font.Color = Color.Blue;
  43258. cell.SetStyle(style);
  43259. </code></example></member>
  43260. <member name="M:Aspose.Cells.Style.SetPatternColor(Aspose.Cells.BackgroundType,System.Drawing.Color,System.Drawing.Color)">
  43261. <summary>
  43262. Sets the background color.
  43263. </summary>
  43264. <param name="pattern">The pattern.</param>
  43265. <param name="color1">The foreground color.</param>
  43266. <param name="color2">The background color. Only works when pattern is not BackgroundType.None and BackgroundType.Solid.</param>
  43267. </member>
  43268. <member name="M:Aspose.Cells.Style.#ctor">
  43269. <summary>
  43270. Initializes a new instance of the <see cref="T:Aspose.Cells.Style" /> class.
  43271. </summary>
  43272. <remarks>NOTE: This constructor is now obsolete.
  43273. Instead, please use CellsFactory.CreateStyle() method.
  43274. This property will be removed 6 months later since October 2016.
  43275. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  43276. </member>
  43277. <member name="M:Aspose.Cells.Style.Copy(Aspose.Cells.Style)">
  43278. <summary>
  43279. Copies data from another style object
  43280. </summary>
  43281. <param name="style">Source Style object</param>
  43282. <remarks>
  43283. This method does not copy the name of the style.
  43284. If you want to copy the name, please call the following codes after copying style:
  43285. destStyle.Name = style.Name.</remarks>
  43286. </member>
  43287. <member name="M:Aspose.Cells.Style.Update">
  43288. <summary>
  43289. Apply the named style to the styles of the cells which use this named style.
  43290. It works like clicking the "ok" button after you finished modifying the style.
  43291. Only applies for named style.
  43292. </summary>
  43293. </member>
  43294. <member name="M:Aspose.Cells.Style.IsModified(Aspose.Cells.StyleModifyFlag)">
  43295. <summary>
  43296. Checks whether the specified properties of the style have been modified.
  43297. Used for style of ConditionalFormattings to check whether the specified properties of this style should be used when applying the ConditionalFormattings on a cell.
  43298. </summary>
  43299. <param name="modifyFlag">Style modified flags</param>
  43300. <returns>true if the specified properties have been modified</returns>
  43301. </member>
  43302. <member name="M:Aspose.Cells.Style.Equals(System.Object)">
  43303. <summary>
  43304. Determines whether two Style instances are equal.
  43305. </summary>
  43306. <param name="obj">The Style object to compare with the current Style object. </param>
  43307. <returns>true if the specified Object is equal to the current Object; otherwise, false.
  43308. </returns>
  43309. </member>
  43310. <member name="M:Aspose.Cells.Style.GetHashCode">
  43311. <summary>
  43312. Serves as a hash function for a Style object.
  43313. </summary>
  43314. <returns>A hash code for the current Object.</returns>
  43315. <remarks>This method is only for internal use.</remarks>
  43316. </member>
  43317. <member name="M:Aspose.Cells.Style.SetBorder(Aspose.Cells.BorderType,Aspose.Cells.CellBorderType,System.Drawing.Color)">
  43318. <summary>
  43319. Sets the border of the style.
  43320. </summary>
  43321. <param name="borderEdge">
  43322. </param>
  43323. <param name="borderStyle">
  43324. </param>
  43325. <param name="borderColor">
  43326. </param>
  43327. <returns>
  43328. </returns>
  43329. </member>
  43330. <member name="M:Aspose.Cells.Style.SetCustom(System.String,System.Boolean)">
  43331. <summary>
  43332. Sets the Custom number format string of a cell.
  43333. </summary>
  43334. <param name="custom">Custom number format string, should be InvariantCulture pattern.</param>
  43335. <param name="builtinPreference">If given Custom number format string matches one of the built-in number formats
  43336. corresponding to current regional settings, whether set the number format as built-in instead of Custom.</param>
  43337. </member>
  43338. <member name="M:Aspose.Cells.Style.SetTwoColorGradient(System.Drawing.Color,System.Drawing.Color,Aspose.Cells.Drawing.GradientStyleType,System.Int32)">
  43339. <summary>
  43340. Sets the specified fill to a two-color gradient.
  43341. </summary>
  43342. <param name="color1">One gradient color.</param>
  43343. <param name="color2">Two gradient color.</param>
  43344. <param name="gradientStyleType">Gradient shading style.</param>
  43345. <param name="variant">The gradient variant. Can be a value from 1 through 4, corresponding to one of the four variants on the Gradient tab in the Fill Effects dialog box. If style is GradientStyle.FromCenter, the Variant argument can only be 1 or 2.</param>
  43346. </member>
  43347. <member name="M:Aspose.Cells.Style.GetTwoColorGradient(System.Drawing.Color@,System.Drawing.Color@,Aspose.Cells.Drawing.GradientStyleType@,System.Int32@)">
  43348. <summary>
  43349. Get the two-color gradient setting.
  43350. </summary>
  43351. <param name="color1">One gradient color.</param>
  43352. <param name="color2">Two gradient color.</param>
  43353. <param name="gradientStyleType">Gradient shading style.</param>
  43354. <param name="variant">The gradient variant.</param>
  43355. </member>
  43356. <member name="P:Aspose.Cells.Style.BackgroundThemeColor">
  43357. <summary>
  43358. Gets and sets the background theme color.
  43359. </summary>
  43360. <remarks>
  43361. If the background color is not a theme color, NULL will be returned.
  43362. </remarks>
  43363. </member>
  43364. <member name="P:Aspose.Cells.Style.ForegroundThemeColor">
  43365. <summary>
  43366. Gets and sets the foreground theme color.
  43367. </summary>
  43368. <remarks>
  43369. If the foreground color is not a theme color, NULL will be returned.
  43370. </remarks>
  43371. </member>
  43372. <member name="P:Aspose.Cells.Style.Name">
  43373. <summary>
  43374. Gets or sets the name of the style.
  43375. </summary>
  43376. </member>
  43377. <member name="P:Aspose.Cells.Style.Pattern">
  43378. <summary>
  43379. Gets or sets the cell background pattern type.
  43380. </summary>
  43381. </member>
  43382. <member name="P:Aspose.Cells.Style.Borders">
  43383. <summary>
  43384. Gets the <see cref="T:Aspose.Cells.BorderCollection" /> of the style.
  43385. </summary>
  43386. </member>
  43387. <member name="P:Aspose.Cells.Style.BackgroundColor">
  43388. <summary>
  43389. Gets or sets a style's background color.
  43390. </summary>
  43391. <remarks>If you want to set a cell's color, please use Style.ForegroundColor property.
  43392. Only if the cell style pattern is other than none or solid, this property will take effect.</remarks>
  43393. </member>
  43394. <member name="P:Aspose.Cells.Style.BackgroundArgbColor">
  43395. <summary>
  43396. Gets and sets the background color with a 32-bit ARGB value.
  43397. </summary>
  43398. </member>
  43399. <member name="P:Aspose.Cells.Style.ForegroundColor">
  43400. <summary>
  43401. Gets or sets a style's foreground color.
  43402. </summary>
  43403. <remarks>It means no color setting if Color.Empty is returned.</remarks>
  43404. </member>
  43405. <member name="P:Aspose.Cells.Style.ForegroundArgbColor">
  43406. <summary>
  43407. Gets and sets the foreground color with a 32-bit ARGB value.
  43408. </summary>
  43409. </member>
  43410. <member name="P:Aspose.Cells.Style.ParentStyle">
  43411. <summary>
  43412. Gets the parent style of this style.
  43413. </summary>
  43414. </member>
  43415. <member name="P:Aspose.Cells.Style.IndentLevel">
  43416. <summary>
  43417. Represents the indent level for the cell or range. Can only be an integer from 0 to 250.
  43418. </summary>
  43419. <remarks>
  43420. If text horizontal alignment type is set to value other than left or right, indent level will
  43421. be reset to zero.
  43422. </remarks>
  43423. </member>
  43424. <member name="P:Aspose.Cells.Style.Font">
  43425. <summary>
  43426. Gets a <see cref="P:Aspose.Cells.Style.Font" /> object.
  43427. </summary>
  43428. </member>
  43429. <member name="P:Aspose.Cells.Style.RotationAngle">
  43430. <summary>
  43431. Represents text rotation angle.
  43432. </summary>
  43433. <remarks>
  43434. <p>0: Not rotated.</p>
  43435. <p>255: Top to Bottom.</p>
  43436. <p>-90: Downward.</p>
  43437. <p>90: Upward.</p>
  43438. You can set 255 or value ranged from -90 to 90.</remarks>
  43439. </member>
  43440. <member name="P:Aspose.Cells.Style.VerticalAlignment">
  43441. <summary>
  43442. Gets or sets the vertical alignment type of the text in a cell.
  43443. </summary>
  43444. </member>
  43445. <member name="P:Aspose.Cells.Style.HorizontalAlignment">
  43446. <summary>
  43447. Gets or sets the horizontal alignment type of the text in a cell.
  43448. </summary>
  43449. </member>
  43450. <member name="P:Aspose.Cells.Style.IsTextWrapped">
  43451. <summary>
  43452. Gets or sets a value indicating whether the text within a cell is wrapped.
  43453. </summary>
  43454. </member>
  43455. <member name="P:Aspose.Cells.Style.Number">
  43456. <summary>
  43457. Gets or sets the display format of numbers and dates. The formatting patterns are different for different regions.
  43458. </summary>
  43459. <remarks>
  43460. For example, the formatting patterns represented by numbers for en_US region:
  43461. <table class="dtTABLE" cellspacing="0"><tr><td width="33%"><font color="gray"><b>Value</b></font></td><td width="33%"><font color="gray"><b>Type</b></font></td><td width="33%"><font color="gray"><b>Format String</b></font></td></tr><tr><td width="33%">0</td><td width="33%">General</td><td width="33%">General</td></tr><tr><td width="33%">1</td><td width="33%">Decimal</td><td width="33%">0</td></tr><tr><td width="33%">2</td><td width="33%">Decimal</td><td width="33%">0.00</td></tr><tr><td width="33%">3</td><td width="33%">Decimal</td><td width="33%">#,##0</td></tr><tr><td width="33%">4</td><td width="33%">Decimal</td><td width="33%">#,##0.00</td></tr><tr><td width="33%">5</td><td width="33%">Currency</td><td width="33%">$#,##0_);($#,##0)</td></tr><tr><td width="33%">6</td><td width="33%">Currency</td><td width="33%">$#,##0_);[Red]($#,##0)</td></tr><tr><td width="33%">7</td><td width="33%">Currency</td><td width="33%">$#,##0.00_);($#,##0.00)</td></tr><tr><td width="33%">8</td><td width="33%">Currency</td><td width="33%">$#,##0.00_);[Red]($#,##0.00)</td></tr><tr><td width="33%">9</td><td width="33%">Percentage</td><td width="33%">0%</td></tr><tr><td width="33%">10</td><td width="33%">Percentage</td><td width="33%">0.00%</td></tr><tr><td width="33%">11</td><td width="33%">Scientific</td><td width="33%">0.00E+00</td></tr><tr><td width="33%">12</td><td width="33%">Fraction</td><td width="33%"># ?/?</td></tr><tr><td width="33%">13</td><td width="33%">Fraction</td><td width="33%"># ??/??</td></tr><tr><td width="33%">14</td><td width="33%">Date</td><td width="33%">m/d/yyyy</td></tr><tr><td width="33%">15</td><td width="33%">Date</td><td width="33%">d-mmm-yy</td></tr><tr><td width="33%">16</td><td width="33%">Date</td><td width="33%">d-mmm</td></tr><tr><td width="33%">17</td><td width="33%">Date</td><td width="33%">mmm-yy</td></tr><tr><td width="33%">18</td><td width="33%">Time</td><td width="33%">h:mm AM/PM</td></tr><tr><td width="33%">19</td><td width="33%">Time</td><td width="33%">h:mm:ss AM/PM</td></tr><tr><td width="33%">20</td><td width="33%">Time</td><td width="33%">h:mm</td></tr><tr><td width="33%">21</td><td width="33%">Time</td><td width="33%">h:mm:ss</td></tr><tr><td width="33%">22</td><td width="33%">Time</td><td width="33%">m/d/yyyy h:mm</td></tr><tr><td width="33%">37</td><td width="33%">Accounting</td><td width="33%">#,##0_);(#,##0)</td></tr><tr><td width="33%">38</td><td width="33%">Accounting</td><td width="33%">#,##0_);[Red](#,##0)</td></tr><tr><td width="33%">39</td><td width="33%">Accounting</td><td width="33%">#,##0.00_);(#,##0.00)</td></tr><tr><td width="33%">40</td><td width="33%">Accounting</td><td width="33%">#,##0.00_);[Red](#,##0.00)</td></tr><tr><td width="33%">41</td><td width="33%">Accounting</td><td width="33%">_(* #,##0_);_(* (#,##0);_(* "-"_);_(@_)</td></tr><tr><td width="33%">42</td><td width="33%">Currency</td><td width="33%">_($* #,##0_);_($* (#,##0);_($* "-"_);_(@_)</td></tr><tr><td width="33%">43</td><td width="33%">Accounting</td><td width="33%">_(* #,##0.00_);_(* (#,##0.00);_(* "-"??_);_(@_)</td></tr><tr><td width="33%">44</td><td width="33%">Currency</td><td width="33%">_($* #,##0.00_);_($* (#,##0.00);_($* "-"??_);_(@_)</td></tr><tr><td width="33%">45</td><td width="33%">Time</td><td width="33%">mm:ss</td></tr><tr><td width="33%">46</td><td width="33%">Time</td><td width="33%">[h]:mm:ss</td></tr><tr><td width="33%">47</td><td width="33%">Time</td><td width="33%">mm:ss.0</td></tr><tr><td width="33%">48</td><td width="33%">Scientific</td><td width="33%">##0.0E+0</td></tr><tr><td width="33%">49</td><td width="33%">Text</td><td width="33%">@</td></tr></table></remarks>
  43462. </member>
  43463. <member name="P:Aspose.Cells.Style.IsLocked">
  43464. <summary>
  43465. Gets or sets a value indicating whether a cell can be modified or not.
  43466. </summary>
  43467. <remarks>Locking cells has no effect unless the worksheet is protected. </remarks>
  43468. </member>
  43469. <member name="P:Aspose.Cells.Style.Custom">
  43470. <summary>
  43471. Represents the custom number format string of this style object.
  43472. If the custom number format is not set(For example, the number format is builtin), "" will be returned.
  43473. </summary>
  43474. <remarks>
  43475. The returned custom string is culture-independent.
  43476. </remarks>
  43477. </member>
  43478. <member name="P:Aspose.Cells.Style.CultureCustom">
  43479. <summary>
  43480. Gets and sets the culture-dependent pattern string for number format.
  43481. If no number format has been set for this object, null will be returned.
  43482. If number format is builtin, the pattern string corresponding to the builtin number will be returned.
  43483. </summary>
  43484. <remarks>
  43485. For builtin number format, both the pattern content(such as, one builtin date format is "m/d/y" for some locales,
  43486. but for some other locales it becomes "d/m/y") and the format specifier(such as,
  43487. some locales is using character other than 'y' to represent the year part for date formatting)
  43488. are culture-dependent;
  43489. For user specified custom format, only format specifiers are changed according to the culture,
  43490. other parts of the formatting pattern will not be modified.
  43491. </remarks>
  43492. </member>
  43493. <member name="P:Aspose.Cells.Style.InvariantCustom">
  43494. <summary>
  43495. Gets the culture-independent pattern string for number format.
  43496. If no number format has been set for this object, null will be returned.
  43497. If number format is builtin, the pattern string corresponding to the builtin number will be returned.
  43498. </summary>
  43499. <remarks>
  43500. For builtin number formats, the returned pattern content is still culture-dependent,
  43501. such as, for some locales it returns "m/d/y" and for some other locales it returns "d/m/y".
  43502. The difference from <see cref="P:Aspose.Cells.Style.CultureCustom" /> is(that is also what culture-independent means):
  43503. the format specifiers and separators are kept as standard, such as '/' will always be used as datetime separator
  43504. and "y" will always be used as the "year" part no matter what other special character is used for the specific locale.
  43505. </remarks>
  43506. </member>
  43507. <member name="P:Aspose.Cells.Style.IsFormulaHidden">
  43508. <summary>
  43509. Represents if the formula will be hidden when the worksheet is protected.
  43510. </summary>
  43511. </member>
  43512. <member name="P:Aspose.Cells.Style.ShrinkToFit">
  43513. <summary>
  43514. Represents if text automatically shrinks to fit in the available column width.
  43515. </summary>
  43516. </member>
  43517. <member name="P:Aspose.Cells.Style.TextDirection">
  43518. <summary>
  43519. Represents text reading order.
  43520. </summary>
  43521. </member>
  43522. <member name="P:Aspose.Cells.Style.IsJustifyDistributed">
  43523. <summary>
  43524. Indicates if the cells justified or distributed alignment should be used on the last line of text.
  43525. </summary>
  43526. <remarks>
  43527. This is typical for East Asian alignments but not typical in other contexts.
  43528. </remarks>
  43529. </member>
  43530. <member name="P:Aspose.Cells.Style.QuotePrefix">
  43531. <summary>
  43532. Indicates whether the cell's value starts with single quote mark.
  43533. </summary>
  43534. </member>
  43535. <member name="P:Aspose.Cells.Style.IsGradient">
  43536. <summary>
  43537. Indicates whether the cell shading is a gradient pattern.
  43538. </summary>
  43539. </member>
  43540. <member name="P:Aspose.Cells.Style.IsPercent">
  43541. <summary>
  43542. Indicates whether the number format is a percent format.
  43543. </summary>
  43544. </member>
  43545. <member name="P:Aspose.Cells.Style.IsDateTime">
  43546. <summary>
  43547. Indicates whether the number format is a date format.
  43548. </summary>
  43549. </member>
  43550. <member name="T:Aspose.Cells.StyleFlag">
  43551. <summary>
  43552. Represents flags which indicates applied formatting properties.
  43553. </summary>
  43554. </member>
  43555. <member name="P:Aspose.Cells.StyleFlag.All">
  43556. <summary>
  43557. All properties will be applied.
  43558. </summary>
  43559. </member>
  43560. <member name="P:Aspose.Cells.StyleFlag.Borders">
  43561. <summary>
  43562. All borders settings will be applied.
  43563. </summary>
  43564. </member>
  43565. <member name="P:Aspose.Cells.StyleFlag.LeftBorder">
  43566. <summary>
  43567. Left border settings will be applied.
  43568. </summary>
  43569. </member>
  43570. <member name="P:Aspose.Cells.StyleFlag.RightBorder">
  43571. <summary>
  43572. Right border settings will be applied.
  43573. </summary>
  43574. </member>
  43575. <member name="P:Aspose.Cells.StyleFlag.TopBorder">
  43576. <summary>
  43577. Top border settings will be applied.
  43578. </summary>
  43579. </member>
  43580. <member name="P:Aspose.Cells.StyleFlag.BottomBorder">
  43581. <summary>
  43582. Bottom border settings will be applied.
  43583. </summary>
  43584. </member>
  43585. <member name="P:Aspose.Cells.StyleFlag.DiagonalDownBorder">
  43586. <summary>
  43587. Diagonal down border settings will be applied.
  43588. </summary>
  43589. </member>
  43590. <member name="P:Aspose.Cells.StyleFlag.DiagonalUpBorder">
  43591. <summary>
  43592. Diagonal up border settings will be applied.
  43593. </summary>
  43594. </member>
  43595. <member name="P:Aspose.Cells.StyleFlag.Font">
  43596. <summary>
  43597. Font settings will be applied.
  43598. </summary>
  43599. </member>
  43600. <member name="P:Aspose.Cells.StyleFlag.FontSize">
  43601. <summary>
  43602. Font size setting will be applied.
  43603. </summary>
  43604. </member>
  43605. <member name="P:Aspose.Cells.StyleFlag.FontName">
  43606. <summary>
  43607. Font name setting will be applied.
  43608. </summary>
  43609. </member>
  43610. <member name="P:Aspose.Cells.StyleFlag.FontColor">
  43611. <summary>
  43612. Font color setting will be applied.
  43613. </summary>
  43614. </member>
  43615. <member name="P:Aspose.Cells.StyleFlag.FontBold">
  43616. <summary>
  43617. Font bold setting will be applied.
  43618. </summary>
  43619. </member>
  43620. <member name="P:Aspose.Cells.StyleFlag.FontItalic">
  43621. <summary>
  43622. Font italic setting will be applied.
  43623. </summary>
  43624. </member>
  43625. <member name="P:Aspose.Cells.StyleFlag.FontUnderline">
  43626. <summary>
  43627. Font underline setting will be applied.
  43628. </summary>
  43629. </member>
  43630. <member name="P:Aspose.Cells.StyleFlag.FontStrike">
  43631. <summary>
  43632. Font strikeout setting will be applied.
  43633. </summary>
  43634. </member>
  43635. <member name="P:Aspose.Cells.StyleFlag.FontScript">
  43636. <summary>
  43637. Font script setting will be applied.
  43638. </summary>
  43639. </member>
  43640. <member name="P:Aspose.Cells.StyleFlag.NumberFormat">
  43641. <summary>
  43642. Number format setting will be applied.
  43643. </summary>
  43644. </member>
  43645. <member name="P:Aspose.Cells.StyleFlag.Alignments">
  43646. <summary>
  43647. Alignment setting will be applied.
  43648. </summary>
  43649. </member>
  43650. <member name="P:Aspose.Cells.StyleFlag.HorizontalAlignment">
  43651. <summary>
  43652. Horizontal alignment setting will be applied.
  43653. </summary>
  43654. </member>
  43655. <member name="P:Aspose.Cells.StyleFlag.VerticalAlignment">
  43656. <summary>
  43657. Vertical alignment setting will be applied.
  43658. </summary>
  43659. </member>
  43660. <member name="P:Aspose.Cells.StyleFlag.Indent">
  43661. <summary>
  43662. Indent level setting will be applied.
  43663. </summary>
  43664. </member>
  43665. <member name="P:Aspose.Cells.StyleFlag.Rotation">
  43666. <summary>
  43667. Rotation setting will be applied.
  43668. </summary>
  43669. </member>
  43670. <member name="P:Aspose.Cells.StyleFlag.WrapText">
  43671. <summary>
  43672. Wrap text setting will be applied.
  43673. </summary>
  43674. </member>
  43675. <member name="P:Aspose.Cells.StyleFlag.ShrinkToFit">
  43676. <summary>
  43677. Shrink to fit setting will be applied.
  43678. </summary>
  43679. </member>
  43680. <member name="P:Aspose.Cells.StyleFlag.TextDirection">
  43681. <summary>
  43682. Text direction setting will be applied.
  43683. </summary>
  43684. </member>
  43685. <member name="P:Aspose.Cells.StyleFlag.CellShading">
  43686. <summary>
  43687. Cell shading setting will be applied.
  43688. </summary>
  43689. </member>
  43690. <member name="P:Aspose.Cells.StyleFlag.Locked">
  43691. <summary>
  43692. Locked setting will be applied.
  43693. </summary>
  43694. </member>
  43695. <member name="P:Aspose.Cells.StyleFlag.HideFormula">
  43696. <summary>
  43697. Hide formula setting will be applied.
  43698. </summary>
  43699. </member>
  43700. <member name="P:Aspose.Cells.StyleFlag.QuotePrefix">
  43701. <summary>
  43702. Hide formula setting will be applied.
  43703. </summary>
  43704. </member>
  43705. <member name="T:Aspose.Cells.StyleModifyFlag">
  43706. <summary>
  43707. The style modified flags.
  43708. </summary>
  43709. </member>
  43710. <member name="F:Aspose.Cells.StyleModifyFlag.All">
  43711. <summary>
  43712. </summary>
  43713. </member>
  43714. <member name="F:Aspose.Cells.StyleModifyFlag.Borders">
  43715. <summary>
  43716. </summary>
  43717. </member>
  43718. <member name="F:Aspose.Cells.StyleModifyFlag.LeftBorder">
  43719. <summary>
  43720. </summary>
  43721. </member>
  43722. <member name="F:Aspose.Cells.StyleModifyFlag.RightBorder">
  43723. <summary>
  43724. </summary>
  43725. </member>
  43726. <member name="F:Aspose.Cells.StyleModifyFlag.TopBorder">
  43727. <summary>
  43728. </summary>
  43729. </member>
  43730. <member name="F:Aspose.Cells.StyleModifyFlag.BottomBorder">
  43731. <summary>
  43732. </summary>
  43733. </member>
  43734. <member name="F:Aspose.Cells.StyleModifyFlag.HorizontalBorder">
  43735. <summary>
  43736. Only for dynamic style,such as conditional formatting.
  43737. </summary>
  43738. </member>
  43739. <member name="F:Aspose.Cells.StyleModifyFlag.VerticalBorder">
  43740. <summary>
  43741. Only for dynamic style,such as conditional formatting.
  43742. </summary>
  43743. </member>
  43744. <member name="F:Aspose.Cells.StyleModifyFlag.Diagonal">
  43745. <summary>
  43746. </summary>
  43747. </member>
  43748. <member name="F:Aspose.Cells.StyleModifyFlag.DiagonalDownBorder">
  43749. <summary>
  43750. </summary>
  43751. </member>
  43752. <member name="F:Aspose.Cells.StyleModifyFlag.DiagonalUpBorder">
  43753. <summary>
  43754. </summary>
  43755. </member>
  43756. <member name="F:Aspose.Cells.StyleModifyFlag.Font">
  43757. <summary>
  43758. </summary>
  43759. </member>
  43760. <member name="F:Aspose.Cells.StyleModifyFlag.FontSize">
  43761. <summary>
  43762. </summary>
  43763. </member>
  43764. <member name="F:Aspose.Cells.StyleModifyFlag.FontName">
  43765. <summary>
  43766. </summary>
  43767. </member>
  43768. <member name="F:Aspose.Cells.StyleModifyFlag.FontFamily">
  43769. <summary>
  43770. </summary>
  43771. </member>
  43772. <member name="F:Aspose.Cells.StyleModifyFlag.FontCharset">
  43773. <summary>
  43774. </summary>
  43775. </member>
  43776. <member name="F:Aspose.Cells.StyleModifyFlag.FontColor">
  43777. <summary>
  43778. </summary>
  43779. </member>
  43780. <member name="F:Aspose.Cells.StyleModifyFlag.FontWeight">
  43781. <summary>
  43782. </summary>
  43783. </member>
  43784. <member name="F:Aspose.Cells.StyleModifyFlag.FontItalic">
  43785. <summary>
  43786. </summary>
  43787. </member>
  43788. <member name="F:Aspose.Cells.StyleModifyFlag.FontUnderline">
  43789. <summary>
  43790. </summary>
  43791. </member>
  43792. <member name="F:Aspose.Cells.StyleModifyFlag.FontStrike">
  43793. <summary>
  43794. </summary>
  43795. </member>
  43796. <member name="F:Aspose.Cells.StyleModifyFlag.FontSubscript">
  43797. <summary>
  43798. </summary>
  43799. <remarks>NOTE: This member is now obsolete. Instead, please use FontScript.
  43800. This property will be removed 12 months later since August 2012.
  43801. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  43802. </member>
  43803. <member name="F:Aspose.Cells.StyleModifyFlag.FontSuperscript">
  43804. <summary>
  43805. </summary>
  43806. <summary>
  43807. </summary>
  43808. <remarks>NOTE: This member is now obsolete. Instead, please use FontScript.
  43809. This property will be removed 12 months later since August 2012.
  43810. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  43811. </member>
  43812. <member name="F:Aspose.Cells.StyleModifyFlag.FontScript">
  43813. <summary>
  43814. </summary>
  43815. </member>
  43816. <member name="F:Aspose.Cells.StyleModifyFlag.NumberFormat">
  43817. <summary>
  43818. </summary>
  43819. </member>
  43820. <member name="F:Aspose.Cells.StyleModifyFlag.HorizontalAlignment">
  43821. <summary>
  43822. </summary>
  43823. </member>
  43824. <member name="F:Aspose.Cells.StyleModifyFlag.VerticalAlignment">
  43825. <summary>
  43826. </summary>
  43827. </member>
  43828. <member name="F:Aspose.Cells.StyleModifyFlag.Indent">
  43829. <summary>
  43830. </summary>
  43831. </member>
  43832. <member name="F:Aspose.Cells.StyleModifyFlag.Rotation">
  43833. <summary>
  43834. </summary>
  43835. </member>
  43836. <member name="F:Aspose.Cells.StyleModifyFlag.WrapText">
  43837. <summary>
  43838. </summary>
  43839. </member>
  43840. <member name="F:Aspose.Cells.StyleModifyFlag.ShrinkToFit">
  43841. <summary>
  43842. </summary>
  43843. </member>
  43844. <member name="F:Aspose.Cells.StyleModifyFlag.TextDirection">
  43845. <summary>
  43846. </summary>
  43847. </member>
  43848. <member name="F:Aspose.Cells.StyleModifyFlag.CellShading">
  43849. <summary>
  43850. </summary>
  43851. </member>
  43852. <member name="F:Aspose.Cells.StyleModifyFlag.Pattern">
  43853. <summary>
  43854. </summary>
  43855. </member>
  43856. <member name="F:Aspose.Cells.StyleModifyFlag.ForegroundColor">
  43857. <summary>
  43858. </summary>
  43859. </member>
  43860. <member name="F:Aspose.Cells.StyleModifyFlag.BackgroundColor">
  43861. <summary>
  43862. </summary>
  43863. </member>
  43864. <member name="F:Aspose.Cells.StyleModifyFlag.Locked">
  43865. <summary>
  43866. </summary>
  43867. </member>
  43868. <member name="F:Aspose.Cells.StyleModifyFlag.HideFormula">
  43869. <summary>
  43870. </summary>
  43871. </member>
  43872. <member name="F:Aspose.Cells.StyleModifyFlag.AlignmentSettings">
  43873. <summary>
  43874. Includes horizontal/vertical Alignment, rotation,wrap Text,indent,shrinkToFit,Text Direction
  43875. </summary>
  43876. </member>
  43877. <member name="F:Aspose.Cells.StyleModifyFlag.ProtectionSettings">
  43878. <summary>
  43879. Includes Locked, HideFormula
  43880. </summary>
  43881. </member>
  43882. <member name="F:Aspose.Cells.StyleModifyFlag.FontScheme">
  43883. <summary>
  43884. unused.
  43885. </summary>
  43886. </member>
  43887. <member name="F:Aspose.Cells.StyleModifyFlag.FontDirty">
  43888. <summary>
  43889. unused.
  43890. </summary>
  43891. </member>
  43892. <member name="F:Aspose.Cells.StyleModifyFlag.FontSpellingError">
  43893. <summary>
  43894. unused.
  43895. </summary>
  43896. </member>
  43897. <member name="F:Aspose.Cells.StyleModifyFlag.FontUFillTx">
  43898. <summary>
  43899. unused.
  43900. </summary>
  43901. </member>
  43902. <member name="F:Aspose.Cells.StyleModifyFlag.FontSpacing">
  43903. <summary>
  43904. unused.
  43905. </summary>
  43906. </member>
  43907. <member name="F:Aspose.Cells.StyleModifyFlag.FontKerning">
  43908. <summary>
  43909. unused.
  43910. </summary>
  43911. </member>
  43912. <member name="F:Aspose.Cells.StyleModifyFlag.FontEqualize">
  43913. <summary>
  43914. unused.
  43915. </summary>
  43916. </member>
  43917. <member name="F:Aspose.Cells.StyleModifyFlag.FontCap">
  43918. <summary>
  43919. unused.
  43920. </summary>
  43921. </member>
  43922. <member name="F:Aspose.Cells.StyleModifyFlag.RelativeIndent">
  43923. <summary>
  43924. </summary>
  43925. </member>
  43926. <member name="F:Aspose.Cells.StyleModifyFlag.Spacing">
  43927. <summary>
  43928. Specifies the spacing between characters within a text run.
  43929. </summary>
  43930. </member>
  43931. <member name="T:Aspose.Cells.Tables.TableDataSourceType">
  43932. <summary>
  43933. Represents the table's data source type.
  43934. </summary>
  43935. </member>
  43936. <member name="F:Aspose.Cells.Tables.TableDataSourceType.Worksheet">
  43937. <summary>
  43938. Excel Worksheet Table
  43939. </summary>
  43940. </member>
  43941. <member name="F:Aspose.Cells.Tables.TableDataSourceType.SharePoint">
  43942. <summary>
  43943. Read-write SharePoint linked List
  43944. </summary>
  43945. </member>
  43946. <member name="F:Aspose.Cells.Tables.TableDataSourceType.XML">
  43947. <summary>
  43948. XML mapper Table
  43949. </summary>
  43950. </member>
  43951. <member name="F:Aspose.Cells.Tables.TableDataSourceType.QueryTable">
  43952. <summary>
  43953. Query Table
  43954. </summary>
  43955. </member>
  43956. <member name="T:Aspose.Cells.Tables.TableStyleElement">
  43957. <summary>
  43958. Represents the element of the table style.
  43959. </summary>
  43960. </member>
  43961. <member name="M:Aspose.Cells.Tables.TableStyleElement.GetElementStyle">
  43962. <summary>
  43963. Gets the element style.
  43964. </summary>
  43965. <returns>Returns the <see cref="T:Aspose.Cells.Style" /> object.</returns>
  43966. </member>
  43967. <member name="M:Aspose.Cells.Tables.TableStyleElement.SetElementStyle(Aspose.Cells.Style)">
  43968. <summary>
  43969. Sets the element style.
  43970. </summary>
  43971. <param name="style">The element style.</param>
  43972. </member>
  43973. <member name="P:Aspose.Cells.Tables.TableStyleElement.Size">
  43974. <summary>
  43975. Number of rows or columns in a single band of striping.
  43976. Applies only when type is firstRowStripe, secondRowStripe, firstColumnStripe, or secondColumnStripe.
  43977. </summary>
  43978. </member>
  43979. <member name="P:Aspose.Cells.Tables.TableStyleElement.Type">
  43980. <summary>
  43981. Gets the element type.
  43982. </summary>
  43983. </member>
  43984. <member name="T:Aspose.Cells.Tables.TableStyleElementCollection">
  43985. <summary>
  43986. Represents all elements of the table style.
  43987. </summary>
  43988. </member>
  43989. <member name="M:Aspose.Cells.Tables.TableStyleElementCollection.Add(Aspose.Cells.Tables.TableStyleElementType)">
  43990. <summary>
  43991. Adds an element.
  43992. </summary>
  43993. <param name="type">The type of the element</param>
  43994. <returns>Returns the index of the element in the list.</returns>
  43995. </member>
  43996. <member name="P:Aspose.Cells.Tables.TableStyleElementCollection.Item(System.Int32)">
  43997. <summary>
  43998. Gets an element of the table style by the index.
  43999. </summary>
  44000. <param name="index">The index.</param>
  44001. <returns>Returns <see cref="T:Aspose.Cells.Tables.TableStyleElement" /> object</returns>
  44002. </member>
  44003. <member name="P:Aspose.Cells.Tables.TableStyleElementCollection.Item(Aspose.Cells.Tables.TableStyleElementType)">
  44004. <summary>
  44005. Gets the element of the table style by the <see cref="T:Aspose.Cells.Tables.TableStyleElementType" /></summary>
  44006. <param name="type">The element type.</param>
  44007. <returns>Returns <see cref="T:Aspose.Cells.Tables.TableStyleElement" /> object</returns>
  44008. </member>
  44009. <member name="T:Aspose.Cells.Tables.TableStyle">
  44010. <summary>
  44011. Represents the table style.
  44012. </summary>
  44013. <example>
  44014. <code>
  44015. [C#]
  44016. Workbook workbook = new Workbook();
  44017. Style firstColumnStyle = workbook.CreateStyle();
  44018. firstColumnStyle.Pattern = BackgroundType.Solid;
  44019. firstColumnStyle.BackgroundColor = System.Drawing.Color.Red;
  44020. Style lastColumnStyle = workbook.CreateStyle();
  44021. lastColumnStyle.Font.IsBold = true;
  44022. lastColumnStyle.Pattern = BackgroundType.Solid;
  44023. lastColumnStyle.BackgroundColor = System.Drawing.Color.Red;
  44024. string tableStyleName = "Custom1";
  44025. TableStyleCollection tableStyles = workbook.Worksheets.TableStyles;
  44026. int index1 = tableStyles.AddTableStyle(tableStyleName);
  44027. TableStyle tableStyle = tableStyles[index1];
  44028. TableStyleElementCollection elements = tableStyle.TableStyleElements;
  44029. index1 = elements.Add(TableStyleElementType.FirstColumn);
  44030. TableStyleElement element = elements[index1];
  44031. element.SetElementStyle(firstColumnStyle);
  44032. index1 = elements.Add(TableStyleElementType.LastColumn);
  44033. element = elements[index1];
  44034. element.SetElementStyle(lastColumnStyle);
  44035. Cells cells = workbook.Worksheets[0].Cells;
  44036. for (int i = 0; i &lt;5; i++)
  44037. {
  44038. cells[0, i].PutValue(CellsHelper.ColumnIndexToName(i));
  44039. }
  44040. for (int row = 1; row &lt;10; row++)
  44041. {
  44042. for (int column = 0; column &lt;5; column++)
  44043. {
  44044. cells[row, column].PutValue(row * column);
  44045. }
  44046. }
  44047. ListObjectCollection tables = workbook.Worksheets[0].ListObjects;
  44048. int index = tables.Add(0, 0, 9, 4, true);
  44049. ListObject table = tables[0];
  44050. table.ShowTableStyleFirstColumn = true;
  44051. table.ShowTableStyleLastColumn = true;
  44052. table.TableStyleName = tableStyleName;
  44053. workbook.Save(@"C:\Book1.xlsx");
  44054. [Visual Basic]
  44055. Dim workbook As Workbook = New Workbook()
  44056. Dim firstColumnStyle As Style = workbook.CreateStyle()
  44057. firstColumnStyle.Pattern = BackgroundType.Solid
  44058. firstColumnStyle.BackgroundColor = System.Drawing.Color.Red
  44059. Dim lastColumnStyle As Style = workbook.CreateStyle()
  44060. lastColumnStyle.Font.IsBold = True
  44061. lastColumnStyle.Pattern = BackgroundType.Solid
  44062. lastColumnStyle.BackgroundColor = System.Drawing.Color.Red
  44063. Dim tableStyleName As String = "Custom1"
  44064. Dim tableStyles As TableStyleCollection = workbook.Worksheets.TableStyles
  44065. Dim index1 As Int32 = tableStyles.AddTableStyle(tableStyleName)
  44066. Dim tableStyle As TableStyle = tableStyles(index1)
  44067. Dim elements As TableStyleElementCollection = tableStyle.TableStyleElements
  44068. index1 = elements.Add(TableStyleElementType.FirstColumn)
  44069. Dim element As TableStyleElement = elements(index1)
  44070. element.SetElementStyle(firstColumnStyle)
  44071. index1 = elements.Add(TableStyleElementType.LastColumn)
  44072. element = elements(index1)
  44073. element.SetElementStyle(lastColumnStyle)
  44074. Dim cells As Cells = workbook.Worksheets(0).Cells
  44075. For i As Int32 = 0 To 4
  44076. cells(0, i).PutValue(CellsHelper.ColumnIndexToName(i))
  44077. Next
  44078. For row As Int32 = 1 To 9
  44079. For column As Int32 = 0 To 4
  44080. cells(row, column).PutValue(row * column)
  44081. Next
  44082. Next
  44083. Dim tables As ListObjectCollection = workbook.Worksheets(0).ListObjects
  44084. Dim index As Int32 = tables.Add(0, 0, 9, 4, True)
  44085. Dim table As ListObject = tables(0)
  44086. table.ShowTableStyleFirstColumn = True
  44087. table.ShowTableStyleLastColumn = True
  44088. table.TableStyleName = tableStyleName
  44089. workbook.Save("C:\Book1.xlsx")
  44090. </code>
  44091. </example>
  44092. </member>
  44093. <member name="P:Aspose.Cells.Tables.TableStyle.Name">
  44094. <summary>
  44095. Gets the name of table style.
  44096. </summary>
  44097. </member>
  44098. <member name="P:Aspose.Cells.Tables.TableStyle.TableStyleElements">
  44099. <summary>
  44100. Gets all elements of the table style.
  44101. </summary>
  44102. </member>
  44103. <member name="T:Aspose.Cells.Tables.TableStyleElementType">
  44104. <summary>
  44105. Represents the Table or PivotTable style element type.
  44106. </summary>
  44107. </member>
  44108. <member name="F:Aspose.Cells.Tables.TableStyleElementType.BlankRow">
  44109. <summary>
  44110. Table style element that applies to PivotTable's blank rows.
  44111. </summary>
  44112. </member>
  44113. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstColumn">
  44114. <summary>
  44115. Table style element that applies to table's first column.
  44116. </summary>
  44117. </member>
  44118. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstColumnStripe">
  44119. <summary>
  44120. Table style element that applies to table's first column stripes.
  44121. </summary>
  44122. </member>
  44123. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstColumnSubheading">
  44124. <summary>
  44125. Table style element that applies to PivotTable's first column subheading.
  44126. </summary>
  44127. </member>
  44128. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstHeaderCell">
  44129. <summary>
  44130. Table style element that applies to table's first header row cell.
  44131. </summary>
  44132. </member>
  44133. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstRowStripe">
  44134. <summary>
  44135. Table style element that applies to table's first row stripes.
  44136. </summary>
  44137. </member>
  44138. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstRowSubheading">
  44139. <summary>
  44140. Table style element that applies to PivotTable's first row subheading.
  44141. </summary>
  44142. </member>
  44143. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstSubtotalColumn">
  44144. <summary>
  44145. Table style element that applies to PivotTable's first subtotal column.
  44146. </summary>
  44147. </member>
  44148. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstSubtotalRow">
  44149. <summary>
  44150. Table style element that applies to pivot table's first subtotal row.
  44151. </summary>
  44152. </member>
  44153. <member name="F:Aspose.Cells.Tables.TableStyleElementType.GrandTotalColumn">
  44154. <summary>
  44155. Table style element that applies to pivot table's grand total column.
  44156. </summary>
  44157. </member>
  44158. <member name="F:Aspose.Cells.Tables.TableStyleElementType.GrandTotalRow">
  44159. <summary>
  44160. Table style element that applies to pivot table's grand total row.
  44161. </summary>
  44162. </member>
  44163. <member name="F:Aspose.Cells.Tables.TableStyleElementType.FirstTotalCell">
  44164. <summary>
  44165. Table style element that applies to table's first total row cell.
  44166. </summary>
  44167. </member>
  44168. <member name="F:Aspose.Cells.Tables.TableStyleElementType.HeaderRow">
  44169. <summary>
  44170. Table style element that applies to table's header row.
  44171. </summary>
  44172. </member>
  44173. <member name="F:Aspose.Cells.Tables.TableStyleElementType.LastColumn">
  44174. <summary>
  44175. Table style element that applies to table's last column.
  44176. </summary>
  44177. </member>
  44178. <member name="F:Aspose.Cells.Tables.TableStyleElementType.LastHeaderCell">
  44179. <summary>
  44180. Table style element that applies to table's last header row cell.
  44181. </summary>
  44182. </member>
  44183. <member name="F:Aspose.Cells.Tables.TableStyleElementType.LastTotalCell">
  44184. <summary>
  44185. Table style element that applies to table's last total row cell.
  44186. </summary>
  44187. </member>
  44188. <member name="F:Aspose.Cells.Tables.TableStyleElementType.PageFieldLabels">
  44189. <summary>
  44190. Table style element that applies to pivot table's page field labels.
  44191. </summary>
  44192. </member>
  44193. <member name="F:Aspose.Cells.Tables.TableStyleElementType.PageFieldValues">
  44194. <summary>
  44195. Table style element that applies to pivot table's page field values.
  44196. </summary>
  44197. </member>
  44198. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondColumnStripe">
  44199. <summary>
  44200. Table style element that applies to table's second column stripes.
  44201. </summary>
  44202. </member>
  44203. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondColumnSubheading">
  44204. <summary>
  44205. Table style element that applies to pivot table's second column subheading.
  44206. </summary>
  44207. </member>
  44208. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondRowStripe">
  44209. <summary>
  44210. Table style element that applies to table's second row stripes.
  44211. </summary>
  44212. </member>
  44213. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondRowSubheading">
  44214. <summary>
  44215. Table style element that applies to pivot table's second row subheading.
  44216. </summary>
  44217. </member>
  44218. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondSubtotalColumn">
  44219. <summary>
  44220. Table style element that applies to PivotTable's second subtotal column.
  44221. </summary>
  44222. </member>
  44223. <member name="F:Aspose.Cells.Tables.TableStyleElementType.SecondSubtotalRow">
  44224. <summary>
  44225. Table style element that applies to PivotTable's second subtotal row.
  44226. </summary>
  44227. </member>
  44228. <member name="F:Aspose.Cells.Tables.TableStyleElementType.ThirdColumnSubheading">
  44229. <summary>
  44230. Table style element that applies to PivotTable's third column subheading.
  44231. </summary>
  44232. </member>
  44233. <member name="F:Aspose.Cells.Tables.TableStyleElementType.ThirdRowSubheading">
  44234. <summary>
  44235. Table style element that applies to PivotTable's third row subheading.
  44236. </summary>
  44237. </member>
  44238. <member name="F:Aspose.Cells.Tables.TableStyleElementType.ThirdSubtotalColumn">
  44239. <summary>
  44240. Table style element that applies to pivot table's third subtotal column.
  44241. </summary>
  44242. </member>
  44243. <member name="F:Aspose.Cells.Tables.TableStyleElementType.ThirdSubtotalRow">
  44244. <summary>
  44245. Table style element that applies to PivotTable's third subtotal row.
  44246. </summary>
  44247. </member>
  44248. <member name="F:Aspose.Cells.Tables.TableStyleElementType.TotalRow">
  44249. <summary>
  44250. Table style element that applies to table's total row.
  44251. </summary>
  44252. </member>
  44253. <member name="F:Aspose.Cells.Tables.TableStyleElementType.WholeTable">
  44254. <summary>
  44255. Table style element that applies to table's entire content.
  44256. </summary>
  44257. </member>
  44258. <member name="T:Aspose.Cells.Tables.TableStyleCollection">
  44259. <summary>
  44260. Represents all custom table styles.
  44261. </summary>
  44262. </member>
  44263. <member name="M:Aspose.Cells.Tables.TableStyleCollection.AddTableStyle(System.String)">
  44264. <summary>
  44265. Adds a custom table style.
  44266. </summary>
  44267. <param name="name">The table style name.</param>
  44268. <returns>The index of the table style.</returns>
  44269. </member>
  44270. <member name="M:Aspose.Cells.Tables.TableStyleCollection.AddPivotTableStyle(System.String)">
  44271. <summary>
  44272. Adds a custom pivot table style.
  44273. </summary>
  44274. <param name="name">The pivot table style name.</param>
  44275. <returns>The index of the pivot table style.</returns>
  44276. </member>
  44277. <member name="M:Aspose.Cells.Tables.TableStyleCollection.GetBuiltinTableStyle(Aspose.Cells.Tables.TableStyleType)">
  44278. <summary>
  44279. Gets the builtin table style
  44280. </summary>
  44281. <param name="type">The builtin table style type.</param>
  44282. <returns>
  44283. </returns>
  44284. </member>
  44285. <member name="P:Aspose.Cells.Tables.TableStyleCollection.Item(System.Int32)">
  44286. <summary>
  44287. Gets the table style by the index.
  44288. </summary>
  44289. <param name="index">The position of the table style in the list.</param>
  44290. <returns>The table style object.</returns>
  44291. </member>
  44292. <member name="P:Aspose.Cells.Tables.TableStyleCollection.Item(System.String)">
  44293. <summary>
  44294. Gets the table style by the name.
  44295. </summary>
  44296. <param name="name">The table style name.</param>
  44297. <returns>The table style object.</returns>
  44298. </member>
  44299. <member name="T:Aspose.Cells.Tables.TableStyleType">
  44300. <summary>
  44301. Represents the built-in table style type.
  44302. </summary>
  44303. </member>
  44304. <member name="F:Aspose.Cells.Tables.TableStyleType.None">
  44305. <summary>
  44306. </summary>
  44307. </member>
  44308. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight1">
  44309. <summary>
  44310. </summary>
  44311. </member>
  44312. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight2">
  44313. <summary>
  44314. </summary>
  44315. </member>
  44316. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight3">
  44317. <summary>
  44318. </summary>
  44319. </member>
  44320. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight4">
  44321. <summary>
  44322. </summary>
  44323. </member>
  44324. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight5">
  44325. <summary>
  44326. </summary>
  44327. </member>
  44328. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight6">
  44329. <summary>
  44330. </summary>
  44331. </member>
  44332. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight7">
  44333. <summary>
  44334. </summary>
  44335. </member>
  44336. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight8">
  44337. <summary>
  44338. </summary>
  44339. </member>
  44340. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight9">
  44341. <summary>
  44342. </summary>
  44343. </member>
  44344. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight10">
  44345. <summary>
  44346. </summary>
  44347. </member>
  44348. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight11">
  44349. <summary>
  44350. </summary>
  44351. </member>
  44352. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight12">
  44353. <summary>
  44354. </summary>
  44355. </member>
  44356. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight13">
  44357. <summary>
  44358. </summary>
  44359. </member>
  44360. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight14">
  44361. <summary>
  44362. </summary>
  44363. </member>
  44364. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight15">
  44365. <summary>
  44366. </summary>
  44367. </member>
  44368. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight16">
  44369. <summary>
  44370. </summary>
  44371. </member>
  44372. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight17">
  44373. <summary>
  44374. </summary>
  44375. </member>
  44376. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight18">
  44377. <summary>
  44378. </summary>
  44379. </member>
  44380. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight19">
  44381. <summary>
  44382. </summary>
  44383. </member>
  44384. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight20">
  44385. <summary>
  44386. </summary>
  44387. </member>
  44388. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleLight21">
  44389. <summary>
  44390. </summary>
  44391. </member>
  44392. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium1">
  44393. <summary>
  44394. </summary>
  44395. </member>
  44396. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium2">
  44397. <summary>
  44398. </summary>
  44399. </member>
  44400. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium3">
  44401. <summary>
  44402. </summary>
  44403. </member>
  44404. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium4">
  44405. <summary>
  44406. </summary>
  44407. </member>
  44408. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium5">
  44409. <summary>
  44410. </summary>
  44411. </member>
  44412. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium6">
  44413. <summary>
  44414. </summary>
  44415. </member>
  44416. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium7">
  44417. <summary>
  44418. </summary>
  44419. </member>
  44420. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium8">
  44421. <summary>
  44422. </summary>
  44423. </member>
  44424. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium9">
  44425. <summary>
  44426. </summary>
  44427. </member>
  44428. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium10">
  44429. <summary>
  44430. </summary>
  44431. </member>
  44432. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium11">
  44433. <summary>
  44434. </summary>
  44435. </member>
  44436. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium12">
  44437. <summary>
  44438. </summary>
  44439. </member>
  44440. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium13">
  44441. <summary>
  44442. </summary>
  44443. </member>
  44444. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium14">
  44445. <summary>
  44446. </summary>
  44447. </member>
  44448. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium15">
  44449. <summary>
  44450. </summary>
  44451. </member>
  44452. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium16">
  44453. <summary>
  44454. </summary>
  44455. </member>
  44456. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium17">
  44457. <summary>
  44458. </summary>
  44459. </member>
  44460. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium18">
  44461. <summary>
  44462. </summary>
  44463. </member>
  44464. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium19">
  44465. <summary>
  44466. </summary>
  44467. </member>
  44468. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium20">
  44469. <summary>
  44470. </summary>
  44471. </member>
  44472. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium21">
  44473. <summary>
  44474. </summary>
  44475. </member>
  44476. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium22">
  44477. <summary>
  44478. </summary>
  44479. </member>
  44480. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium23">
  44481. <summary>
  44482. </summary>
  44483. </member>
  44484. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium24">
  44485. <summary>
  44486. </summary>
  44487. </member>
  44488. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium25">
  44489. <summary>
  44490. </summary>
  44491. </member>
  44492. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium26">
  44493. <summary>
  44494. </summary>
  44495. </member>
  44496. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium27">
  44497. <summary>
  44498. </summary>
  44499. </member>
  44500. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleMedium28">
  44501. <summary>
  44502. </summary>
  44503. </member>
  44504. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark1">
  44505. <summary>
  44506. </summary>
  44507. </member>
  44508. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark2">
  44509. <summary>
  44510. </summary>
  44511. </member>
  44512. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark3">
  44513. <summary>
  44514. </summary>
  44515. </member>
  44516. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark4">
  44517. <summary>
  44518. </summary>
  44519. </member>
  44520. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark5">
  44521. <summary>
  44522. </summary>
  44523. </member>
  44524. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark6">
  44525. <summary>
  44526. </summary>
  44527. </member>
  44528. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark7">
  44529. <summary>
  44530. </summary>
  44531. </member>
  44532. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark8">
  44533. <summary>
  44534. </summary>
  44535. </member>
  44536. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark9">
  44537. <summary>
  44538. </summary>
  44539. </member>
  44540. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark10">
  44541. <summary>
  44542. </summary>
  44543. </member>
  44544. <member name="F:Aspose.Cells.Tables.TableStyleType.TableStyleDark11">
  44545. <summary>
  44546. </summary>
  44547. </member>
  44548. <member name="F:Aspose.Cells.Tables.TableStyleType.Custom">
  44549. <summary>
  44550. </summary>
  44551. </member>
  44552. <member name="T:Aspose.Cells.TextAlignmentType">
  44553. <summary>
  44554. Enumerates text alignment types.
  44555. </summary>
  44556. </member>
  44557. <member name="F:Aspose.Cells.TextAlignmentType.Bottom">
  44558. <summary>
  44559. Represents bottom text alignment.
  44560. </summary>
  44561. </member>
  44562. <member name="F:Aspose.Cells.TextAlignmentType.Center">
  44563. <summary>
  44564. Represents center text alignment.
  44565. </summary>
  44566. </member>
  44567. <member name="F:Aspose.Cells.TextAlignmentType.CenterAcross">
  44568. <summary>
  44569. Represents center across text alignment.
  44570. </summary>
  44571. </member>
  44572. <member name="F:Aspose.Cells.TextAlignmentType.Distributed">
  44573. <summary>
  44574. Represents distributed text alignment.
  44575. </summary>
  44576. </member>
  44577. <member name="F:Aspose.Cells.TextAlignmentType.Fill">
  44578. <summary>
  44579. Represents fill text alignment.
  44580. </summary>
  44581. </member>
  44582. <member name="F:Aspose.Cells.TextAlignmentType.General">
  44583. <summary>
  44584. Represents general text alignment.
  44585. </summary>
  44586. </member>
  44587. <member name="F:Aspose.Cells.TextAlignmentType.Justify">
  44588. <summary>
  44589. Represents justify text alignment.
  44590. </summary>
  44591. </member>
  44592. <member name="F:Aspose.Cells.TextAlignmentType.Left">
  44593. <summary>
  44594. Represents left text alignment.
  44595. </summary>
  44596. </member>
  44597. <member name="F:Aspose.Cells.TextAlignmentType.Right">
  44598. <summary>
  44599. Represents right text alignment.
  44600. </summary>
  44601. </member>
  44602. <member name="F:Aspose.Cells.TextAlignmentType.Top">
  44603. <summary>
  44604. Represents top text alignment.
  44605. </summary>
  44606. </member>
  44607. <member name="F:Aspose.Cells.TextAlignmentType.JustifiedLow">
  44608. <summary>
  44609. Aligns the text with an adjusted kashida length for Arabic text.
  44610. </summary>
  44611. </member>
  44612. <member name="F:Aspose.Cells.TextAlignmentType.ThaiDistributed">
  44613. <summary>
  44614. Distributes Thai text specially, because each character is treated as a word.
  44615. </summary>
  44616. </member>
  44617. <member name="T:Aspose.Cells.Drawing.TextBox">
  44618. <summary>
  44619. Encapsulates the object that represents a textbox in a spreadsheet.
  44620. </summary>
  44621. <example>
  44622. <code>
  44623. [C#]
  44624. //Instantiate a new Workbook.
  44625. Workbook workbook = new Workbook();
  44626. //Get the first worksheet in the book.
  44627. Worksheet worksheet = workbook.Worksheets[0];
  44628. //Add a new textbox to the collection.
  44629. int textboxIndex = worksheet.TextBoxes.Add(2, 1, 160, 200);
  44630. //Get the textbox object.
  44631. Aspose.Cells.TextBox textbox0 = worksheet.TextBoxes[textboxIndex];
  44632. //Fill the text.
  44633. textbox0.Text = "ASPOSE______The .NET and JAVA Component Publisher!";
  44634. //Get the textbox text frame.
  44635. MsoTextFrame textframe0 = textbox0.TextFrame;
  44636. //Set the textbox to adjust it according to its contents.
  44637. textframe0.AutoSize = true;
  44638. //Set the placement.
  44639. textbox0.Placement = PlacementType.FreeFloating;
  44640. //Set the font color.
  44641. textbox0.Font.Color = Color.Blue;
  44642. //Set the font to bold.
  44643. textbox0.Font.IsBold = true;
  44644. //Set the font size.
  44645. textbox0.Font.Size = 14;
  44646. //Set font attribute to italic.
  44647. textbox0.Font.IsItalic = true;
  44648. //Add a hyperlink to the textbox.
  44649. textbox0.AddHyperlink("http://www.aspose.com/");
  44650. //Get the filformat of the textbox.
  44651. MsoFillFormat fillformat = textbox0.FillFormat;
  44652. //Set the fillcolor.
  44653. fillformat.ForeColor = Color.Silver;
  44654. //Get the lineformat type of the textbox.
  44655. MsoLineFormat lineformat = textbox0.LineFormat;
  44656. //Set the line style.
  44657. lineformat.Style = MsoLineStyle.ThinThick;
  44658. //Set the line weight.
  44659. lineformat.Weight = 6;
  44660. //Set the dash style to squaredot.
  44661. lineformat.DashStyle = MsoLineDashStyle.SquareDot;
  44662. //Add another textbox.
  44663. textboxIndex = worksheet.TextBoxes.Add(15, 4, 85, 120);
  44664. //Get the second textbox.
  44665. Aspose.Cells.TextBox textbox1 = worksheet.TextBoxes[textboxIndex];
  44666. //Input some text to it.
  44667. textbox1.Text = "This is another simple text box";
  44668. //Set the placement type as the textbox will move and
  44669. //resize with cells.
  44670. textbox1.Placement = PlacementType.MoveAndSize;
  44671. //Save the excel file.
  44672. workbook.Save("C:\\tsttextboxes.xls");
  44673. [Visual Basic]
  44674. 'Instantiate a new Workbook.
  44675. Dim workbook As Workbook = New Workbook()
  44676. 'Get the first worksheet in the book.
  44677. Dim worksheet As Worksheet = workbook.Worksheets(0)
  44678. 'Add a new textbox to the collection.
  44679. Dim textboxIndex As Integer = worksheet.TextBoxes.Add(2, 1, 160, 200)
  44680. 'Get the textbox object.
  44681. Dim textbox0 As Aspose.Cells.TextBox = worksheet.TextBoxes(textboxIndex)
  44682. 'Fill the text.
  44683. textbox0.Text = "ASPOSE______The .NET and JAVA Component Publisher!"
  44684. 'Get the textbox text frame.
  44685. Dim textframe0 As MsoTextFrame = textbox0.TextFrame
  44686. 'Set the textbox to adjust it according to its contents.
  44687. textframe0.AutoSize = True
  44688. 'Set the placement.
  44689. textbox0.Placement = PlacementType.FreeFloating
  44690. 'Set the font color.
  44691. textbox0.Font.Color = Color.Blue
  44692. 'Set the font to bold.
  44693. textbox0.Font.IsBold = True
  44694. 'Set the font size.
  44695. textbox0.Font.Size = 14
  44696. 'Set font attribute to italic.
  44697. textbox0.Font.IsItalic = True
  44698. 'Add a hyperlink to the textbox.
  44699. textbox0.AddHyperlink("http://www.aspose.com/")
  44700. 'Get the filformat of the textbox.
  44701. Dim fillformat As MsoFillFormat = textbox0.FillFormat
  44702. 'Set the fillcolor.
  44703. fillformat.ForeColor = Color.Silver
  44704. 'Get the lineformat type of the textbox.
  44705. Dim lineformat As MsoLineFormat = textbox0.LineFormat
  44706. 'Set the line style.
  44707. lineformat.Style = MsoLineStyle.ThinThick
  44708. 'Set the line weight.
  44709. lineformat.Weight = 6
  44710. 'Set the dash style to squaredot.
  44711. lineformat.DashStyle = MsoLineDashStyle.SquareDot
  44712. 'Add another textbox.
  44713. textboxIndex = worksheet.TextBoxes.Add(15, 4, 85, 120)
  44714. 'Get the second textbox.
  44715. Dim textbox1 As Aspose.Cells.TextBox = worksheet.TextBoxes(textboxIndex)
  44716. 'Input some text to it.
  44717. textbox1.Text = "This is another simple text box"
  44718. 'Set the placement type as the textbox will move and
  44719. 'resize with cells.
  44720. textbox1.Placement = PlacementType.MoveAndSize
  44721. 'Save the excel file.
  44722. workbook.Save("C:\tsttextboxes.xls")
  44723. </code>
  44724. </example>
  44725. </member>
  44726. <member name="T:Aspose.Cells.Drawing.TextBoxCollection">
  44727. <summary>
  44728. Encapsulates a collection of <see cref="T:Aspose.Cells.Drawing.TextBox" /> objects.
  44729. </summary>
  44730. </member>
  44731. <member name="M:Aspose.Cells.Drawing.TextBoxCollection.Add(System.Int32,System.Int32,System.Int32,System.Int32)">
  44732. <summary>
  44733. Adds a textbox to the collection.
  44734. </summary>
  44735. <param name="upperLeftRow">Upper left row index.</param>
  44736. <param name="upperLeftColumn">Upper left column index.</param>
  44737. <param name="height">Height of textbox, in unit of pixel.</param>
  44738. <param name="width">Width of textbox, in unit of pixel.</param>
  44739. <returns>
  44740. <see cref="T:Aspose.Cells.Drawing.TextBox" /> object index.</returns>
  44741. </member>
  44742. <member name="M:Aspose.Cells.Drawing.TextBoxCollection.RemoveAt(System.Int32)">
  44743. <summary>
  44744. Remove a text box from the file.
  44745. </summary>
  44746. <param name="index">The text box index.</param>
  44747. </member>
  44748. <member name="M:Aspose.Cells.Drawing.TextBoxCollection.Clear">
  44749. <summary>
  44750. Clear all text boxes.
  44751. </summary>
  44752. </member>
  44753. <member name="P:Aspose.Cells.Drawing.TextBoxCollection.Item(System.Int32)">
  44754. <summary>
  44755. Gets the <see cref="T:Aspose.Cells.Drawing.TextBox" /> element at the specified index.
  44756. </summary>
  44757. <param name="index">The zero based index of the element.</param>
  44758. <returns>The element at the specified index.</returns>
  44759. </member>
  44760. <member name="P:Aspose.Cells.Drawing.TextBoxCollection.Item(System.String)">
  44761. <summary>
  44762. Gets the <see cref="T:Aspose.Cells.Drawing.TextBox" /> element by the name.
  44763. </summary>
  44764. <param name="name">The name of the text box.</param>
  44765. <returns>
  44766. </returns>
  44767. </member>
  44768. <member name="T:Aspose.Cells.TextDirectionType">
  44769. <summary>
  44770. Represents the direction of the text flow for this paragraph.
  44771. </summary>
  44772. </member>
  44773. <member name="F:Aspose.Cells.TextDirectionType.Context">
  44774. <summary>
  44775. </summary>
  44776. </member>
  44777. <member name="F:Aspose.Cells.TextDirectionType.LeftToRight">
  44778. <summary>
  44779. </summary>
  44780. </member>
  44781. <member name="F:Aspose.Cells.TextDirectionType.RightToLeft">
  44782. <summary>
  44783. </summary>
  44784. </member>
  44785. <member name="T:Aspose.Cells.TextOrientationType">
  44786. <summary>
  44787. Enumerates text orientation types.
  44788. </summary>
  44789. </member>
  44790. <member name="F:Aspose.Cells.TextOrientationType.ClockWise">
  44791. <summary>
  44792. text is rotated 90 degrees clockwise
  44793. </summary>
  44794. </member>
  44795. <member name="F:Aspose.Cells.TextOrientationType.CounterClockWise">
  44796. <summary>
  44797. text is rotated 90 degrees counterclockwise
  44798. </summary>
  44799. </member>
  44800. <member name="F:Aspose.Cells.TextOrientationType.NoRotation">
  44801. <summary>
  44802. Represents the default value.
  44803. </summary>
  44804. </member>
  44805. <member name="F:Aspose.Cells.TextOrientationType.TopToBottom">
  44806. <summary>
  44807. Displays text from top to bottom of the cell. Stacked text.
  44808. </summary>
  44809. </member>
  44810. <member name="T:Aspose.Cells.Drawing.TextureType">
  44811. <summary>
  44812. Represents the preset texture type.
  44813. </summary>
  44814. </member>
  44815. <member name="F:Aspose.Cells.Drawing.TextureType.BlueTissuePaper">
  44816. <summary>
  44817. Represents Blue Tissue Paper texture type.
  44818. </summary>
  44819. </member>
  44820. <member name="F:Aspose.Cells.Drawing.TextureType.Bouquet">
  44821. <summary>
  44822. Represents Bouquet texture type.
  44823. </summary>
  44824. </member>
  44825. <member name="F:Aspose.Cells.Drawing.TextureType.BrownMarble">
  44826. <summary>
  44827. Represents Brown Marble texture type.
  44828. </summary>
  44829. </member>
  44830. <member name="F:Aspose.Cells.Drawing.TextureType.Canvas">
  44831. <summary>
  44832. Represents Canvas texture type.
  44833. </summary>
  44834. </member>
  44835. <member name="F:Aspose.Cells.Drawing.TextureType.Cork">
  44836. <summary>
  44837. Represents Cork texture type.
  44838. </summary>
  44839. </member>
  44840. <member name="F:Aspose.Cells.Drawing.TextureType.Denim">
  44841. <summary>
  44842. Represents Denim texture type.
  44843. </summary>
  44844. </member>
  44845. <member name="F:Aspose.Cells.Drawing.TextureType.FishFossil">
  44846. <summary>
  44847. Represents Fish Fossil texture type.
  44848. </summary>
  44849. </member>
  44850. <member name="F:Aspose.Cells.Drawing.TextureType.Granite">
  44851. <summary>
  44852. Represents Granite texture type.
  44853. </summary>
  44854. </member>
  44855. <member name="F:Aspose.Cells.Drawing.TextureType.GreenMarble">
  44856. <summary>
  44857. Represents Green Marble texture type.
  44858. </summary>
  44859. </member>
  44860. <member name="F:Aspose.Cells.Drawing.TextureType.MediumWood">
  44861. <summary>
  44862. Represents Medium Wood texture type.
  44863. </summary>
  44864. </member>
  44865. <member name="F:Aspose.Cells.Drawing.TextureType.Newsprint">
  44866. <summary>
  44867. Represents Newsprint texture type.
  44868. </summary>
  44869. </member>
  44870. <member name="F:Aspose.Cells.Drawing.TextureType.Oak">
  44871. <summary>
  44872. Represents Oak texture type.
  44873. </summary>
  44874. </member>
  44875. <member name="F:Aspose.Cells.Drawing.TextureType.PaperBag">
  44876. <summary>
  44877. Represents Paper Bag texture type.
  44878. </summary>
  44879. </member>
  44880. <member name="F:Aspose.Cells.Drawing.TextureType.Papyrus">
  44881. <summary>
  44882. Represents Papyrus texture type.
  44883. </summary>
  44884. </member>
  44885. <member name="F:Aspose.Cells.Drawing.TextureType.Parchment">
  44886. <summary>
  44887. Represents Parchment texture type.
  44888. </summary>
  44889. </member>
  44890. <member name="F:Aspose.Cells.Drawing.TextureType.PinkTissuePaper">
  44891. <summary>
  44892. Represents Pink Tissue Paper texture type.
  44893. </summary>
  44894. </member>
  44895. <member name="F:Aspose.Cells.Drawing.TextureType.PurpleMesh">
  44896. <summary>
  44897. Represents Purple Mesh texture type.
  44898. </summary>
  44899. </member>
  44900. <member name="F:Aspose.Cells.Drawing.TextureType.RecycledPaper">
  44901. <summary>
  44902. Represents Recycled Paper texture type.
  44903. </summary>
  44904. </member>
  44905. <member name="F:Aspose.Cells.Drawing.TextureType.Sand">
  44906. <summary>
  44907. Represents Sand texture type.
  44908. </summary>
  44909. </member>
  44910. <member name="F:Aspose.Cells.Drawing.TextureType.Stationery">
  44911. <summary>
  44912. Represents Stationery texture type.
  44913. </summary>
  44914. </member>
  44915. <member name="F:Aspose.Cells.Drawing.TextureType.Walnut">
  44916. <summary>
  44917. Represents Walnut Droplets texture type.
  44918. </summary>
  44919. </member>
  44920. <member name="F:Aspose.Cells.Drawing.TextureType.WaterDroplets">
  44921. <summary>
  44922. Represents Water Droplets texture type.
  44923. </summary>
  44924. </member>
  44925. <member name="F:Aspose.Cells.Drawing.TextureType.WhiteMarble">
  44926. <summary>
  44927. Represents White Marble texture type.
  44928. </summary>
  44929. </member>
  44930. <member name="F:Aspose.Cells.Drawing.TextureType.WovenMat">
  44931. <summary>
  44932. Represents Woven Mat texture type.
  44933. </summary>
  44934. </member>
  44935. <member name="F:Aspose.Cells.Drawing.TextureType.Unknown">
  44936. <summary>
  44937. Represents Unknown texture type.
  44938. </summary>
  44939. </member>
  44940. <member name="T:Aspose.Cells.ThemeColor">
  44941. <summary>
  44942. Represents a theme color.
  44943. </summary>
  44944. <example>
  44945. <code>
  44946. [C#]
  44947. //Instantiating a Workbook object
  44948. Workbook workbook = new Workbook();
  44949. Cells cells = workbook.Worksheets[0].Cells;
  44950. cells["A1"].PutValue("Hello World");
  44951. Style style = cells["A1"].GetStyle();
  44952. //Set ThemeColorType.Text2 color type with 40% lighten as the font color.
  44953. style.Font.ThemeColor = new ThemeColor(ThemeColorType.Text2, 0.4);
  44954. style.Pattern = BackgroundType.Solid;
  44955. //Set ThemeColorType.Background2 color type with 75% darken as the foreground color
  44956. style.ForegroundThemeColor = new ThemeColor(ThemeColorType.Background2, -0.75);
  44957. cells["A1"].SetStyle(style);
  44958. //Saving the Excel file
  44959. workbook.Save("C:\\book1.xlsx");
  44960. [Visual Basic]
  44961. 'Instantiating a Workbook object
  44962. Dim workbook As Workbook = New Workbook()
  44963. Dim cells As Cells = workbook.Worksheets(0).Cells
  44964. cells("A1").PutValue("Hello World")
  44965. 'Get the cell style
  44966. Dim style As Style = cells("A1").GetStyle()
  44967. 'Set ThemeColorType.Text2 color type with 40% lighten as the font color.
  44968. Style.Font.ThemeColor = New ThemeColor(ThemeColorType.Text2, 0.4)
  44969. Style.Pattern = BackgroundType.Solid
  44970. 'Set ThemeColorType.Background2 color type with 75% darken as the foreground color
  44971. style.ForegroundThemeColor = New ThemeColor(ThemeColorType.Background2, -0.75)
  44972. 'Set the cell style
  44973. cells("A1").SetStyle(style)
  44974. 'Saving the Excel file
  44975. Workbook.Save("C:\\book1.xlsx")
  44976. </code>
  44977. </example>
  44978. </member>
  44979. <member name="M:Aspose.Cells.ThemeColor.#ctor(Aspose.Cells.ThemeColorType,System.Double)">
  44980. <summary>
  44981. </summary>
  44982. <param name="type">The theme type.</param>
  44983. <param name="tint">The tint value.</param>
  44984. </member>
  44985. <member name="P:Aspose.Cells.ThemeColor.ColorType">
  44986. <summary>
  44987. Gets and sets the theme type.
  44988. </summary>
  44989. </member>
  44990. <member name="P:Aspose.Cells.ThemeColor.Tint">
  44991. <summary>
  44992. Gets and sets the tint value.
  44993. </summary>
  44994. <remarks>
  44995. The tint value is stored as a double from -1.0 .. 1.0, where -1.0 means 100% darken
  44996. and 1.0 means 100% lighten. Also, 0.0 means no change.
  44997. </remarks>
  44998. </member>
  44999. <member name="T:Aspose.Cells.ThemeColorType">
  45000. <summary>
  45001. Enumerates the theme color types.
  45002. </summary>
  45003. </member>
  45004. <member name="F:Aspose.Cells.ThemeColorType.Background1">
  45005. <summary>
  45006. </summary>
  45007. </member>
  45008. <member name="F:Aspose.Cells.ThemeColorType.Text1">
  45009. <summary>
  45010. </summary>
  45011. </member>
  45012. <member name="F:Aspose.Cells.ThemeColorType.Background2">
  45013. <summary>
  45014. </summary>
  45015. </member>
  45016. <member name="F:Aspose.Cells.ThemeColorType.Text2">
  45017. <summary>
  45018. </summary>
  45019. </member>
  45020. <member name="F:Aspose.Cells.ThemeColorType.Accent1">
  45021. <summary>
  45022. </summary>
  45023. </member>
  45024. <member name="F:Aspose.Cells.ThemeColorType.Accent2">
  45025. <summary>
  45026. </summary>
  45027. </member>
  45028. <member name="F:Aspose.Cells.ThemeColorType.Accent3">
  45029. <summary>
  45030. </summary>
  45031. </member>
  45032. <member name="F:Aspose.Cells.ThemeColorType.Accent4">
  45033. <summary>
  45034. </summary>
  45035. </member>
  45036. <member name="F:Aspose.Cells.ThemeColorType.Accent5">
  45037. <summary>
  45038. </summary>
  45039. </member>
  45040. <member name="F:Aspose.Cells.ThemeColorType.Accent6">
  45041. <summary>
  45042. </summary>
  45043. </member>
  45044. <member name="F:Aspose.Cells.ThemeColorType.Hyperlink">
  45045. <summary>
  45046. </summary>
  45047. </member>
  45048. <member name="F:Aspose.Cells.ThemeColorType.FollowedHyperlink">
  45049. <summary>
  45050. </summary>
  45051. </member>
  45052. <member name="F:Aspose.Cells.ThemeColorType.StyleColor">
  45053. <summary>
  45054. Inner used.
  45055. A color used in theme definitions which means to use the color of the style.
  45056. </summary>
  45057. </member>
  45058. <member name="T:Aspose.Cells.Charts.TickLabelPositionType">
  45059. <summary>
  45060. Represents the position type of tick-mark labels on the specified axis.
  45061. </summary>
  45062. </member>
  45063. <member name="F:Aspose.Cells.Charts.TickLabelPositionType.High">
  45064. <summary>
  45065. Position type is high.
  45066. </summary>
  45067. </member>
  45068. <member name="F:Aspose.Cells.Charts.TickLabelPositionType.Low">
  45069. <summary>
  45070. Position type is low.
  45071. </summary>
  45072. </member>
  45073. <member name="F:Aspose.Cells.Charts.TickLabelPositionType.NextToAxis">
  45074. <summary>
  45075. Position type is next to axis.
  45076. </summary>
  45077. </member>
  45078. <member name="F:Aspose.Cells.Charts.TickLabelPositionType.None">
  45079. <summary>
  45080. Position type is none.
  45081. </summary>
  45082. </member>
  45083. <member name="T:Aspose.Cells.Charts.TickLabels">
  45084. <summary>
  45085. Represents the tick-mark labels associated with tick marks on a chart axis.
  45086. </summary>
  45087. </member>
  45088. <member name="P:Aspose.Cells.Charts.TickLabels.Font">
  45089. <summary>
  45090. Returns a <see cref="P:Aspose.Cells.Charts.TickLabels.Font" /> object that represents the font of the specified TickLabels object.
  45091. </summary>
  45092. </member>
  45093. <member name="P:Aspose.Cells.Charts.TickLabels.AutoScaleFont">
  45094. <summary>
  45095. True if the text in the object changes font size when the object size changes. The default value is True.
  45096. </summary>
  45097. </member>
  45098. <member name="P:Aspose.Cells.Charts.TickLabels.BackgroundMode">
  45099. <summary>
  45100. Gets and sets the display mode of the background
  45101. </summary>
  45102. </member>
  45103. <member name="P:Aspose.Cells.Charts.TickLabels.RotationAngle">
  45104. <summary>
  45105. Represents text rotation angle in clockwise.
  45106. </summary>
  45107. <remarks>
  45108. <br>0: Not rotated.</br>
  45109. <br>255: Top to Bottom.</br>
  45110. <br>-90: Downward.</br>
  45111. <br>90: Upward.</br>
  45112. </remarks>
  45113. </member>
  45114. <member name="P:Aspose.Cells.Charts.TickLabels.IsAutomaticRotation">
  45115. <summary>
  45116. Indicates whether the rotation angle is automatic
  45117. </summary>
  45118. </member>
  45119. <member name="P:Aspose.Cells.Charts.TickLabels.NumberFormat">
  45120. <summary>
  45121. Represents the format string for the TickLabels object.
  45122. </summary>
  45123. <remarks>The formatting string is same as a custom format string setting to a cell. For example, "$0".</remarks>
  45124. </member>
  45125. <member name="P:Aspose.Cells.Charts.TickLabels.Number">
  45126. <summary>
  45127. Represents the format number for the TickLabels object.
  45128. </summary>
  45129. </member>
  45130. <member name="P:Aspose.Cells.Charts.TickLabels.NumberFormatLinked">
  45131. <summary>
  45132. True if the number format is linked to the cells
  45133. (so that the number format changes in the labels when it changes in the cells).
  45134. </summary>
  45135. </member>
  45136. <member name="P:Aspose.Cells.Charts.TickLabels.DisplayNumberFormat">
  45137. <summary>
  45138. Gets and sets the display number format of tick labels.
  45139. </summary>
  45140. </member>
  45141. <member name="P:Aspose.Cells.Charts.TickLabels.Offset">
  45142. <summary>
  45143. Represents the distance between the levels of labels, and the distance between the first level and the axis line.
  45144. </summary>
  45145. <remarks>
  45146. The default distance is 100 percent, which represents the default spacing between the axis labels and the axis line.
  45147. The value can be an integer percentage from 0 through 1000, relative to the axis label¡¯s font size.
  45148. </remarks>
  45149. </member>
  45150. <member name="P:Aspose.Cells.Charts.TickLabels.TextDirection">
  45151. <summary>
  45152. Represents text reading order.
  45153. </summary>
  45154. <remarks>NOTE: This member is now obsolete. Instead,
  45155. please use TickLabels.ReadingOrder property.
  45156. This property will be removed 12 months later since March 2020.
  45157. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  45158. </member>
  45159. <member name="P:Aspose.Cells.Charts.TickLabels.ReadingOrder">
  45160. <summary>
  45161. Represents text reading order.
  45162. </summary>
  45163. </member>
  45164. <member name="P:Aspose.Cells.Charts.TickLabels.DirectionType">
  45165. <summary>
  45166. Gets and sets the direction of text.
  45167. </summary>
  45168. </member>
  45169. <member name="T:Aspose.Cells.Charts.TickMarkType">
  45170. <summary>
  45171. Represents the tick mark type for the specified axis.
  45172. </summary>
  45173. </member>
  45174. <member name="F:Aspose.Cells.Charts.TickMarkType.Cross">
  45175. <summary>
  45176. Tick mark type is Cross.
  45177. </summary>
  45178. </member>
  45179. <member name="F:Aspose.Cells.Charts.TickMarkType.Inside">
  45180. <summary>
  45181. Tick mark type is Inside.
  45182. </summary>
  45183. </member>
  45184. <member name="F:Aspose.Cells.Charts.TickMarkType.None">
  45185. <summary>
  45186. Tick mark type is None.
  45187. </summary>
  45188. </member>
  45189. <member name="F:Aspose.Cells.Charts.TickMarkType.Outside">
  45190. <summary>
  45191. Tick mark type is Outside
  45192. </summary>
  45193. </member>
  45194. <member name="T:Aspose.Cells.Charts.Title">
  45195. <summary>
  45196. Encapsulates the object that represents the title of chart or axis.
  45197. </summary>
  45198. <example>
  45199. <code>
  45200. [C#]
  45201. //Setting the title of a chart
  45202. chart.Title.Text = "Title";
  45203. //Setting the font color of the chart title to blue
  45204. chart.Title.Font.Color = Color.Blue;
  45205. //Setting the title of category axis of the chart
  45206. chart.CategoryAxis.Title.Text = "Category";
  45207. //Setting the title of value axis of the chart
  45208. chart.ValueAxis.Title.Text = "Value";
  45209. [Visual Basic]
  45210. 'Setting the title of a chart
  45211. chart.Title.Text = "Title"
  45212. 'Setting the font color of the chart title to blue
  45213. chart.Title.Font.Color = Color.Blue
  45214. 'Setting the title of category axis of the chart
  45215. chart.CategoryAxis.Title.Text = "Category"
  45216. 'Setting the title of value axis of the chart
  45217. chart.ValueAxis.Title.Text = "Value"
  45218. </code>
  45219. </example>
  45220. </member>
  45221. <member name="M:Aspose.Cells.Charts.Title.Characters">
  45222. <summary>
  45223. Gets rich text formatting of this Title.
  45224. </summary>
  45225. <returns>returns FontSetting array</returns>
  45226. </member>
  45227. <member name="P:Aspose.Cells.Charts.Title.Text">
  45228. <summary>
  45229. Gets or sets the text of display unit label.
  45230. </summary>
  45231. </member>
  45232. <member name="P:Aspose.Cells.Charts.Title.IsVisible">
  45233. <summary>
  45234. Represents whether the title is visible.
  45235. </summary>
  45236. </member>
  45237. <member name="P:Aspose.Cells.Charts.Title.X">
  45238. <summary>
  45239. Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
  45240. </summary>
  45241. </member>
  45242. <member name="P:Aspose.Cells.Charts.Title.Y">
  45243. <summary>
  45244. Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.
  45245. </summary>
  45246. </member>
  45247. <member name="P:Aspose.Cells.Charts.Title.OverLay">
  45248. <summary>
  45249. Represents overlay centered title on chart without resizing chart.
  45250. </summary>
  45251. </member>
  45252. <member name="T:Aspose.Cells.Tables.TotalsCalculation">
  45253. <summary>
  45254. Determines the type of calculation in the Totals row of the list column.
  45255. </summary>
  45256. </member>
  45257. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Sum">
  45258. <summary>
  45259. Represents Sum totals calculation.
  45260. </summary>
  45261. </member>
  45262. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Count">
  45263. <summary>
  45264. Represents Count totals calculation.
  45265. </summary>
  45266. </member>
  45267. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Average">
  45268. <summary>
  45269. Represents Average totals calculation.
  45270. </summary>
  45271. </member>
  45272. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Max">
  45273. <summary>
  45274. Represents Max totals calculation.
  45275. </summary>
  45276. </member>
  45277. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Min">
  45278. <summary>
  45279. Represents Min totals calculation.
  45280. </summary>
  45281. </member>
  45282. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Var">
  45283. <summary>
  45284. Represents Var totals calculation.
  45285. </summary>
  45286. </member>
  45287. <member name="F:Aspose.Cells.Tables.TotalsCalculation.CountNums">
  45288. <summary>
  45289. Represents Count Nums totals calculation.
  45290. </summary>
  45291. </member>
  45292. <member name="F:Aspose.Cells.Tables.TotalsCalculation.StdDev">
  45293. <summary>
  45294. Represents StdDev totals calculation.
  45295. </summary>
  45296. </member>
  45297. <member name="F:Aspose.Cells.Tables.TotalsCalculation.None">
  45298. <summary>
  45299. Represents No totals calculation.
  45300. </summary>
  45301. </member>
  45302. <member name="F:Aspose.Cells.Tables.TotalsCalculation.Custom">
  45303. <summary>
  45304. Represents custom calculation.
  45305. </summary>
  45306. </member>
  45307. <member name="T:Aspose.Cells.Charts.Trendline">
  45308. <summary>
  45309. Represents a trendline in a chart.
  45310. </summary>
  45311. <example>
  45312. <code>
  45313. [C#]
  45314. //Instantiating a Workbook object
  45315. Workbook workbook = new Workbook();
  45316. //Adding a new worksheet to the Excel object
  45317. int sheetIndex = workbook.Worksheets.Add();
  45318. //Obtaining the reference of the newly added worksheet by passing its sheet index
  45319. Worksheet worksheet = workbook.Worksheets[sheetIndex];
  45320. //Adding a sample value to "A1" cell
  45321. worksheet.Cells["A1"].PutValue(50);
  45322. //Adding a sample value to "A2" cell
  45323. worksheet.Cells["A2"].PutValue(100);
  45324. //Adding a sample value to "A3" cell
  45325. worksheet.Cells["A3"].PutValue(150);
  45326. //Adding a sample value to "A4" cell
  45327. worksheet.Cells["A4"].PutValue(200);
  45328. //Adding a sample value to "B1" cell
  45329. worksheet.Cells["B1"].PutValue(60);
  45330. //Adding a sample value to "B2" cell
  45331. worksheet.Cells["B2"].PutValue(32);
  45332. //Adding a sample value to "B3" cell
  45333. worksheet.Cells["B3"].PutValue(50);
  45334. //Adding a sample value to "B4" cell
  45335. worksheet.Cells["B4"].PutValue(40);
  45336. //Adding a sample value to "C1" cell as category data
  45337. worksheet.Cells["C1"].PutValue("Q1");
  45338. //Adding a sample value to "C2" cell as category data
  45339. worksheet.Cells["C2"].PutValue("Q2");
  45340. //Adding a sample value to "C3" cell as category data
  45341. worksheet.Cells["C3"].PutValue("Y1");
  45342. //Adding a sample value to "C4" cell as category data
  45343. worksheet.Cells["C4"].PutValue("Y2");
  45344. //Adding a chart to the worksheet
  45345. int chartIndex = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5);
  45346. //Accessing the instance of the newly added chart
  45347. Chart chart = worksheet.Charts[chartIndex];
  45348. //Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  45349. chart.NSeries.Add("A1:B4", true);
  45350. //Setting the data source for the category data of NSeries
  45351. chart.NSeries.CategoryData = "C1:C4";
  45352. //adding a linear trendline
  45353. int index = chart.NSeries[0].TrendLines.Add(TrendlineType.Linear);
  45354. Trendline trendline = chart.NSeries[0].TrendLines[index];
  45355. //Setting the custom name of the trendline.
  45356. trendline.Name = "Linear";
  45357. //Displaying the equation on chart
  45358. trendline.DisplayEquation = true;
  45359. //Displaying the R-Squared value on chart
  45360. trendline.DisplayRSquared = true;
  45361. //Saving the Excel file
  45362. workbook.Save("C:\\book1.xls");
  45363. [Visual Basic]
  45364. 'Instantiating a Workbook object
  45365. Dim workbook As Workbook = New Workbook()
  45366. 'Adding a new worksheet to the Excel object
  45367. Dim sheetIndex As Int32 = workbook.Worksheets.Add()
  45368. 'Obtaining the reference of the newly added worksheet by passing its sheet index
  45369. Dim worksheet As Worksheet = workbook.Worksheets(sheetIndex)
  45370. 'Adding a sample value to "A1" cell
  45371. worksheet.Cells("A1").PutValue(50)
  45372. 'Adding a sample value to "A2" cell
  45373. worksheet.Cells("A2").PutValue(100)
  45374. 'Adding a sample value to "A3" cell
  45375. worksheet.Cells("A3").PutValue(150)
  45376. 'Adding a sample value to "A4" cell
  45377. worksheet.Cells("A4").PutValue(200)
  45378. 'Adding a sample value to "B1" cell
  45379. worksheet.Cells("B1").PutValue(60)
  45380. 'Adding a sample value to "B2" cell
  45381. worksheet.Cells("B2").PutValue(32)
  45382. 'Adding a sample value to "B3" cell
  45383. worksheet.Cells("B3").PutValue(50)
  45384. 'Adding a sample value to "B4" cell
  45385. worksheet.Cells("B4").PutValue(40)
  45386. 'Adding a sample value to "C1" cell as category data
  45387. worksheet.Cells("C1").PutValue("Q1")
  45388. 'Adding a sample value to "C2" cell as category data
  45389. worksheet.Cells("C2").PutValue("Q2")
  45390. 'Adding a sample value to "C3" cell as category data
  45391. worksheet.Cells("C3").PutValue("Y1")
  45392. 'Adding a sample value to "C4" cell as category data
  45393. worksheet.Cells("C4").PutValue("Y2")
  45394. 'Adding a chart to the worksheet
  45395. Dim chartIndex As Int32 = worksheet.Charts.Add(ChartType.Column, 5, 0, 15, 5)
  45396. 'Accessing the instance of the newly added chart
  45397. Dim chart As Chart = worksheet.Charts(chartIndex)
  45398. 'Adding NSeries (chart data source) to the chart ranging from "A1" cell to "B4"
  45399. chart.NSeries.Add("A1:B4", True)
  45400. 'Setting the data source for the category data of NSeries
  45401. Chart.NSeries.CategoryData = "C1:C4"
  45402. 'adding a linear trendline
  45403. Dim index As Int32 = chart.NSeries(0).TrendLines.Add(TrendlineType.Linear)
  45404. Dim trendline As Trendline = chart.NSeries(0).TrendLines(index)
  45405. 'Setting the custom name of the trendline.
  45406. trendline.Name = "Linear"
  45407. 'Displaying the equation on chart
  45408. trendline.DisplayEquation = True
  45409. 'Displaying the R-Squared value on chart
  45410. trendline.DisplayRSquared = True
  45411. 'Saving the Excel file
  45412. workbook.Save("C:\\book1.xls")
  45413. </code>
  45414. </example>
  45415. </member>
  45416. <member name="P:Aspose.Cells.Charts.Trendline.IsNameAuto">
  45417. <summary>
  45418. Returns if Microsoft Excel automatically determines the name of the trendline.
  45419. </summary>
  45420. </member>
  45421. <member name="P:Aspose.Cells.Charts.Trendline.Type">
  45422. <summary>
  45423. Returns the trendline type.
  45424. </summary>
  45425. </member>
  45426. <member name="P:Aspose.Cells.Charts.Trendline.Name">
  45427. <summary>
  45428. Returns the name of the trendline.
  45429. </summary>
  45430. </member>
  45431. <member name="P:Aspose.Cells.Charts.Trendline.Order">
  45432. <summary>
  45433. Returns or sets the trendline order (an integer greater than 1) when the trendline type is Polynomial.
  45434. The order must be between 2 and 6.
  45435. </summary>
  45436. </member>
  45437. <member name="P:Aspose.Cells.Charts.Trendline.Period">
  45438. <summary>
  45439. Returns or sets the period for the moving-average trendline.
  45440. </summary>
  45441. <remarks>This value should be between 2 and 255.
  45442. And it must be less than the number of the chart points in the series</remarks>
  45443. </member>
  45444. <member name="P:Aspose.Cells.Charts.Trendline.Forward">
  45445. <summary>
  45446. Returns or sets the number of periods (or units on a scatter chart) that the trendline extends forward.
  45447. The number of periods must be greater than and equal to zero.
  45448. </summary>
  45449. </member>
  45450. <member name="P:Aspose.Cells.Charts.Trendline.Backward">
  45451. <summary>
  45452. Returns or sets the number of periods (or units on a scatter chart) that the trendline extends backward.
  45453. The number of periods must be greater than and equal to zero.
  45454. If the chart type is column ,the number of periods must be between 0 and 0.5
  45455. </summary>
  45456. </member>
  45457. <member name="P:Aspose.Cells.Charts.Trendline.DisplayEquation">
  45458. <summary>
  45459. Represents if the equation for the trendline is displayed on the chart (in the same data label as the R-squared value). Setting this property to True automatically turns on data labels.
  45460. </summary>
  45461. </member>
  45462. <member name="P:Aspose.Cells.Charts.Trendline.DisplayRSquared">
  45463. <summary>
  45464. Represents if the R-squared value of the trendline is displayed on the chart (in the same data label as the equation). Setting this property to True automatically turns on data labels.
  45465. </summary>
  45466. </member>
  45467. <member name="P:Aspose.Cells.Charts.Trendline.Intercept">
  45468. <summary>
  45469. Returns or sets the point where the trendline crosses the value axis.
  45470. </summary>
  45471. </member>
  45472. <member name="P:Aspose.Cells.Charts.Trendline.DataLabels">
  45473. <summary>
  45474. Represents the DataLabels object for the specified ASeries.
  45475. </summary>
  45476. </member>
  45477. <member name="P:Aspose.Cells.Charts.Trendline.LegendEntry">
  45478. <summary>
  45479. Gets the legend entry according to this trendline
  45480. </summary>
  45481. </member>
  45482. <member name="T:Aspose.Cells.Charts.TrendlineCollection">
  45483. <summary>
  45484. Represents a collection of all the <see cref="T:Aspose.Cells.Charts.Trendline" /> objects for the specified data series.
  45485. </summary>
  45486. <example>
  45487. <code>
  45488. [C#]
  45489. int chartIndex = excel.Worksheets[0].Charts.Add(ChartType.Column, 3, 3, 15, 10);
  45490. Chart chart = excel.Worksheets[0].Charts[chartIndex];
  45491. chart.NSeries.Add("A1:a3", true);
  45492. chart.NSeries[0].TrendLines.Add(TrendlineType.Linear, "MyTrendLine");
  45493. Trendline line = chart.NSeries[0].TrendLines[0];
  45494. line.DisplayEquation = true;
  45495. line.DisplayRSquared = true;
  45496. line.Color = Color.Red;
  45497. [Visual Basic]
  45498. Dim chartIndex As Integer = excel.Worksheets(0).Charts.Add(ChartType.Column,3,3,15,10)
  45499. Dim chart As Chart = excel.Worksheets(0).Charts(chartIndex)
  45500. chart.NSeries.Add("A1:a3", True)
  45501. chart.NSeries(0).TrendLines.Add(TrendlineType.Linear, "MyTrendLine")
  45502. Dim line As Trendline = chart.NSeries(0).TrendLines(0)
  45503. line.DisplayEquation = True
  45504. line.DisplayRSquared = True
  45505. line.Color = Color.Red
  45506. </code>
  45507. </example>
  45508. </member>
  45509. <member name="M:Aspose.Cells.Charts.TrendlineCollection.Add(Aspose.Cells.Charts.TrendlineType)">
  45510. <summary>
  45511. Adds a <seealso cref="T:Aspose.Cells.Charts.Trendline" /> object to this collection with specified type.
  45512. </summary>
  45513. <param name="type">Trendline type.</param>
  45514. <returns>
  45515. <see cref="T:Aspose.Cells.Charts.Trendline" /> object index.</returns>
  45516. </member>
  45517. <member name="M:Aspose.Cells.Charts.TrendlineCollection.Add(Aspose.Cells.Charts.TrendlineType,System.String)">
  45518. <summary>
  45519. Adds a <seealso cref="T:Aspose.Cells.Charts.Trendline" /> object to this collection with specified type and name.
  45520. </summary>
  45521. <param name="type">Trendline type.</param>
  45522. <param name="name">Trendline name.</param>
  45523. <returns>
  45524. <see cref="T:Aspose.Cells.Charts.Trendline" /> object index.</returns>
  45525. </member>
  45526. <member name="P:Aspose.Cells.Charts.TrendlineCollection.Item(System.Int32)">
  45527. <summary>
  45528. Gets a <seealso cref="T:Aspose.Cells.Charts.Trendline" /> object by its index.
  45529. </summary>
  45530. </member>
  45531. <member name="T:Aspose.Cells.Charts.TrendlineType">
  45532. <summary>
  45533. Represents the trendline type.
  45534. </summary>
  45535. </member>
  45536. <member name="F:Aspose.Cells.Charts.TrendlineType.Exponential">
  45537. <summary>
  45538. Exponential
  45539. </summary>
  45540. </member>
  45541. <member name="F:Aspose.Cells.Charts.TrendlineType.Linear">
  45542. <summary>
  45543. Linear
  45544. </summary>
  45545. </member>
  45546. <member name="F:Aspose.Cells.Charts.TrendlineType.Logarithmic">
  45547. <summary>
  45548. Logarithmic
  45549. </summary>
  45550. </member>
  45551. <member name="F:Aspose.Cells.Charts.TrendlineType.MovingAverage">
  45552. <summary>
  45553. MovingAverage
  45554. </summary>
  45555. </member>
  45556. <member name="F:Aspose.Cells.Charts.TrendlineType.Polynomial">
  45557. <summary>
  45558. Polynomial
  45559. </summary>
  45560. </member>
  45561. <member name="F:Aspose.Cells.Charts.TrendlineType.Power">
  45562. <summary>
  45563. Power
  45564. </summary>
  45565. </member>
  45566. <member name="T:Aspose.Cells.Drawing.Texts.FontSettingCollection">
  45567. <summary>
  45568. Represents the list of <see cref="T:Aspose.Cells.FontSetting" />.
  45569. </summary>
  45570. </member>
  45571. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.SetWordArtStyle(Aspose.Cells.Drawing.PresetWordArtStyle)">
  45572. <summary>
  45573. Sets the preset WordArt style.
  45574. </summary>
  45575. <param name="style">The preset WordArt style.</param>
  45576. </member>
  45577. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.GetParagraphEnumerator">
  45578. <summary>
  45579. Gets the enumerator of the paragraphs.
  45580. </summary>
  45581. <returns>
  45582. </returns>
  45583. </member>
  45584. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.AppendText(System.String)">
  45585. <summary>
  45586. Appends the text.
  45587. </summary>
  45588. <param name="text">The text.</param>
  45589. </member>
  45590. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.InsertText(System.Int32,System.String)">
  45591. <summary>
  45592. Insert index at the position.
  45593. </summary>
  45594. <param name="index">The start index.</param>
  45595. <param name="text">The text.</param>
  45596. </member>
  45597. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.Replace(System.Int32,System.Int32,System.String)">
  45598. <summary>
  45599. Replace the text.
  45600. </summary>
  45601. <param name="index">The start index.</param>
  45602. <param name="count">The count of characters.</param>
  45603. <param name="text">The text.</param>
  45604. </member>
  45605. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.DeleteText(System.Int32,System.Int32)">
  45606. <summary>
  45607. Delete some characters.
  45608. </summary>
  45609. <param name="index">The start index.</param>
  45610. <param name="count">The count of characters.</param>
  45611. </member>
  45612. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.Format(System.Int32,System.Int32,Aspose.Cells.Font,Aspose.Cells.StyleFlag)">
  45613. <summary>
  45614. Format the text with font setting.
  45615. </summary>
  45616. <param name="startIndex">The start index.</param>
  45617. <param name="length">The length.</param>
  45618. <param name="font">The font.</param>
  45619. <param name="flag">The flags of the font.</param>
  45620. </member>
  45621. <member name="M:Aspose.Cells.Drawing.Texts.FontSettingCollection.Clear">
  45622. <summary>
  45623. Clear all setting.
  45624. </summary>
  45625. </member>
  45626. <member name="P:Aspose.Cells.Drawing.Texts.FontSettingCollection.TextAlignment">
  45627. <summary>
  45628. Represents the alignment setting of the text body.
  45629. </summary>
  45630. </member>
  45631. <member name="P:Aspose.Cells.Drawing.Texts.FontSettingCollection.TextParagraphs">
  45632. <summary>
  45633. Gets all paragraphs.
  45634. </summary>
  45635. </member>
  45636. <member name="P:Aspose.Cells.Drawing.Texts.FontSettingCollection.Text">
  45637. <summary>
  45638. Gets and sets the text of the shape.
  45639. </summary>
  45640. </member>
  45641. <member name="P:Aspose.Cells.Drawing.Texts.FontSettingCollection.HtmlString">
  45642. <summary>
  45643. Gets and sets the html string which contains data and some formats in this shape.
  45644. </summary>
  45645. </member>
  45646. <member name="P:Aspose.Cells.Drawing.Texts.FontSettingCollection.Item(System.Int32)">
  45647. <summary>
  45648. Gets the <see cref="T:Aspose.Cells.FontSetting" /> by the index.
  45649. </summary>
  45650. <param name="index">The index.</param>
  45651. <returns>
  45652. </returns>
  45653. </member>
  45654. <member name="T:Aspose.Cells.ValidationAlertType">
  45655. <summary>
  45656. Represents the data validation alert style.
  45657. </summary>
  45658. </member>
  45659. <member name="F:Aspose.Cells.ValidationAlertType.Information">
  45660. <summary>
  45661. Information alert style.
  45662. </summary>
  45663. </member>
  45664. <member name="F:Aspose.Cells.ValidationAlertType.Stop">
  45665. <summary>
  45666. Stop alert style.
  45667. </summary>
  45668. </member>
  45669. <member name="F:Aspose.Cells.ValidationAlertType.Warning">
  45670. <summary>
  45671. Warning alert style.
  45672. </summary>
  45673. </member>
  45674. <member name="T:Aspose.Cells.ValidationCollection">
  45675. <summary>
  45676. Represents data validation collection.
  45677. </summary>
  45678. </member>
  45679. <member name="M:Aspose.Cells.ValidationCollection.Add">
  45680. <summary>
  45681. Adds a data validation to the collection.
  45682. </summary>
  45683. <returns>
  45684. <see cref="T:Aspose.Cells.Validation" /> object index.</returns>
  45685. <remarks>
  45686. NOTE: This member is now obsolete. Instead,
  45687. please use ValidationCollection.Add(CellArea) method.
  45688. This property will be removed 12 months later since JANUARY 2015.
  45689. Aspose apologizes for any inconvenience you may have experienced.</remarks>
  45690. </member>
  45691. <member name="M:Aspose.Cells.ValidationCollection.Add(Aspose.Cells.CellArea)">
  45692. <summary>
  45693. Adds a data validation to the collection.
  45694. </summary>
  45695. <param name="ca">The area contains this validation.</param>
  45696. <returns>
  45697. <see cref="T:Aspose.Cells.Validation" /> object index.</returns>
  45698. </member>
  45699. <member name="M:Aspose.Cells.ValidationCollection.RemoveACell(System.Int32,System.Int32)">
  45700. <summary>
  45701. Removes all validation setting on the cell.
  45702. </summary>
  45703. <param name="row">The row index of the cell.</param>
  45704. <param name="column">The column index of the cell.</param>
  45705. </member>
  45706. <member name="M:Aspose.Cells.ValidationCollection.RemoveArea(Aspose.Cells.CellArea)">
  45707. <summary>
  45708. Removes all validation setting on the range..
  45709. </summary>
  45710. <param name="ca">The range which contains the validations setting.</param>
  45711. </member>
  45712. <member name="M:Aspose.Cells.ValidationCollection.GetValidationInCell(System.Int32,System.Int32)">
  45713. <summary>
  45714. Gets the validation applied to given cell.
  45715. </summary>
  45716. <param name="row">The row index.</param>
  45717. <param name="column">The column index.</param>
  45718. <returns>Returns a <see cref="T:Aspose.Cells.Validation" /> object or null if there is no validation for given cell</returns>
  45719. </member>
  45720. <member name="P:Aspose.Cells.ValidationCollection.Item(System.Int32)">
  45721. <summary>
  45722. Gets the <see cref="T:Aspose.Cells.Validation" /> element at the specified index.
  45723. </summary>
  45724. <param name="index">The zero based index of the element.</param>
  45725. <returns>The element at the specified index.</returns>
  45726. </member>
  45727. <member name="T:Aspose.Cells.ValidationType">
  45728. <summary>
  45729. Represents data validation type.
  45730. </summary>
  45731. </member>
  45732. <member name="F:Aspose.Cells.ValidationType.AnyValue">
  45733. <summary>
  45734. Any value validation type.
  45735. </summary>
  45736. </member>
  45737. <member name="F:Aspose.Cells.ValidationType.WholeNumber">
  45738. <summary>
  45739. Whole number validation type.
  45740. </summary>
  45741. </member>
  45742. <member name="F:Aspose.Cells.ValidationType.Decimal">
  45743. <summary>
  45744. Decimal validation type.
  45745. </summary>
  45746. </member>
  45747. <member name="F:Aspose.Cells.ValidationType.List">
  45748. <summary>
  45749. List validation type.
  45750. </summary>
  45751. </member>
  45752. <member name="F:Aspose.Cells.ValidationType.Date">
  45753. <summary>
  45754. Date validation type.
  45755. </summary>
  45756. </member>
  45757. <member name="F:Aspose.Cells.ValidationType.Time">
  45758. <summary>
  45759. Time validation type.
  45760. </summary>
  45761. </member>
  45762. <member name="F:Aspose.Cells.ValidationType.TextLength">
  45763. <summary>
  45764. Text length validation type.
  45765. </summary>
  45766. </member>
  45767. <member name="F:Aspose.Cells.ValidationType.Custom">
  45768. <summary>
  45769. Custom validation type.
  45770. </summary>
  45771. </member>
  45772. <member name="T:Aspose.Cells.ViewType">
  45773. <summary>
  45774. Represents the view type of the worksheet.
  45775. </summary>
  45776. </member>
  45777. <member name="F:Aspose.Cells.ViewType.NormalView">
  45778. <summary>
  45779. </summary>
  45780. </member>
  45781. <member name="F:Aspose.Cells.ViewType.PageBreakPreview">
  45782. <summary>
  45783. </summary>
  45784. </member>
  45785. <member name="F:Aspose.Cells.ViewType.PageLayoutView">
  45786. <summary>
  45787. </summary>
  45788. </member>
  45789. <member name="T:Aspose.Cells.VerticalPageBreak">
  45790. <summary>
  45791. Encapsulates the object that represents a vertical page break.
  45792. </summary>
  45793. <example>
  45794. <code>
  45795. [C#]
  45796. //Add a pagebreak at G5
  45797. excel.Worksheets[0].HorizontalPageBreaks.Add("G5");
  45798. excel.Worksheets[0].VerticalPageBreaks.Add("G5");
  45799. [VB]
  45800. 'Add a pagebreak at G5
  45801. excel.Worksheets(0).HorizontalPageBreaks.Add("G5")
  45802. excel.Worksheets(0).VerticalPageBreaks.Add("G5")
  45803. </code>
  45804. </example>
  45805. </member>
  45806. <member name="P:Aspose.Cells.VerticalPageBreak.StartRow">
  45807. <summary>
  45808. Gets the start row index of the vertical page break.
  45809. </summary>
  45810. </member>
  45811. <member name="P:Aspose.Cells.VerticalPageBreak.EndRow">
  45812. <summary>
  45813. Gets the end row index of the vertical page break.
  45814. </summary>
  45815. </member>
  45816. <member name="P:Aspose.Cells.VerticalPageBreak.Column">
  45817. <summary>
  45818. Gets the column index of the vertical page break.
  45819. </summary>
  45820. </member>
  45821. <member name="T:Aspose.Cells.VerticalPageBreakCollection">
  45822. <summary>
  45823. Encapsulates a collection of <see cref="T:Aspose.Cells.VerticalPageBreak" /> objects.
  45824. </summary>
  45825. </member>
  45826. <member name="M:Aspose.Cells.VerticalPageBreakCollection.Add(System.Int32,System.Int32,System.Int32)">
  45827. <summary>
  45828. Adds a vertical page break to the collection.
  45829. </summary>
  45830. <param name="startRow">Start row index, zero based.</param>
  45831. <param name="endRow">End row index, zero based.</param>
  45832. <param name="column">Column index, zero based.</param>
  45833. <returns>
  45834. <see cref="T:Aspose.Cells.VerticalPageBreak" /> object index.</returns>
  45835. <remarks>This method is used to add a vertical pagebreak within a print area.</remarks>
  45836. </member>
  45837. <member name="M:Aspose.Cells.VerticalPageBreakCollection.Add(System.Int32)">
  45838. <summary>
  45839. Adds a vertical page break to the collection.
  45840. </summary>
  45841. <param name="column">Cell column index, zero based.</param>
  45842. <returns>
  45843. <see cref="T:Aspose.Cells.VerticalPageBreak" /> object index.</returns>
  45844. <remarks>Page break is added in the top left of the cell.
  45845. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  45846. </member>
  45847. <member name="M:Aspose.Cells.VerticalPageBreakCollection.Add(System.Int32,System.Int32)">
  45848. <summary>
  45849. Adds a vertical page break to the collection.
  45850. </summary>
  45851. <param name="row">Cell row index, zero based.</param>
  45852. <param name="column">Cell column index, zero based.</param>
  45853. <returns>
  45854. <see cref="T:Aspose.Cells.VerticalPageBreak" /> object index.</returns>
  45855. <remarks>Page break is added in the top left of the cell.
  45856. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  45857. </member>
  45858. <member name="M:Aspose.Cells.VerticalPageBreakCollection.Add(System.String)">
  45859. <summary>
  45860. Adds a vertical page break to the collection.
  45861. </summary>
  45862. <param name="cellName">Cell name.</param>
  45863. <returns>
  45864. <see cref="T:Aspose.Cells.VerticalPageBreak" /> object index.</returns>
  45865. <remarks>Page break is added in the top left of the cell.
  45866. Please set a horizontal page break and a vertical page break concurrently.</remarks>
  45867. </member>
  45868. <member name="M:Aspose.Cells.VerticalPageBreakCollection.RemoveAt(System.Int32)">
  45869. <summary>
  45870. Removes the VPageBreak element at a specified name.
  45871. </summary>
  45872. <param name="index">Element index, zero based.</param>
  45873. </member>
  45874. <member name="P:Aspose.Cells.VerticalPageBreakCollection.Item(System.Int32)">
  45875. <summary>
  45876. Gets the <see cref="T:Aspose.Cells.VerticalPageBreak" /> element at the specified index.
  45877. </summary>
  45878. <param name="index">The zero based index of the element.</param>
  45879. <returns>The element at the specified index.</returns>
  45880. </member>
  45881. <member name="P:Aspose.Cells.VerticalPageBreakCollection.Item(System.String)">
  45882. <summary>
  45883. Gets the <see cref="T:Aspose.Cells.VerticalPageBreak" /> element with the specified cell name.
  45884. </summary>
  45885. <param name="cellName">Cell name.</param>
  45886. <returns>The element with the specified cell name.</returns>
  45887. </member>
  45888. <member name="T:Aspose.Cells.Charts.Walls">
  45889. <summary>
  45890. Encapsulates the object that represents the walls of a 3-D chart.
  45891. </summary>
  45892. </member>
  45893. <member name="M:Aspose.Cells.Charts.Walls.GetCubePointCount">
  45894. <summary>
  45895. Gets the number of cube points after calls Chart.Calculate() method.
  45896. </summary>
  45897. </member>
  45898. <member name="M:Aspose.Cells.Charts.Walls.GetCubePointXPx(System.Int32)">
  45899. <summary>
  45900. Gets x-coordinate of the apex point of walls cube after calls Chart.Calculate() method.
  45901. The number of apex points of walls cube is eight
  45902. </summary>
  45903. </member>
  45904. <member name="M:Aspose.Cells.Charts.Walls.GetCubePointYPx(System.Int32)">
  45905. <summary>
  45906. Gets y-coordinate of the apex point of walls cube after calls Chart.Calculate() method.
  45907. The number of apex points of walls cube is eight.
  45908. </summary>
  45909. </member>
  45910. <member name="P:Aspose.Cells.Charts.Walls.CenterX">
  45911. <summary>
  45912. Gets the x coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart's width after calls Chart.Calculate() method.
  45913. </summary>
  45914. </member>
  45915. <member name="P:Aspose.Cells.Charts.Walls.CenterY">
  45916. <summary>
  45917. Gets the y coordinate of the left-bottom corner of Wall center in units of 1/4000 of chart's height after calls Chart.Calculate() method.
  45918. </summary>
  45919. </member>
  45920. <member name="P:Aspose.Cells.Charts.Walls.Width">
  45921. <summary>
  45922. Gets the width of left to right in units of 1/4000 of chart's width after calls Chart.Calculate() method.
  45923. </summary>
  45924. </member>
  45925. <member name="P:Aspose.Cells.Charts.Walls.Depth">
  45926. <summary>
  45927. Gets the depth front to back in units of 1/4000 of chart's width after calls Chart.Calculate() method.
  45928. </summary>
  45929. </member>
  45930. <member name="P:Aspose.Cells.Charts.Walls.Height">
  45931. <summary>
  45932. Gets the height of top to bottom in units of 1/4000 of chart's height after calls Chart.Calculate() method.
  45933. </summary>
  45934. </member>
  45935. <member name="P:Aspose.Cells.Charts.Walls.CenterXPx">
  45936. <summary>
  45937. Gets the x coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method.
  45938. </summary>
  45939. </member>
  45940. <member name="P:Aspose.Cells.Charts.Walls.CenterYPx">
  45941. <summary>
  45942. Gets the y coordinate of the left-bottom corner of Wall center in units of pixels after calls Chart.Calculate() method.
  45943. </summary>
  45944. </member>
  45945. <member name="P:Aspose.Cells.Charts.Walls.WidthPx">
  45946. <summary>
  45947. Gets the width of left to right in units of pixels after calls Chart.Calculate() method.
  45948. </summary>
  45949. </member>
  45950. <member name="P:Aspose.Cells.Charts.Walls.DepthPx">
  45951. <summary>
  45952. Gets the depth front to back in units of pixels after calls Chart.Calculate() method.
  45953. </summary>
  45954. </member>
  45955. <member name="P:Aspose.Cells.Charts.Walls.HeightPx">
  45956. <summary>
  45957. Gets the height of top to bottom in units of pixels after calls Chart.Calculate() method.
  45958. </summary>
  45959. </member>
  45960. <member name="T:Aspose.Cells.Drawing.WeightType">
  45961. <summary>
  45962. Enumerates the weight types for a picture border or a chart line.
  45963. </summary>
  45964. </member>
  45965. <member name="F:Aspose.Cells.Drawing.WeightType.HairLine">
  45966. <summary>
  45967. Represents the weight of hair line.
  45968. </summary>
  45969. </member>
  45970. <member name="F:Aspose.Cells.Drawing.WeightType.MediumLine">
  45971. <summary>
  45972. Represents the weight of medium line.
  45973. </summary>
  45974. </member>
  45975. <member name="F:Aspose.Cells.Drawing.WeightType.SingleLine">
  45976. <summary>
  45977. Represents the weight of single line.
  45978. </summary>
  45979. </member>
  45980. <member name="F:Aspose.Cells.Drawing.WeightType.WideLine">
  45981. <summary>
  45982. Represents the weight of wide line.
  45983. </summary>
  45984. </member>
  45985. <member name="T:Aspose.Cells.VisibilityType">
  45986. <summary>
  45987. Represents the states for sheet visibility.
  45988. </summary>
  45989. </member>
  45990. <member name="F:Aspose.Cells.VisibilityType.Hidden">
  45991. <summary>
  45992. Indicates the sheet is hidden, but can be shown by the user via the user interface.
  45993. </summary>
  45994. </member>
  45995. <member name="F:Aspose.Cells.VisibilityType.VeryHidden">
  45996. <summary>
  45997. Indicates the sheet is hidden and cannot be shown in the user interface (UI).
  45998. This state is only available programmatically.
  45999. </summary>
  46000. </member>
  46001. <member name="F:Aspose.Cells.VisibilityType.Visible">
  46002. <summary>
  46003. Indicates the sheet is visible.
  46004. </summary>
  46005. </member>
  46006. <member name="T:Aspose.Cells.XlsbSaveOptions">
  46007. <summary>
  46008. Represents the options for saving xlsb file.
  46009. </summary>
  46010. </member>
  46011. <member name="M:Aspose.Cells.XlsbSaveOptions.#ctor">
  46012. <summary>
  46013. Creates xlsb file save options.
  46014. </summary>
  46015. </member>
  46016. <member name="M:Aspose.Cells.XlsbSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  46017. <summary>
  46018. Creates xlsb file save options.
  46019. </summary>
  46020. <param name="saveFormat">The save format . It must be xlsb.</param>
  46021. </member>
  46022. <member name="P:Aspose.Cells.XlsbSaveOptions.CompressionType">
  46023. <summary>
  46024. Gets and sets the compression type for ooxml file.
  46025. </summary>
  46026. <remarks>The default value is OoxmlCompressionType.Level6.</remarks>
  46027. </member>
  46028. <member name="P:Aspose.Cells.XlsbSaveOptions.ExportAllColumnIndexes">
  46029. <summary>
  46030. Indicates whether exporting all column indexes for cells.
  46031. </summary>
  46032. <remarks>
  46033. The default value is true.
  46034. </remarks>
  46035. </member>
  46036. <member name="T:Aspose.Cells.XlsSaveOptions">
  46037. <summary>
  46038. Represents the save options for the Excel 97-2003 file format: xls and xlt.
  46039. </summary>
  46040. </member>
  46041. <member name="M:Aspose.Cells.XlsSaveOptions.#ctor">
  46042. <summary>
  46043. Creates options for saving Excel 97-2003 xls/xlt file.
  46044. </summary>
  46045. </member>
  46046. <member name="M:Aspose.Cells.XlsSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  46047. <summary>
  46048. Creates options for saving Excel 97-2003 xls/xlt file.
  46049. </summary>
  46050. <param name="format">The file format. It must be xls/xlt.</param>
  46051. </member>
  46052. <member name="P:Aspose.Cells.XlsSaveOptions.LightCellsDataProvider">
  46053. <summary>
  46054. The Data provider to provide cells data for saving workbook in light mode.
  46055. </summary>
  46056. </member>
  46057. <member name="P:Aspose.Cells.XlsSaveOptions.IsTemplate">
  46058. <summary>
  46059. Indicates whether saving a template file.
  46060. </summary>
  46061. </member>
  46062. <member name="P:Aspose.Cells.XlsSaveOptions.MatchColor">
  46063. <summary>
  46064. Indicates whether matching font color because there are 56 colors in the standard color palette.
  46065. </summary>
  46066. </member>
  46067. <member name="T:Aspose.Cells.OoxmlSaveOptions">
  46068. <summary>
  46069. Represents the options of saving office open xml file.
  46070. </summary>
  46071. </member>
  46072. <member name="M:Aspose.Cells.OoxmlSaveOptions.#ctor">
  46073. <summary>
  46074. Creates the options for saving office open xml file.
  46075. </summary>
  46076. </member>
  46077. <member name="M:Aspose.Cells.OoxmlSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  46078. <summary>
  46079. Creates the options for saving office open xml file.
  46080. </summary>
  46081. <param name="saveFormat">The file format.
  46082. It must be xlsx,xltx,xlsm,xltm.</param>
  46083. </member>
  46084. <member name="P:Aspose.Cells.OoxmlSaveOptions.ExportCellName">
  46085. <summary>
  46086. Indicates if export cell name to Excel2007 .xlsx (.xlsm, .xltx, .xltm) file.
  46087. If the output file may be accessed by SQL Server DTS, this value must be true.
  46088. Setting the value to false will highly increase the performance and reduce the file size when creating large file.
  46089. Default value is true.
  46090. </summary>
  46091. </member>
  46092. <member name="P:Aspose.Cells.OoxmlSaveOptions.LightCellsDataProvider">
  46093. <summary>
  46094. The Data provider to provide cells data for saving workbook in light mode.
  46095. </summary>
  46096. </member>
  46097. <member name="P:Aspose.Cells.OoxmlSaveOptions.UpdateZoom">
  46098. <summary>
  46099. Indicates whether update scaling factor before saving the file
  46100. if the PageSetup.FitToPagesWide and PageSetup.FitToPagesTall properties control how the worksheet is scaled.
  46101. </summary>
  46102. <remarks>
  46103. The default value is false for performance.
  46104. </remarks>
  46105. </member>
  46106. <member name="P:Aspose.Cells.OoxmlSaveOptions.EnableZip64">
  46107. <summary>
  46108. Always use ZIP64 extensions when writing zip archives, even when unnecessary.
  46109. </summary>
  46110. </member>
  46111. <member name="P:Aspose.Cells.OoxmlSaveOptions.EmbedOoxmlAsOleObject">
  46112. <summary>
  46113. Indicates whether embedding Ooxml files of OleObject as ole object.
  46114. </summary>
  46115. <remarks>
  46116. Only for OleObject.
  46117. </remarks>
  46118. </member>
  46119. <member name="P:Aspose.Cells.OoxmlSaveOptions.CompressionType">
  46120. <summary>
  46121. Gets and sets the compression type for ooxml file.
  46122. </summary>
  46123. <remarks>The default value is OoxmlCompressionType.Level2.</remarks>
  46124. </member>
  46125. <member name="T:Aspose.Cells.XpsSaveOptions">
  46126. <summary>
  46127. Represents the additional options when saving the file as the Xps.
  46128. </summary>
  46129. </member>
  46130. <member name="M:Aspose.Cells.XpsSaveOptions.#ctor">
  46131. <summary>
  46132. Creates options for saving xps file.
  46133. </summary>
  46134. </member>
  46135. <member name="M:Aspose.Cells.XpsSaveOptions.#ctor(Aspose.Cells.SaveFormat)">
  46136. <summary>
  46137. Creates options for saving xps file.
  46138. </summary>
  46139. <param name="saveFormat">The save format, it must be xps format.</param>
  46140. </member>
  46141. <member name="P:Aspose.Cells.XpsSaveOptions.OnePagePerSheet">
  46142. <summary>
  46143. If OnePagePerSheet is true , all content of one sheet will output to only one page in result.
  46144. The paper size of pagesetup will be invalid, and the other settings of pagesetup
  46145. will still take effect.
  46146. </summary>
  46147. </member>
  46148. <member name="P:Aspose.Cells.XpsSaveOptions.PageIndex">
  46149. <summary>
  46150. Gets or sets the 0-based index of the first page to save.
  46151. </summary>
  46152. <remarks>
  46153. Default is 0.
  46154. </remarks>
  46155. </member>
  46156. <member name="P:Aspose.Cells.XpsSaveOptions.PageCount">
  46157. <summary>
  46158. Gets or sets the number of pages to save.
  46159. </summary>
  46160. <remarks>
  46161. Default is System.Int32.MaxValue which means all pages will be rendered..
  46162. </remarks>
  46163. </member>
  46164. <member name="T:Aspose.Cells.XmlDataBinding">
  46165. <summary>
  46166. Represents Xml Data Binding information.
  46167. </summary>
  46168. </member>
  46169. <member name="P:Aspose.Cells.XmlDataBinding.Url">
  46170. <summary>
  46171. Gets source url of this data binding.
  46172. </summary>
  46173. </member>
  46174. <member name="T:Aspose.Cells.XmlMap">
  46175. <summary>
  46176. Represents Xml map information.
  46177. </summary>
  46178. </member>
  46179. <member name="P:Aspose.Cells.XmlMap.Name">
  46180. <summary>
  46181. Returns or sets the name of the object.
  46182. </summary>
  46183. </member>
  46184. <member name="P:Aspose.Cells.XmlMap.RootElementName">
  46185. <summary>
  46186. Gets root element name.
  46187. </summary>
  46188. </member>
  46189. <member name="P:Aspose.Cells.XmlMap.DataBinding">
  46190. <summary>
  46191. Gets an <see cref="T:Aspose.Cells.XmlDataBinding" /> of this map.
  46192. </summary>
  46193. </member>
  46194. <member name="T:Aspose.Cells.XmlMapCollection">
  46195. <summary>
  46196. A collection of <see cref="T:Aspose.Cells.XmlMap" /> objects that represent XmlMap information.
  46197. </summary>
  46198. </member>
  46199. <member name="M:Aspose.Cells.XmlMapCollection.Add(System.String)">
  46200. <summary>
  46201. Add a <see cref="T:Aspose.Cells.XmlMap" /> by the url/path of a xml file.
  46202. </summary>
  46203. <param name="url">url/path of a xml file.</param>
  46204. <returns>
  46205. <see cref="T:Aspose.Cells.XmlMap" /> object index.</returns>
  46206. </member>
  46207. <member name="P:Aspose.Cells.XmlMapCollection.Item(System.Int32)">
  46208. <summary>
  46209. Gets the xml map by the specific index.
  46210. </summary>
  46211. <param name="index">The index.</param>
  46212. <returns>The xml map</returns>
  46213. </member>
  46214. </members>
  46215. </doc>