Questions tagged [cell]

A cell is an atomic element within a structure composed of columns and/or rows, such as a table or grid. For questions regarding cell arrays in MATLAB, the tag [cell-array] should be used.

Cell is a basic term that was introduced by spreadsheet programs like Excel, Lotus, etc.. It is also associated with tables in HTML and Word documents.

Cells can contain hard-coded values, computed values based on functions, visualizations based on computed values, or external objects.

For questions regarding cell arrays in MATLAB, the tag should be used.

References

5093 questions
24
votes
6 answers

Excel Define a range based on a cell value

Is it possible to define a range based on a value given in a cell. So, for example: My selection is A1:A5 That are five cells. is it possible to let excel determine this by setting a cell value (like B1) to 5. It for the purpose of easily changes…
user3491168
  • 241
  • 1
  • 2
  • 3
24
votes
1 answer

JavaFX 2 TableView : different cell factory depending on the data inside the cell

I am trying to use the table view to render / edit the "key = value" pairs. So the table is supposed to have two columns : "key" and "value". Key is just a normal string, and value can be anything. My problem is that the data type of the values can…
Petr KOKOREV
  • 373
  • 1
  • 3
  • 7
22
votes
6 answers

Animate cell when pressed using Swift 3

My problem is really simple. I would like to animate a cell within a collectionView. Indeed, I would like to show a grey background behind the cell and scale down the image inside. It would be (almost) the same effect than Pinterest: I used to code…
KevinB
  • 2,454
  • 3
  • 25
  • 49
22
votes
4 answers

Swift tableView cell set accessory type

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { @IBOutlet var tableView: UITableView var items: String[] = ["We", "Heart", "Swift"] override func viewDidLoad() { super.viewDidLoad() …
user3748930
  • 241
  • 1
  • 2
  • 5
21
votes
4 answers

IPython - Run all cells below from a widget

I'm trying use a multi select widget to enable users to select from a list of countries, and then have a widget button which, when clicked, runs all the cells below. This displays the list. from IPython.display import display w =…
colster
  • 359
  • 1
  • 3
  • 9
21
votes
2 answers

Using a number in a cell to generate a cell reference

What I want to do might be better achieved with a database, however I have very limited experience with them, and only have to change the information infrequently. What I have is a sheet where each row has 8 cells of relevant data. What I want to do…
Escribblings
  • 739
  • 5
  • 9
  • 17
20
votes
4 answers

Apps Script: how to get hyperlink from a cell where there is no formula

I have a sheet where hyperlink is set in cell, but not through formula. When clicked on the cell, in "fx" bar it only shows the value. I searched on web but everywhere, the info is to extract hyperlink by using getFormula(). But in my case there is…
20
votes
6 answers

UITableview Scrolls to Top on Reload

I am facing problem in my app - you can post and edit your favorite places. After posting a post, or editing a specific post (UITableViewCell), UITableview is reloaded. My problem is: the UITableview scrolls to the top after reloading. But that's…
debbiedowner
  • 338
  • 1
  • 3
  • 11
20
votes
2 answers

Get height and width of TableLayoutPanel cell in Windows Forms

Using a TableLayoutPanel in Windows Forms. I am using RowStyles and ColumnStyles with SizeType as AutoSize and Percent respectively. I need to find out the absolute height and width of a cell in which a particular control is…
Brij
  • 11,731
  • 22
  • 78
  • 116
19
votes
4 answers

When is it appropriate to use a cell array vs. a struct in Matlab?

If I want to store some strings or matrices of different sizes in a single variable, I can think of two options: I could make a struct array and have one of the fields hold the data, structArray(structIndex).structField or I could use a cell…
CJS
  • 193
  • 1
  • 1
  • 7
19
votes
7 answers

Table view cell load animation one after another

I need to animate the load of the table view rows. When the table reloads the data I need the rows get in from the left one after another. How can I achieve this?
Andrea Mario Lufino
  • 7,921
  • 12
  • 47
  • 78
19
votes
3 answers

How to set Tool Tip on the each Cell of JavaFX Table Mouse-Over?

I am new to JavaFX. I have created a TableView that looks like the image attached. I would like to show a tool tip on each cell of the table when I mouse over. I have already set two CellFactory; one to display a check-box in the first column and…
Ashish Pancholi
  • 4,569
  • 13
  • 50
  • 88
19
votes
4 answers

Cellpadding in one html table cell

Is it possible to have cell padding in just one cell versus the whole html table?
leora
  • 188,729
  • 360
  • 878
  • 1,366
18
votes
2 answers

Change UITableViewCell Font in iOS 8 and swift

I'm trying to change the font for my uitableviewcells, I'm trying to use this at the moment with not success: cell.textLabel.font = [UIFont .preferredFontForTextStyle("Avenir")]; Now i've read a lot on this and it seems I should use this instead : …
Jp4Real
  • 1,982
  • 4
  • 18
  • 33
18
votes
4 answers

how to convert a cell to string in matlab

Suppose I have a cell v = 'v' [576.5818] [3.0286] [576.9270] 'v' [576.5953] [3.1180] [576.8716] 'f' [ 56] [ 58] [ 52] 'f' [ 56] [ 58] [ 52] and I want to…
user1804229
  • 181
  • 1
  • 1
  • 3