本文整理汇总了C#中PropertyList.getParentFObj方法的典型用法代码示例。如果您正苦于以下问题:C# PropertyList.getParentFObj方法的具体用法?C# PropertyList.getParentFObj怎么用?C# PropertyList.getParentFObj使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PropertyList
的用法示例。
在下文中一共展示了PropertyList.getParentFObj方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Make
public override Property Make(PropertyList propertyList) {
if (m_defaultProp == null) {
m_defaultProp = Make(propertyList, "0", propertyList.getParentFObj());
}
return m_defaultProp;
}
示例2: Make
public override Property Make(PropertyList propertyList)
{
if (m_defaultProp == null)
{
m_defaultProp = Make(propertyList, "use-target-processing-context", propertyList.getParentFObj());
}
return m_defaultProp;
}
示例3: Compute
public override Property Compute(PropertyList propertyList)
{
FObj parentFO = propertyList.getParentFObj();
StringBuilder sbExpr = new StringBuilder();
Property p = null;
sbExpr.Append("margin-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.START));
// Make sure the property is set before calculating it!
if (propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString()) == null)
{
return p;
}
sbExpr.Length = 0;
sbExpr.Append("_fop-property-value(");
sbExpr.Append("margin-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.START));
sbExpr.Append(")");
sbExpr.Append("+");
sbExpr.Append("_fop-property-value(");
sbExpr.Append("padding-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.START));
sbExpr.Append(")");
sbExpr.Append("+");
sbExpr.Append("_fop-property-value(");
sbExpr.Append("border-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.START));
sbExpr.Append("-width");
sbExpr.Append(")");
p = Make(propertyList, sbExpr.ToString(), propertyList.getParentFObj());
if (p != null)
{
p = ConvertProperty(p, propertyList, parentFO);
}
return p;
}
示例4: Compute
public override Property Compute(PropertyList propertyList) {
FObj parentFO = propertyList.getParentFObj();
StringBuilder sbExpr = new StringBuilder();
Property p = null;
sbExpr.Append("border-");
sbExpr.Append(propertyList.wmAbsToRel(PropertyList.TOP));
sbExpr.Append("-width");
p = propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString());
if (p != null) {
p = ConvertProperty(p, propertyList, parentFO);
}
return p;
}
示例5: Compute
public override Property Compute(PropertyList propertyList)
{
FObj parentFO = propertyList.getParentFObj();
StringBuilder sbExpr = new StringBuilder();
Property p = null;
sbExpr.Append("padding-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.AFTER));
p = propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString());
if (p != null)
{
p = ConvertProperty(p, propertyList, parentFO);
}
return p;
}
示例6: Compute
public override Property Compute(PropertyList propertyList)
{
FObj parentFO = propertyList.getParentFObj();
StringBuilder sbExpr = new StringBuilder();
Property p = null;
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.INLINEPROGDIM));
p = propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString());
if (p != null)
{
p = ConvertProperty(p, propertyList, parentFO);
}
else
{
p = MakeCompound(propertyList, parentFO);
}
Property subprop;
sbExpr.Length = 0;
sbExpr.Append("min-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.INLINEPROGDIM));
subprop = propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString());
if (subprop != null)
{
SetSubprop(p, "minimum", subprop);
}
sbExpr.Length = 0;
sbExpr.Append("max-");
sbExpr.Append(propertyList.wmRelToAbs(PropertyList.INLINEPROGDIM));
subprop = propertyList.GetExplicitOrShorthandProperty(sbExpr.ToString());
if (subprop != null)
{
SetSubprop(p, "maximum", subprop);
}
return p;
}
示例7: Make
public override Property Make(PropertyList propertyList)
{
return Make(propertyList, "use-font-metrics", propertyList.getParentFObj());
}
示例8: Make
public override Property Make(PropertyList propertyList)
{
return MakeCompound(propertyList, propertyList.getParentFObj());
}