本文整理汇总了C#中ISilDataAccess.get_BooleanProp方法的典型用法代码示例。如果您正苦于以下问题:C# ISilDataAccess.get_BooleanProp方法的具体用法?C# ISilDataAccess.get_BooleanProp怎么用?C# ISilDataAccess.get_BooleanProp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ISilDataAccess
的用法示例。
在下文中一共展示了ISilDataAccess.get_BooleanProp方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetBoolean
/// <summary>
/// Get the boolean or integer model property as a boolean.
/// </summary>
/// <returns>
/// The regular boolean value for boolean properties.
/// For int model properties: 'false' for a '0' int value,
/// or 'true' for all other int values.
/// </returns>
public static bool GetBoolean(ISilDataAccess sda, int hvo, int tag)
{
if (sda == null) throw new ArgumentNullException("sda");
return (CellarPropertyType)sda.MetaDataCache.GetFieldType(tag) == CellarPropertyType.Boolean
? sda.get_BooleanProp(hvo, tag)
: sda.get_IntProp(hvo, tag) != 0;
}
示例2: GetValueOfField
internal override int GetValueOfField(ISilDataAccess sda, int hvoField)
{
return sda.get_BooleanProp(hvoField, m_flidSub) ? 1 : 0;
}
示例3: GetBasicPropertyValue
protected virtual int GetBasicPropertyValue(ISilDataAccess sda, int hvoOwner)
{
int type = m_sda.MetaDataCache.GetFieldType(m_flid);
if (type == (int)CellarPropertyType.Boolean)
return sda.get_BooleanProp(hvoOwner, m_flid) ? 1 : 0;
else
return sda.get_IntProp(hvoOwner, m_flid);
}
示例4: GetBasicPropertyValue
protected override int GetBasicPropertyValue(ISilDataAccess sda, int hvoOwner)
{
return Convert.ToInt32(sda.get_BooleanProp(hvoOwner, m_flid));
}