【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.28.34 MatrixObject::SetColumnWidth
Contents
Description
Sets the width of a matrix column.
Syntax
BOOL SetColumnWidth( double nColWidth )
Parameters
- nColWidth
- [input] User defined width of the column
Return
TRUE if successful; FALSE otherwise
Examples
EX1
// Double the existing width of matrix columns // Matrix must exist in project void MatrixObject_SetColumnWidth_Ex1() { MatrixObject moMy("MBook1"); if( moMy ) { double iWidth = moMy.GetColumnWidth(); moMy.SetColumnWidth(iWidth * 2); printf("the column width is %f", moMy.GetColumnWidth()); } }
Remark
See Also
Header to Include
origin.h