/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for Additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ namespace Npoi.Core.DDF { using System; using System.Text; /// /// This is the abstract base class for all escher properties. /// @see EscherOptRecord /// @author Glen Stampoultzis (glens at apache.org) /// abstract public class EscherProperty { protected short id; /// /// Initializes a new instance of the class. /// /// The id is distinct from the actual property number. The id includes the property number the blip id /// flag and an indicator whether the property is complex or not. public EscherProperty(short id) { this.id = id; } /// /// Initializes a new instance of the class.The three parameters are combined to form a property /// id. /// /// The property number. /// if set to true [is complex]. /// if set to true [is blip id]. public EscherProperty(short propertyNumber, bool isComplex, bool isBlipId) { this.id = (short)(propertyNumber + (isComplex ? unchecked((short)0x8000) : (short)0x0) + (isBlipId ? (short)0x4000 : (short)0x0)); } /// /// Gets the id. /// /// The id. public virtual short Id { get { return id; } } /// /// Gets the property number. /// /// The property number. public virtual short PropertyNumber { get { return (short)(id & (short)0x3FFF); } } /// /// Gets a value indicating whether this instance is complex. /// /// /// true if this instance is complex; otherwise, false. /// public virtual bool IsComplex { get { return (id & unchecked((short)0x8000)) != 0; } } /// /// Gets a value indicating whether this instance is blip id. /// /// /// true if this instance is blip id; otherwise, false. /// public virtual bool IsBlipId { get { return (id & (short)0x4000) != 0; } } /// /// Gets the name. /// /// The name. public virtual String Name { get { return EscherProperties.GetPropertyName(PropertyNumber); } } /// /// Most properties are just 6 bytes in Length. Override this if we're /// dealing with complex properties. /// /// The size of the property. public virtual int PropertySize { get { return 6; } } public virtual String ToXml(string tab) { StringBuilder builder = new StringBuilder(); builder.Append(tab) .Append("<") .Append(GetType().Name) .Append(" id=\"") .Append(Id) .Append("\" name=\"") .Append(Name) .Append("\" blipId=\"") .Append(IsBlipId).Append("\"/>\n"); return builder.ToString(); } /// /// Escher properties consist of a simple fixed Length part and a complex variable Length part. /// The fixed Length part is Serialized first. /// /// The data. /// The pos. /// abstract public int SerializeSimplePart(byte[] data, int pos); /// /// Escher properties consist of a simple fixed Length part and a complex variable Length part. /// The fixed Length part is Serialized first. /// /// The data. /// The pos. /// abstract public int SerializeComplexPart(byte[] data, int pos); } }