Inside Sabertooth
Learn how Sabertooth uses 3ds Max to create 3D interactive projects, including HBO Go’s Game of Thrones interactive experience
  • 1/3
You are here: Forum Home / Autodesk® MotionBuilder® / Python / FBSpread
  RSS 2.0 ATOM  

FBSpread
Rate this thread
 
37537
 
Permlink of this thread  
avatar
  • luc
  • Posted: 07 December 2009 09:42 PM
  • Total Posts: 10
  • Joined: 15 June 2008 06:52 PM

hi,

on FBSpread when we set a value for a cell (using: SetCellValue(int pRow, int pColumn, object pValue)), that automaticaly set also the style for the cell, it is also possible to set the cell style using the FBCellStyle.
but i have problem with the FBCellStyle.kFBCellStyleMenu, i can not find a way to add value with this cell style, before change cell style or after, change cell style or not change, same lock.
For now i am unaviable to use this cell style.

if some one have an idea can unlock the way :)

thank’s



Replies: 0
avatar

FBCellStyle does not exist in Motionbuilder 7.5 which I use, so I’m guessing here - but if the Cell has a PropertyList, it’s data might be changable from it. To find the name of stuff, I often do a:

for each in yourCell.PropertyList:
 print 
each.GetName()

Sometimes you can find stuff in there that are useful.



Replies: 0