Monobjc.Tools.Xcode.ProjectWriter.WritePBXProperty C# (CSharp) Method

WritePBXProperty() public abstract method

Writes the PBX property.
public abstract WritePBXProperty ( int indentLevel, String>.IDictionary map, String name, Object value ) : void
indentLevel int The indent level.
map String>.IDictionary The map.
name String The name.
value Object The value.
return void
        public abstract void WritePBXProperty(int indentLevel, IDictionary<IPBXElement, String> map, String name, Object value);

Same methods

ProjectWriter::WritePBXProperty ( int indentLevel, String>.IDictionary map, String name, Object value, bool singleLine ) : void

Usage Example

Beispiel #1
0
 /// <summary>
 ///   Writes this element to the writer.
 /// </summary>
 /// <param name = "writer">The writer.</param>
 /// <param name = "map">The map.</param>
 public override void WriteTo(ProjectWriter writer, IDictionary <IPBXElement, string> map)
 {
     writer.WritePBXElementPrologue(2, map, this);
     writer.WritePBXProperty(3, map, "target", this.Target);
     writer.WritePBXProperty(3, map, "targetProxy", this.TargetProxy);
     writer.WritePBXElementEpilogue(2);
 }
All Usage Examples Of Monobjc.Tools.Xcode.ProjectWriter::WritePBXProperty