Lines Matching refs:props

3894 	function convertTxt2Html(txt, srcM, props)  argument
3935 globalStyles.splice(i, 0, {s: newlines[expectedS], n: 'a', v: props.TextAlign || 'center'});
3957 globalStyles.push({s: newlines[expectedS], n: 'a', v: props.TextAlign || 'center'});
4050 …str += '<li style="text-align:' + (styles['a']? styles['a'].v : (props.TextAlign || 'center')) + '…
4117 var tmp = styles['a']? styles['a'].v : (props.TextAlign || 'center');
4221 else if (props.Font)
4223 fontFamily = props.Font;
4417 function convertText(props, forceHTML) argument
4420 var text = (props.Text != null && props.Text.t) ? props.Text :
4421 ((props.Value != null && props.Value.t) ? props.Value :
4422 ((props.Lane_0 != null && props.Lane_0.t) ? props.Lane_0 : null));
4425 if (text == null && props.State != null)
4427 if (props.State.t)
4429 text = props.State;
4432 else if (text == null && props.Note != null)
4434 if (props.Note.t)
4436 text = props.Note;
4439 else if (text == null && props.Title != null)
4441 if (props.Title.t)
4443 text = props.Title;
4446 else if (props.t)
4448 text = props;
4451 if (text == null && props.TextAreas != null)
4453 if (props.TextAreas.Text != null)
4455 if (props.TextAreas.Text.Value != null)
4457 if (props.TextAreas.Text.Value.t)
4459 text = props.TextAreas.Text.Value;
4464 else if (text == null && props.t0 != null)
4466 if (props.t0.t)
4468 text = props.t0;
4504 return convertTxt2Html(txt, m, props);
13607 function createOrgChart(objId, props, data, graph, lookup) argument
13669 var chartType = props.OrgChartBlockType;
13670 var pos = props.Location;
13675 var fields = props.FieldNames;
13676 var layoutSettings = props.LayoutSettings;
13677 var cellDefaultStyle = props.BlockItemDefaultStyle || {props: {}};
13678 var edgeDefaultStyle = props.EdgeItemDefaultStyle;
13684 cellDefaultStyle.props.LineWidth = 0;
13687 …Size = 54, hasImage = true, cellStyle = addAllStyles('', cellDefaultStyle.props, {}, chartGroup, t…
13745 var dataId, derivative = props.ContractMap.derivative;
13750 var people = props.ContractMap.c.People;
13840 if (edgeDefaultStyle != null && edgeDefaultStyle.props != null)
13842 updateCell(e, edgeDefaultStyle.props, graph, null, null, true);