NSAttributedString.LowLevelValue Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Low-level version of the Value property, returns a handle to the underlying Objective-C NSString.
public virtual IntPtr LowLevelValue { [Foundation.Export("string")] get; }
member this.LowLevelValue : nativeint
Property Value
nativeint
- Attributes
Remarks
In general, you should use the Value property, which will return a C# string.
This is the low-level interface to NSAttributedString and you are expected to return an IntPtr that represents a handle to an NSString. This API is kept as a low-level API, since it is consumed by NSTextStorage which might call this method thousands of times per character insertion, so it is very important that this is kept as fast as possible.