コード例 #1
0
ファイル: Util.cs プロジェクト: STFMContentManager/STFMTest
    public static void AttributeSave(string AttributeName, string AttributeValue)
    {
        ClassAttribute oAttr = new ClassAttribute(AttributeName);

        oAttr.DeleteByName(AttributeName);
        oAttr.AttributeName = AttributeName;
        oAttr.AttributeValue = AttributeValue;
        oAttr.Save(0);
    }
コード例 #2
0
ファイル: Util.cs プロジェクト: STFMContentManager/STFMTest
    public static void AttributeDelete(string AttributeName)
    {
        ClassAttribute oAttr = new ClassAttribute(AttributeName);

        oAttr.DeleteByName(AttributeName);
    }