예제 #1
0
        public static PropertySchema Create(SystemPropertyDefinition systemPropertyDefinition)
        {
            var result = new PropertySchema();

            return(result.AddSystemDefinition(systemPropertyDefinition));
        }
예제 #2
0
        public static PropertySchema Create(string dataCellRange)
        {
            var result = new PropertySchema();

            return(result.SetDataCellRange(dataCellRange));
        }
예제 #3
0
        public static PropertySchema Create(CustomPropertyDefinition customPropertyDefinition)
        {
            var result = new PropertySchema();

            return(result.AddCustomDefinition(customPropertyDefinition));
        }