예제 #1
0
 /// <summary>
 /// Returns information about the property originating a callback
 /// </summary>
 /// <param name="argument">handle to argument </param>
 /// <param name="property">receives the property handle (if non-null)</param>
 /// <param name="length">receives the number of values in this property (if non-null)</param>
 /// <param name="valueIndex">receives the index of current property value (if non-null)</param>
 /// <returns>true if successful, false otherwise</returns>
 public static bool GetArgumentProperty(IPlyArgument argument, out IPlyProperty property, out int length, out int valueIndex)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public void AddProperty(IPlyProperty property)
 {
     Properties.Add(property);
     //Properties.Add(property.Name, property);
 }